diff --git a/app/components/Analyst/History/HistoryContent.tsx b/app/components/Analyst/History/HistoryContent.tsx index 60d19a96eb..8d8d20dbad 100644 --- a/app/components/Analyst/History/HistoryContent.tsx +++ b/app/components/Analyst/History/HistoryContent.tsx @@ -9,6 +9,8 @@ import projectInformationSchema from 'formSchema/uiSchema/history/projectInforma import { diff } from 'json-diff'; import conditionalApprovalSchema from 'formSchema/uiSchema/history/conditionalApproval'; import screeningSchema from 'formSchema/uiSchema/history/screening'; +import gis from 'formSchema/uiSchema/history/gis'; +import gisAssessmentHhSchema from 'formSchema/uiSchema/history/gisAssessmentHh'; import StatusPill from '../../StatusPill'; import HistoryDetails from './HistoryDetails'; import HistoryAttachment from './HistoryAttachment'; @@ -386,6 +388,7 @@ const HistoryContent = ({ historyItem, prevHistoryItem }) => { const assessmentSchema = (assessmentName) => { if (assessmentName === 'screening') return screeningSchema; + if (assessmentName === 'gis') return gis; return {}; }; @@ -395,7 +398,8 @@ const HistoryContent = ({ historyItem, prevHistoryItem }) => { prevAssessmentFilesArray ); - const isScreeningAssessment = assessmentType === 'screening'; + const isDetailedAssessment = + assessmentType === 'gis' || assessmentType === 'screening'; return (
@@ -404,7 +408,7 @@ const HistoryContent = ({ historyItem, prevHistoryItem }) => { {formatAssessment(assessmentType)} Assessment on {createdAtFormatted} - {showHistoryDetails && isScreeningAssessment && ( + {showHistoryDetails && isDetailedAssessment && ( { 'otherFiles', 'assessmentTemplate', ]} - overrideParent="screening" + overrideParent={assessmentType} /> )} - {showOtherFilesDiff && isScreeningAssessment && ( + {showOtherFilesDiff && isDetailedAssessment && ( { title={`${formatAssessment(assessmentType)} Other Files`} /> )} - {showAssessmentFilesDiff && isScreeningAssessment && ( + {showAssessmentFilesDiff && isDetailedAssessment && ( { ); } + if (tableName === 'application_gis_assessment_hh') { + return ( +
+ + + {displayName} + {' updated the '} + GIS Assessment Household Count + + on {createdAtFormatted} + + {showHistoryDetails && ( + + )} + {reasonForChange && } +
+ ); + } + if (tableName === 'project_information_data') { // Generate a diff for all the file arrays // will return undefined if no changes diff --git a/app/formSchema/uiSchema/history/gis.ts b/app/formSchema/uiSchema/history/gis.ts new file mode 100644 index 0000000000..daba2d8e00 --- /dev/null +++ b/app/formSchema/uiSchema/history/gis.ts @@ -0,0 +1,23 @@ +import commonAssessment from './commonAssessment'; + +const gis = { + gis: { + properties: { + ...commonAssessment, + commentsOnCoverageData: { + title: 'Comments on coverage data', + }, + commentsOnHouseholdCounts: { + title: 'Comments on household counts', + }, + commentsOnOverbuild: { + title: 'Comments on overbuild', + }, + commentsOnOverlap: { + title: 'Comments on overlap', + }, + }, + }, +}; + +export default gis; diff --git a/app/formSchema/uiSchema/history/gisAssessmentHh.ts b/app/formSchema/uiSchema/history/gisAssessmentHh.ts new file mode 100644 index 0000000000..ae42cdb92e --- /dev/null +++ b/app/formSchema/uiSchema/history/gisAssessmentHh.ts @@ -0,0 +1,14 @@ +const gisAssessmentHh = { + gis: { + properties: { + eligible: { + title: 'Eligible', + }, + eligible_indigenous: { + title: 'Eligible Indigenous', + }, + }, + }, +}; + +export default gisAssessmentHh; diff --git a/app/schema/schema.graphql b/app/schema/schema.graphql index 43d99bd830..604e8a0f06 100644 --- a/app/schema/schema.graphql +++ b/app/schema/schema.graphql @@ -4177,6 +4177,114 @@ type CcbcUser implements Node { filter: ApplicationAnnouncementFilter ): ApplicationAnnouncementsConnection! + """ + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + """ + applicationGisAssessmentHhsByCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: 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 `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationGisAssessmentHhCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! + + """ + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + """ + applicationGisAssessmentHhsByUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: 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 `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationGisAssessmentHhCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! + + """ + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + """ + applicationGisAssessmentHhsByArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: 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 `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationGisAssessmentHhCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! + """Reads and enables pagination through a set of `ApplicationSowData`.""" applicationSowDataByCreatedBy( """Only read the first `n` values of the set.""" @@ -11582,7 +11690,7 @@ type CcbcUser implements Node { ): CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationSowDataCreatedByAndApplicationId( + applicationsByApplicationGisAssessmentHhCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11613,10 +11721,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationGisAssessmentHhCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11647,10 +11755,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataCreatedByAndArchivedBy( + ccbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -11681,10 +11789,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationSowDataUpdatedByAndApplicationId( + applicationsByApplicationGisAssessmentHhUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11715,10 +11823,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationGisAssessmentHhUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataUpdatedByAndCreatedBy( + ccbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11749,10 +11857,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -11783,10 +11891,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationSowDataArchivedByAndApplicationId( + applicationsByApplicationGisAssessmentHhArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11817,10 +11925,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationGisAssessmentHhArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataArchivedByAndCreatedBy( + ccbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11851,10 +11959,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11885,10 +11993,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab2CreatedByAndSowId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationSowDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11907,22 +12015,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 + ): CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2CreatedByAndUpdatedBy( + ccbcUsersByApplicationSowDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11953,10 +12061,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2CreatedByAndArchivedBy( + ccbcUsersByApplicationSowDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -11987,10 +12095,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab2UpdatedByAndSowId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationSowDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -12009,22 +12117,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 + ): CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2UpdatedByAndCreatedBy( + ccbcUsersByApplicationSowDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12055,10 +12163,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2UpdatedByAndArchivedBy( + ccbcUsersByApplicationSowDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -12089,10 +12197,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab2ArchivedByAndSowId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationSowDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -12111,22 +12219,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 + ): CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2ArchivedByAndCreatedBy( + ccbcUsersByApplicationSowDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12157,10 +12265,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2ArchivedByAndUpdatedBy( + ccbcUsersByApplicationSowDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12191,10 +12299,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab1CreatedByAndSowId( + applicationSowDataBySowTab2CreatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -12225,10 +12333,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyConnection! + ): CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1CreatedByAndUpdatedBy( + ccbcUsersBySowTab2CreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12259,10 +12367,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1CreatedByAndArchivedBy( + ccbcUsersBySowTab2CreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -12293,10 +12401,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab1UpdatedByAndSowId( + applicationSowDataBySowTab2UpdatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -12327,10 +12435,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyConnection! + ): CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1UpdatedByAndCreatedBy( + ccbcUsersBySowTab2UpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12361,10 +12469,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1UpdatedByAndArchivedBy( + ccbcUsersBySowTab2UpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -12395,10 +12503,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab1ArchivedByAndSowId( + applicationSowDataBySowTab2ArchivedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -12429,10 +12537,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyConnection! + ): CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1ArchivedByAndCreatedBy( + ccbcUsersBySowTab2ArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12463,10 +12571,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1ArchivedByAndUpdatedBy( + ccbcUsersBySowTab2ArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12497,10 +12605,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByProjectInformationDataCreatedByAndApplicationId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab1CreatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -12519,22 +12627,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 - ): CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataCreatedByAndUpdatedBy( + ccbcUsersBySowTab1CreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12565,10 +12673,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataCreatedByAndArchivedBy( + ccbcUsersBySowTab1CreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -12599,10 +12707,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByProjectInformationDataUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab1UpdatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -12621,22 +12729,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 - ): CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataUpdatedByAndCreatedBy( + ccbcUsersBySowTab1UpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12667,10 +12775,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataUpdatedByAndArchivedBy( + ccbcUsersBySowTab1UpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -12701,10 +12809,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByProjectInformationDataArchivedByAndApplicationId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab1ArchivedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -12723,22 +12831,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 - ): CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataArchivedByAndCreatedBy( + ccbcUsersBySowTab1ArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12769,10 +12877,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataArchivedByAndUpdatedBy( + ccbcUsersBySowTab1ArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12803,10 +12911,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab7CreatedByAndSowId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByProjectInformationDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -12825,22 +12933,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 + ): CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7CreatedByAndUpdatedBy( + ccbcUsersByProjectInformationDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12871,10 +12979,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7CreatedByAndArchivedBy( + ccbcUsersByProjectInformationDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -12905,10 +13013,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab7UpdatedByAndSowId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByProjectInformationDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -12927,22 +13035,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 + ): CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7UpdatedByAndCreatedBy( + ccbcUsersByProjectInformationDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12973,10 +13081,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7UpdatedByAndArchivedBy( + ccbcUsersByProjectInformationDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13007,10 +13115,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab7ArchivedByAndSowId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByProjectInformationDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13029,22 +13137,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 + ): CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7ArchivedByAndCreatedBy( + ccbcUsersByProjectInformationDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13075,10 +13183,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7ArchivedByAndUpdatedBy( + ccbcUsersByProjectInformationDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13109,10 +13217,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab8CreatedByAndSowId( + applicationSowDataBySowTab7CreatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -13143,10 +13251,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyConnection! + ): CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8CreatedByAndUpdatedBy( + ccbcUsersBySowTab7CreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13177,10 +13285,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8CreatedByAndArchivedBy( + ccbcUsersBySowTab7CreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13211,10 +13319,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab8UpdatedByAndSowId( + applicationSowDataBySowTab7UpdatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -13245,10 +13353,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyConnection! + ): CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8UpdatedByAndCreatedBy( + ccbcUsersBySowTab7UpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13279,10 +13387,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8UpdatedByAndArchivedBy( + ccbcUsersBySowTab7UpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13313,10 +13421,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab8ArchivedByAndSowId( + applicationSowDataBySowTab7ArchivedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -13347,10 +13455,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyConnection! + ): CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8ArchivedByAndCreatedBy( + ccbcUsersBySowTab7ArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13381,10 +13489,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8ArchivedByAndUpdatedBy( + ccbcUsersBySowTab7ArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13415,10 +13523,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByChangeRequestDataCreatedByAndApplicationId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab8CreatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -13437,22 +13545,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 - ): CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataCreatedByAndUpdatedBy( + ccbcUsersBySowTab8CreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13483,10 +13591,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataCreatedByAndArchivedBy( + ccbcUsersBySowTab8CreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13517,10 +13625,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByChangeRequestDataUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab8UpdatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -13539,22 +13647,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 - ): CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataUpdatedByAndCreatedBy( + ccbcUsersBySowTab8UpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13585,10 +13693,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataUpdatedByAndArchivedBy( + ccbcUsersBySowTab8UpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13619,10 +13727,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByChangeRequestDataArchivedByAndApplicationId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab8ArchivedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -13641,22 +13749,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 - ): CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataArchivedByAndCreatedBy( + ccbcUsersBySowTab8ArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13687,10 +13795,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataArchivedByAndUpdatedBy( + ccbcUsersBySowTab8ArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13721,10 +13829,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationId( + applicationsByChangeRequestDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13755,10 +13863,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedBy( + ccbcUsersByChangeRequestDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13789,10 +13897,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedBy( + ccbcUsersByChangeRequestDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13823,10 +13931,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationId( + applicationsByChangeRequestDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13857,10 +13965,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedBy( + ccbcUsersByChangeRequestDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13891,10 +13999,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedBy( + ccbcUsersByChangeRequestDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13925,10 +14033,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationId( + applicationsByChangeRequestDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13959,10 +14067,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedBy( + ccbcUsersByChangeRequestDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13993,10 +14101,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedBy( + ccbcUsersByChangeRequestDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14027,10 +14135,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationId( + applicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14061,10 +14169,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14095,10 +14203,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedBy( + ccbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14129,10 +14237,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationId( + applicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14163,10 +14271,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedBy( + ccbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14197,10 +14305,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14231,10 +14339,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationId( + applicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14265,10 +14373,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedBy( + ccbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14299,10 +14407,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14333,10 +14441,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationClaimsDataCreatedByAndApplicationId( + applicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14367,10 +14475,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14401,10 +14509,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataCreatedByAndArchivedBy( + ccbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14435,10 +14543,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationClaimsDataUpdatedByAndApplicationId( + applicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14469,10 +14577,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataUpdatedByAndCreatedBy( + ccbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14503,10 +14611,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14537,10 +14645,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationClaimsDataArchivedByAndApplicationId( + applicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14571,10 +14679,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataArchivedByAndCreatedBy( + ccbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14605,10 +14713,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14639,10 +14747,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationClaimsExcelDataCreatedByAndApplicationId( + applicationsByApplicationClaimsDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14673,10 +14781,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationClaimsDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14707,10 +14815,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedBy( + ccbcUsersByApplicationClaimsDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14741,10 +14849,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationClaimsExcelDataUpdatedByAndApplicationId( + applicationsByApplicationClaimsDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14775,10 +14883,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedBy( + ccbcUsersByApplicationClaimsDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14809,10 +14917,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationClaimsDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14843,10 +14951,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationClaimsExcelDataArchivedByAndApplicationId( + applicationsByApplicationClaimsDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14877,10 +14985,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedBy( + ccbcUsersByApplicationClaimsDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14911,10 +15019,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationClaimsDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14945,10 +15053,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationMilestoneDataCreatedByAndApplicationId( + applicationsByApplicationClaimsExcelDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14979,10 +15087,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15013,10 +15121,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataCreatedByAndArchivedBy( + ccbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -15047,10 +15155,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationMilestoneDataUpdatedByAndApplicationId( + applicationsByApplicationClaimsExcelDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -15081,10 +15189,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataUpdatedByAndCreatedBy( + ccbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15115,10 +15223,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -15149,10 +15257,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationMilestoneDataArchivedByAndApplicationId( + applicationsByApplicationClaimsExcelDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -15183,10 +15291,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataArchivedByAndCreatedBy( + ccbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15217,10 +15325,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15251,10 +15359,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationMilestoneExcelDataCreatedByAndApplicationId( + applicationsByApplicationMilestoneDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -15285,10 +15393,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationMilestoneDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15319,10 +15427,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedBy( + ccbcUsersByApplicationMilestoneDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -15353,10 +15461,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationId( + applicationsByApplicationMilestoneDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -15387,10 +15495,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedBy( + ccbcUsersByApplicationMilestoneDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15421,10 +15529,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationMilestoneDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -15455,10 +15563,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationMilestoneExcelDataArchivedByAndApplicationId( + applicationsByApplicationMilestoneDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -15489,10 +15597,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedBy( + ccbcUsersByApplicationMilestoneDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15523,10 +15631,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationMilestoneDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15557,10 +15665,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationMilestoneExcelDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -15579,22 +15687,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 + ): CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectCreatedByAndArchivedBy( + ccbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15625,10 +15733,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectUpdatedByAndCreatedBy( + ccbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -15659,10 +15767,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -15681,22 +15789,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 + ): CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectArchivedByAndCreatedBy( + ccbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15727,10 +15835,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectArchivedByAndUpdatedBy( + ccbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -15761,10 +15869,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationInternalDescriptionCreatedByAndApplicationId( + applicationsByApplicationMilestoneExcelDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -15795,10 +15903,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedBy( + ccbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15829,10 +15937,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionCreatedByAndArchivedBy( + ccbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15863,10 +15971,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationInternalDescriptionUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcProjectCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15885,22 +15993,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 + ): CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedBy( + ccbcUsersByCbcProjectCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -15931,10 +16039,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedBy( + ccbcUsersByCbcProjectUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15965,10 +16073,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationInternalDescriptionArchivedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcProjectUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -15987,22 +16095,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 + ): CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionArchivedByAndCreatedBy( + ccbcUsersByCbcProjectArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16033,10 +16141,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedBy( + ccbcUsersByCbcProjectArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16067,10 +16175,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationProjectTypeCreatedByAndApplicationId( + applicationsByApplicationInternalDescriptionCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -16101,10 +16209,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeCreatedByAndUpdatedBy( + ccbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16135,10 +16243,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeCreatedByAndArchivedBy( + ccbcUsersByApplicationInternalDescriptionCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -16169,10 +16277,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationProjectTypeUpdatedByAndApplicationId( + applicationsByApplicationInternalDescriptionUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -16203,10 +16311,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeUpdatedByAndCreatedBy( + ccbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16237,10 +16345,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeUpdatedByAndArchivedBy( + ccbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -16271,10 +16379,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationProjectTypeArchivedByAndApplicationId( + applicationsByApplicationInternalDescriptionArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -16305,10 +16413,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeArchivedByAndCreatedBy( + ccbcUsersByApplicationInternalDescriptionArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16339,10 +16447,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeArchivedByAndUpdatedBy( + ccbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16373,10 +16481,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByEmailRecordCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationProjectTypeCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -16395,22 +16503,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 - ): CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByEmailRecordCreatedByAndArchivedBy( + ccbcUsersByApplicationProjectTypeCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16441,10 +16549,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByEmailRecordUpdatedByAndCreatedBy( + ccbcUsersByApplicationProjectTypeCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -16475,10 +16583,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByEmailRecordUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationProjectTypeUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -16497,22 +16605,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 - ): CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByEmailRecordArchivedByAndCreatedBy( + ccbcUsersByApplicationProjectTypeUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16543,10 +16651,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByEmailRecordArchivedByAndUpdatedBy( + ccbcUsersByApplicationProjectTypeUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -16577,10 +16685,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByNotificationCreatedByAndApplicationId( + applicationsByApplicationProjectTypeArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -16611,10 +16719,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByNotificationCreatedByAndEmailRecordId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationProjectTypeArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16633,22 +16741,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 + ): CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationCreatedByAndUpdatedBy( + ccbcUsersByApplicationProjectTypeArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16679,10 +16787,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationCreatedByAndArchivedBy( + ccbcUsersByEmailRecordCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16713,10 +16821,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByNotificationUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByEmailRecordCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -16735,22 +16843,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 + ): CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByNotificationUpdatedByAndEmailRecordId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByEmailRecordUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16769,22 +16877,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 + ): CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationUpdatedByAndCreatedBy( + ccbcUsersByEmailRecordUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -16815,10 +16923,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationUpdatedByAndArchivedBy( + ccbcUsersByEmailRecordArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16849,10 +16957,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByNotificationArchivedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByEmailRecordArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16871,22 +16979,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 + ): CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByNotificationArchivedByAndEmailRecordId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByNotificationCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -16905,22 +17013,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 - ): CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationArchivedByAndCreatedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByNotificationCreatedByAndEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -16939,22 +17047,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 - ): CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyConnection! + filter: EmailRecordFilter + ): CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationArchivedByAndUpdatedBy( + ccbcUsersByNotificationCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16985,44 +17093,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyConnection! - - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationPendingChangeRequestCreatedByAndApplicationId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: 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 - ): CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedBy( + ccbcUsersByNotificationCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -17053,10 +17127,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByNotificationUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -17075,22 +17149,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 - ): CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationPendingChangeRequestUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByNotificationUpdatedByAndEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -17109,22 +17183,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 - ): CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyConnection! + filter: EmailRecordFilter + ): CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedBy( + ccbcUsersByNotificationUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17155,10 +17229,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedBy( + ccbcUsersByNotificationUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -17189,10 +17263,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationPendingChangeRequestArchivedByAndApplicationId( + applicationsByNotificationArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -17223,10 +17297,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyConnection! + + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByNotificationArchivedByAndEmailRecordId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: 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 + ): CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedBy( + ccbcUsersByNotificationArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17257,10 +17365,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedBy( + ccbcUsersByNotificationArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17291,10 +17399,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationPendingChangeRequestCreatedByAndApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: 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 + ): CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcCreatedByAndUpdatedBy( + ccbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17325,10 +17467,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcCreatedByAndArchivedBy( + ccbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -17359,10 +17501,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationPendingChangeRequestUpdatedByAndApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: 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 + ): CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcUpdatedByAndCreatedBy( + ccbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17393,10 +17569,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcUpdatedByAndArchivedBy( + ccbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -17427,10 +17603,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationPendingChangeRequestArchivedByAndApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: 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 + ): CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcArchivedByAndCreatedBy( + ccbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17461,10 +17671,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcArchivedByAndUpdatedBy( + ccbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17495,10 +17705,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcDataCreatedByAndCbcId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17517,22 +17727,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 + ): CcbcUserCcbcUsersByCbcCreatedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcDataCreatedByAndProjectNumber( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -17551,22 +17761,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 + ): CcbcUserCcbcUsersByCbcCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataCreatedByAndUpdatedBy( + ccbcUsersByCbcUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17597,10 +17807,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataCreatedByAndArchivedBy( + ccbcUsersByCbcUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -17631,10 +17841,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcDataUpdatedByAndCbcId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17653,22 +17863,56 @@ 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 + ): CcbcUserCcbcUsersByCbcArchivedByAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcArchivedByAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: 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 + ): CcbcUserCcbcUsersByCbcArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcDataUpdatedByAndProjectNumber( + cbcsByCbcDataCreatedByAndCbcId( """Only read the first `n` values of the set.""" first: Int @@ -17699,10 +17943,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CbcFilter - ): CcbcUserCbcsByCbcDataUpdatedByAndProjectNumberManyToManyConnection! + ): CcbcUserCbcsByCbcDataCreatedByAndCbcIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataUpdatedByAndCreatedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcDataCreatedByAndProjectNumber( """Only read the first `n` values of the set.""" first: Int @@ -17721,22 +17965,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 - ): CcbcUserCcbcUsersByCbcDataUpdatedByAndCreatedByManyToManyConnection! + filter: CbcFilter + ): CcbcUserCbcsByCbcDataCreatedByAndProjectNumberManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataUpdatedByAndArchivedBy( + ccbcUsersByCbcDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17767,10 +18011,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataCreatedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcDataArchivedByAndCbcId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -17789,22 +18033,192 @@ 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 + ): CcbcUserCcbcUsersByCbcDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcDataArchivedByAndProjectNumber( + cbcsByCbcDataUpdatedByAndCbcId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: 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 + ): 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`.""" + ccbcUsersByCbcDataUpdatedByAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: 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 + ): CcbcUserCcbcUsersByCbcDataUpdatedByAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcDataUpdatedByAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: 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 + ): CcbcUserCcbcUsersByCbcDataUpdatedByAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcDataArchivedByAndCbcId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: 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 + ): CcbcUserCbcsByCbcDataArchivedByAndCbcIdManyToManyConnection! + + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcDataArchivedByAndProjectNumber( """Only read the first `n` values of the set.""" first: Int @@ -18359,6 +18773,30 @@ input CcbcUserFilter { """Some related `applicationAnnouncementsByArchivedBy` exist.""" applicationAnnouncementsByArchivedByExist: Boolean + """ + Filter by the object’s `applicationGisAssessmentHhsByCreatedBy` relation. + """ + applicationGisAssessmentHhsByCreatedBy: CcbcUserToManyApplicationGisAssessmentHhFilter + + """Some related `applicationGisAssessmentHhsByCreatedBy` exist.""" + applicationGisAssessmentHhsByCreatedByExist: Boolean + + """ + Filter by the object’s `applicationGisAssessmentHhsByUpdatedBy` relation. + """ + applicationGisAssessmentHhsByUpdatedBy: CcbcUserToManyApplicationGisAssessmentHhFilter + + """Some related `applicationGisAssessmentHhsByUpdatedBy` exist.""" + applicationGisAssessmentHhsByUpdatedByExist: Boolean + + """ + Filter by the object’s `applicationGisAssessmentHhsByArchivedBy` relation. + """ + applicationGisAssessmentHhsByArchivedBy: CcbcUserToManyApplicationGisAssessmentHhFilter + + """Some related `applicationGisAssessmentHhsByArchivedBy` exist.""" + applicationGisAssessmentHhsByArchivedByExist: Boolean + """Filter by the object’s `applicationSowDataByCreatedBy` relation.""" applicationSowDataByCreatedBy: CcbcUserToManyApplicationSowDataFilter @@ -21337,9 +21775,45 @@ input ApplicationGisAssessmentHhFilter { """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!] @@ -23547,6 +24021,26 @@ input CcbcUserToManyApplicationAnnouncementFilter { none: ApplicationAnnouncementFilter } +""" +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 + + """ + 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 `ApplicationSowData` object types. All fields are combined with a logical ‘and.’ """ @@ -27156,7 +27650,7 @@ type Application implements Node { ): ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataApplicationIdAndCreatedBy( + ccbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -27187,10 +27681,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataApplicationIdAndUpdatedBy( + ccbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -27221,10 +27715,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataApplicationIdAndArchivedBy( + ccbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -27255,10 +27749,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataApplicationIdAndCreatedBy( + ccbcUsersByApplicationSowDataApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -27289,10 +27783,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataApplicationIdAndUpdatedBy( + ccbcUsersByApplicationSowDataApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -27323,10 +27817,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataApplicationIdAndArchivedBy( + ccbcUsersByApplicationSowDataApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -27357,10 +27851,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataApplicationIdAndCreatedBy( + ccbcUsersByProjectInformationDataApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -27391,10 +27885,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByChangeRequestDataApplicationIdAndCreatedByManyToManyConnection! + ): ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataApplicationIdAndUpdatedBy( + ccbcUsersByProjectInformationDataApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -27425,10 +27919,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByChangeRequestDataApplicationIdAndUpdatedByManyToManyConnection! + ): ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataApplicationIdAndArchivedBy( + ccbcUsersByProjectInformationDataApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -27459,10 +27953,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByChangeRequestDataApplicationIdAndArchivedByManyToManyConnection! + ): ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedBy( + ccbcUsersByChangeRequestDataApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -27493,10 +27987,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedByManyToManyConnection! + ): ApplicationCcbcUsersByChangeRequestDataApplicationIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedBy( + ccbcUsersByChangeRequestDataApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -27527,10 +28021,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedByManyToManyConnection! + ): ApplicationCcbcUsersByChangeRequestDataApplicationIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedBy( + ccbcUsersByChangeRequestDataApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -27561,10 +28055,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedByManyToManyConnection! + ): ApplicationCcbcUsersByChangeRequestDataApplicationIdAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedBy( + ccbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -27595,10 +28089,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedBy( + ccbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -27629,10 +28123,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedBy( + ccbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -27663,10 +28157,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataApplicationIdAndCreatedBy( + ccbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -27697,10 +28191,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataApplicationIdAndUpdatedBy( + ccbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -27731,10 +28225,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataApplicationIdAndArchivedBy( + ccbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -27765,10 +28259,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedBy( + ccbcUsersByApplicationClaimsDataApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -27799,10 +28293,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedBy( + ccbcUsersByApplicationClaimsDataApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -27833,10 +28327,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedBy( + ccbcUsersByApplicationClaimsDataApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -27867,10 +28361,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataApplicationIdAndCreatedBy( + ccbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -27901,10 +28395,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedBy( + ccbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -27935,10 +28429,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataApplicationIdAndArchivedBy( + ccbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -27969,10 +28463,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedBy( + ccbcUsersByApplicationMilestoneDataApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -28003,10 +28497,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedBy( + ccbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -28037,10 +28531,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedBy( + ccbcUsersByApplicationMilestoneDataApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -28071,10 +28565,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedBy( + ccbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -28105,10 +28599,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedBy( + ccbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -28139,10 +28633,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedBy( + ccbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -28173,10 +28667,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeApplicationIdAndCreatedBy( + ccbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -28207,10 +28701,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndCreatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeApplicationIdAndUpdatedBy( + ccbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -28241,10 +28735,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndUpdatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeApplicationIdAndArchivedBy( + ccbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -28275,10 +28769,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndArchivedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByNotificationApplicationIdAndEmailRecordId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationProjectTypeApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -28297,22 +28791,22 @@ type Application 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 - ): ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToManyConnection! + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationApplicationIdAndCreatedBy( + ccbcUsersByApplicationProjectTypeApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -28343,10 +28837,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationApplicationIdAndUpdatedBy( + ccbcUsersByApplicationProjectTypeApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -28377,10 +28871,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationApplicationIdAndArchivedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByNotificationApplicationIdAndEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -28399,22 +28893,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 `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 - ): ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyConnection! + filter: EmailRecordFilter + ): ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedBy( + ccbcUsersByNotificationApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -28445,10 +28939,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyConnection! + ): ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedBy( + ccbcUsersByNotificationApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -28479,10 +28973,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyConnection! + ): ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedBy( + ccbcUsersByNotificationApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -28513,86 +29007,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyConnection! -} - -"""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! -} - -"""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! - - """Unique ID for the application_status""" - rowId: Int! - - """ID of the application this status belongs to""" - applicationId: Int - - """The status of the application""" - status: String - - """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 + ): ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByApplicationStatusId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -28611,22 +29029,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 `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 + ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByAttachmentApplicationStatusIdAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -28645,22 +29063,200 @@ 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 `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 - ): ApplicationStatusApplicationsByAttachmentApplicationStatusIdAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentApplicationStatusIdAndCreatedBy( + 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! +} + +"""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! +} + +"""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! + + """Unique ID for the application_status""" + rowId: Int! + + """ID of the application this status belongs to""" + applicationId: Int + + """The status of the application""" + status: String + + """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 @@ -34104,10 +34700,43 @@ type ApplicationGisAssessmentHh implements Node { """The number of eligible indigenous households""" eligibleIndigenous: Float + """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 `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 } """A `ApplicationGisAssessmentHh` edge in the connection.""" @@ -34130,6 +34759,18 @@ enum ApplicationGisAssessmentHhsOrderBy { 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 } @@ -34150,6 +34791,24 @@ input ApplicationGisAssessmentHhCondition { """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 `ApplicationSowData` values.""" @@ -40710,16 +41369,16 @@ type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByMany } """ -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 ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedByManyToManyConnection { """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: [ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -40729,17 +41388,19 @@ type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. """ -type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndCreatedByManyToManyEdge { """A cursor 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 `ApplicationGisAssessmentHh`. + """ + applicationGisAssessmentHhsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -40758,32 +41419,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 `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 ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedByManyToManyConnection { """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: [ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -40793,17 +41454,19 @@ type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. """ -type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndUpdatedByManyToManyEdge { """A cursor 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`. + """ + applicationGisAssessmentHhsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -40822,32 +41485,98 @@ 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 `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 `ApplicationGisAssessmentHh`. +""" +type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedByManyToManyConnection { + """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. + """ + edges: [ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedByManyToManyEdge!]! + + """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 `ApplicationGisAssessmentHh`. +""" +type ApplicationCcbcUsersByApplicationGisAssessmentHhApplicationIdAndArchivedByManyToManyEdge { + """A cursor 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( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: 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 `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationGisAssessmentHhCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } """ A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyConnection { """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: [ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -40859,7 +41588,7 @@ type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToMan """ A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -40867,7 +41596,135 @@ type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToMan node: CcbcUser """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByArchivedBy( + applicationSowDataByCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: 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`. +""" +type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToManyConnection { + """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: [ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToManyEdge!]! + + """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 `ApplicationSowData`. +""" +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 `ApplicationSowData`.""" + applicationSowDataByUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: 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`. +""" +type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyConnection { + """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: [ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyEdge!]! + + """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 `ApplicationSowData`. +""" +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 `ApplicationSowData`.""" + applicationSowDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -54164,38 +55021,632 @@ type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyEd } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +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 `ApplicationAnnouncement`, and the cursor to aid in pagination. + """ + edges: [CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyEdge!]! + + """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 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 `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 + + """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 `Announcement` values, with data from `ApplicationAnnouncement`. +""" +type CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyConnection { + """A list of `Announcement` objects.""" + nodes: [Announcement]! + + """ + A list of edges which contains the `Announcement`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + """ + edges: [CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `Announcement` you could get from the connection.""" + totalCount: Int! +} + +""" +A `Announcement` edge in the connection, with data from `ApplicationAnnouncement`. +""" +type CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Announcement` at the end of the edge.""" + node: Announcement + + """ + 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! +} + +""" +A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. +""" +type CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyConnection { + """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. + """ + edges: [CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyEdge!]! + + """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 `ApplicationAnnouncement`. +""" +type CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyEdge { + """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 `ApplicationAnnouncement`. + """ + applicationAnnouncementsByApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: 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 CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyConnection { + """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: [CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyEdge!]! + + """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 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 `ApplicationAnnouncement`. + """ + 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 CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyConnection { + """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: [CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyEdge!]! + + """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 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 `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 + + """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 `Announcement` values, with data from `ApplicationAnnouncement`. +""" +type CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyConnection { + """A list of `Announcement` objects.""" + nodes: [Announcement]! + + """ + A list of edges which contains the `Announcement`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + """ + edges: [CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `Announcement` you could get from the connection.""" + totalCount: Int! +} + +""" +A `Announcement` edge in the connection, with data from `ApplicationAnnouncement`. +""" +type CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Announcement` at the end of the edge.""" + node: Announcement + + """ + 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! +} + +""" +A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. +""" +type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyConnection { + """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. + """ + edges: [CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyEdge!]! + + """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 `ApplicationAnnouncement`. +""" +type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyEdge { + """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 `ApplicationAnnouncement`. + """ + applicationAnnouncementsByApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: 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 CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyConnection { + """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: [CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyEdge!]! + + """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 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 `ApplicationAnnouncement`. + """ + 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 CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyConnection { + """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: [CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyEdge!]! + + """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 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 `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! +} + +""" +A connection to a list of `Application` values, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationGisAssessmentHhCreatedByAndApplicationIdManyToManyConnection { + """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 `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationGisAssessmentHhCreatedByAndApplicationIdManyToManyEdge!]! """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 `ApplicationGisAssessmentHh`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyEdge { +type CcbcUserApplicationsByApplicationGisAssessmentHhCreatedByAndApplicationIdManyToManyEdge { """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 `ApplicationGisAssessmentHh`. """ - applicationAnnouncementsByArchivedBy( + applicationGisAssessmentHhsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -54214,54 +55665,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 `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } """ -A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyConnection { - """A list of `Announcement` objects.""" - nodes: [Announcement]! +type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedByManyToManyConnection { + """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 `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ - edges: [CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedByManyToManyEdge!]! """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 `ApplicationGisAssessmentHh`. """ -type CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndUpdatedByManyToManyEdge { """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 `ApplicationGisAssessmentHh`. """ - applicationAnnouncementsByAnnouncementId( + applicationGisAssessmentHhsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -54280,54 +55731,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 `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedByManyToManyConnection { + """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 `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedByManyToManyEdge!]! """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 `ApplicationGisAssessmentHh`. """ -type CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationGisAssessmentHhCreatedByAndArchivedByManyToManyEdge { """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 `ApplicationGisAssessmentHh`. """ - applicationAnnouncementsByApplicationId( + applicationGisAssessmentHhsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -54346,54 +55797,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 `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `Application` values, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationGisAssessmentHhUpdatedByAndApplicationIdManyToManyConnection { + """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 `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationGisAssessmentHhUpdatedByAndApplicationIdManyToManyEdge!]! """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 `ApplicationGisAssessmentHh`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserApplicationsByApplicationGisAssessmentHhUpdatedByAndApplicationIdManyToManyEdge { """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 `ApplicationGisAssessmentHh`. """ - applicationAnnouncementsByCreatedBy( + applicationGisAssessmentHhsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -54412,32 +55863,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 `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedByManyToManyConnection { """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 `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54447,9 +55898,9 @@ type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -54457,9 +55908,9 @@ type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyE node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. """ - applicationAnnouncementsByArchivedBy( + applicationGisAssessmentHhsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -54478,54 +55929,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 `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } """ -A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyConnection { - """A list of `Announcement` objects.""" - nodes: [Announcement]! +type CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedByManyToManyConnection { + """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 `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ - edges: [CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedByManyToManyEdge!]! """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 `ApplicationGisAssessmentHh`. """ -type CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationGisAssessmentHhUpdatedByAndArchivedByManyToManyEdge { """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 `ApplicationGisAssessmentHh`. """ - applicationAnnouncementsByAnnouncementId( + applicationGisAssessmentHhsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -54544,32 +55995,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 `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. +A connection to a list of `Application` values, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationGisAssessmentHhArchivedByAndApplicationIdManyToManyConnection { """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 `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationGisAssessmentHhArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54579,9 +56030,9 @@ type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdMany } """ -A `Application` edge in the connection, with data from `ApplicationAnnouncement`. +A `Application` edge in the connection, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationGisAssessmentHhArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -54589,9 +56040,9 @@ type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdMany node: Application """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. """ - applicationAnnouncementsByApplicationId( + applicationGisAssessmentHhsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -54610,32 +56061,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 `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedByManyToManyConnection { """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 `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54645,9 +56096,9 @@ type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -54655,9 +56106,9 @@ type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyE node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. """ - applicationAnnouncementsByCreatedBy( + applicationGisAssessmentHhsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -54676,32 +56127,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 `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedByManyToManyConnection { """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 `ApplicationGisAssessmentHh`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54711,9 +56162,9 @@ type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisAssessmentHh`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationGisAssessmentHhArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -54721,9 +56172,9 @@ type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyE node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. """ - applicationAnnouncementsByUpdatedBy( + applicationGisAssessmentHhsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -54742,19 +56193,19 @@ 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 `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationGisAssessmentHhCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! } """ @@ -69896,6 +71347,21 @@ type CreateApplicationGisAssessmentHhPayload { """ 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 + """An edge for our `ApplicationGisAssessmentHh`. May be used by Relay 1.""" applicationGisAssessmentHhEdge( """The method to use when ordering `ApplicationGisAssessmentHh`.""" @@ -69925,6 +71391,24 @@ input ApplicationGisAssessmentHhInput { """The number of eligible indigenous households""" eligibleIndigenous: Float + + """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 `ApplicationGisData` mutation.""" @@ -73275,6 +74759,21 @@ type UpdateApplicationGisAssessmentHhPayload { """ 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 + """An edge for our `ApplicationGisAssessmentHh`. May be used by Relay 1.""" applicationGisAssessmentHhEdge( """The method to use when ordering `ApplicationGisAssessmentHh`.""" @@ -73313,6 +74812,24 @@ input ApplicationGisAssessmentHhPatch { """The number of eligible indigenous households""" eligibleIndigenous: Float + + """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 `updateApplicationGisAssessmentHhByRowId` mutation.""" @@ -77289,6 +78806,21 @@ type DeleteApplicationGisAssessmentHhPayload { """ 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 + """An edge for our `ApplicationGisAssessmentHh`. May be used by Relay 1.""" applicationGisAssessmentHhEdge( """The method to use when ordering `ApplicationGisAssessmentHh`.""" @@ -81084,6 +82616,21 @@ type SaveGisAssessmentHhPayload { """ 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 + """An edge for our `ApplicationGisAssessmentHh`. May be used by Relay 1.""" applicationGisAssessmentHhEdge( """The method to use when ordering `ApplicationGisAssessmentHh`.""" diff --git a/app/tests/pages/analyst/application/[applicationId]/history.test.tsx b/app/tests/pages/analyst/application/[applicationId]/history.test.tsx index 542b4f9d59..73cb617203 100644 --- a/app/tests/pages/analyst/application/[applicationId]/history.test.tsx +++ b/app/tests/pages/analyst/application/[applicationId]/history.test.tsx @@ -2831,6 +2831,31 @@ const mockQueryPayload = { sessionSub: 'test-session-sub@idir', tableName: 'application_project_type', }, + { + applicationId: 1, + createdAt: '2024-01-12T18:27:42.139106+00:00', + externalAnalyst: null, + familyName: 'Bar', + item: null, + givenName: 'Foo', + op: 'INSERT', + record: { + id: 5, + created_at: '2024-01-12T18:27:42.139106+00:00', + created_by: 3, + updated_at: '2024-01-12T18:27:42.139106+00:00', + updated_by: 3, + eligible: 10, + eligible_indigenous: 5, + archived_at: null, + archived_by: null, + application_id: 7, + }, + oldRecord: null, + recordId: 'd6431f27-b78d-5212-916d-380e0cce9583', + sessionSub: 'test-session-sub@idir', + tableName: 'application_gis_assessment_hh', + }, ], }, }, @@ -3044,7 +3069,7 @@ describe('The index page', () => { const diffTables = screen.getAllByTestId('diff-table'); - expect(diffTables.length).toBe(26); + expect(diffTables.length).toBe(27); diffTables.forEach((table) => { expect(table).toBeVisible(); @@ -3062,6 +3087,17 @@ describe('The index page', () => { ); }); + it('shows the correct history for gis assessment hh', async () => { + pageTestingHelper.loadQuery(); + pageTestingHelper.renderPage(); + + expect( + screen.getAllByTestId('history-content-gis-assessment-hh')[0] + ).toHaveTextContent( + 'Foo Bar updated the GIS Assessment Household Count on Jan 12, 2024, 10:27 a.m.' + ); + }); + it('shows the correct history for change request', async () => { pageTestingHelper.loadQuery(); pageTestingHelper.renderPage(); diff --git a/db/deploy/computed_columns/application_history.sql b/db/deploy/computed_columns/application_history.sql index a0230b8e54..8b3eccfc60 100644 --- a/db/deploy/computed_columns/application_history.sql +++ b/db/deploy/computed_columns/application_history.sql @@ -113,6 +113,15 @@ returns setof ccbc_public.history_item as $$ where v.op='INSERT' and v.table_name='application_gis_data' and v.record->>'archived_by' is null and v.record->>'application_id'=application.id::varchar(10) + union all + select application.id, v.created_at, v.op, v.table_name, v.record_id, v.record, v.old_record, + v.record->>'history_operation' as item, + u.family_name, u.given_name, u.session_sub, u.external_analyst + from ccbc_public.record_version as v + inner join ccbc_public.ccbc_user u on v.created_by = u.id + where (v.op='INSERT' or v.op='UPDATE') and v.table_name='application_gis_assessment_hh' + and v.record->>'archived_by' is null and v.record->>'application_id'=application.id::varchar(10) + union all select application.id, v.created_at, v.op, v.table_name, v.record_id, v.record, v.old_record, v.record->>'history_operation' as item, diff --git a/db/deploy/computed_columns/application_history@1.159.0.sql b/db/deploy/computed_columns/application_history@1.159.0.sql new file mode 100644 index 0000000000..a0230b8e54 --- /dev/null +++ b/db/deploy/computed_columns/application_history@1.159.0.sql @@ -0,0 +1,224 @@ +-- Deploy ccbc:computed_columns/application_history to pg + +begin; + +create or replace function ccbc_public.application_history(application ccbc_public.application) +returns setof ccbc_public.history_item as $$ + + select application.id, v.created_at, v.op, v.table_name, v.record_id, v.record, v.old_record, 'application' as item, + u.family_name, u.given_name, u.session_sub, u.external_analyst + from ccbc_public.record_version as v + inner join ccbc_public.ccbc_user u on v.created_by=u.id + where v.op='INSERT' and v.table_name='application' and v.record->>'id'=application.id::varchar(10) + union all + + select application.id, v.created_at, v.op, v.table_name, v.record_id, v.record, v.old_record, v.record->>'status' as item, + COALESCE(u.family_name,'Automated process'), COALESCE(u.given_name,''), COALESCE(u.session_sub,'robot@idir'), COALESCE(u.external_analyst,null) + from ccbc_public.record_version as v + left join ccbc_public.ccbc_user u on v.created_by=u.id + where v.op='INSERT' and v.table_name='application_status' + and v.record->>'application_id'=application.id::varchar(10) + union all + + select application.id, v.created_at, v.op, v.table_name, v.record_id, v.record, v.old_record, v.record->>'file_name' as item, + u.family_name, u.given_name, u.session_sub, u.external_analyst + from ccbc_public.record_version as v + inner join ccbc_public.ccbc_user u on v.created_by=u.id + where v.op='INSERT' and v.table_name='attachment' + and v.record->>'application_id'=application.id::varchar(10) and v.record->>'archived_by' is null + + union all + + select application.id, v.created_at, v.op, v.table_name, v.record_id, v.record, v.old_record, v.record->>'assessment_data_type' as item, + u.family_name, u.given_name, u.session_sub, u.external_analyst + from ccbc_public.record_version as v + inner join ccbc_public.ccbc_user u on v.created_by=u.id + where v.op='INSERT' and v.table_name='assessment_data' + and v.record->>'application_id'=application.id::varchar(10) and v.record->>'archived_by' is null + + union all + select application.id, v.created_at, v.op, v.table_name, v.record_id, v.record, v.old_record, + v.record-> 'json_data' ->>'rfiType' as item, + u.family_name, u.given_name, u.session_sub, u.external_analyst + from ccbc_public.record_version as v + inner join ccbc_public.ccbc_user u on v.created_by=u.id + where v.op='INSERT' and v.table_name='rfi_data' and v.record->>'archived_by' is null + and v.record->>'id' in (select rd.id::varchar(10) from ccbc_public.rfi_data as rd + inner join ccbc_public.application_rfi_data arf + on arf.rfi_data_id = rd.id + where arf.application_id = application.id) + + union all + select application.id, v.created_at, v.op, v.table_name, v.record_id, v.record, v.old_record, + v.record-> 'json_data' ->>'rfiType' as item, + u.family_name, u.given_name, u.session_sub, u.external_analyst + from ccbc_public.record_version as v + inner join ccbc_public.ccbc_user u on (v.record->>'updated_by')::integer=u.id + where v.op='UPDATE' and v.table_name='rfi_data' and v.record->>'archived_by' is null + and v.record->>'id' in (select rd.id::varchar(10) from ccbc_public.rfi_data as rd + inner join ccbc_public.application_rfi_data arf + on arf.rfi_data_id = rd.id + where arf.application_id = application.id) + + union all + select application.id, v.created_at, v.op, v.table_name, v.record_id, v.record, v.old_record, + concat_ws(' ', a.given_name, a.family_name) as item, + u.family_name, u.given_name, u.session_sub, u.external_analyst + from ccbc_public.record_version as v + inner join ccbc_public.ccbc_user u on v.created_by=u.id + left join ccbc_public.analyst a on v.record->>'analyst_id' = a.id::varchar(10) + where v.op='INSERT' and v.table_name='application_analyst_lead' and v.record->>'archived_by' is null + and v.record->>'application_id'=application.id::varchar(10) + + union all + select application.id, v.created_at, v.op, v.table_name, v.record_id, v.record, v.old_record, + v.record->>'package' as item, + u.family_name, u.given_name, u.session_sub, u.external_analyst + from ccbc_public.record_version as v + inner join ccbc_public.ccbc_user u on v.created_by=u.id + where v.op='INSERT' and v.table_name='application_package' and v.record->>'archived_by' is null + and v.record->>'application_id'=application.id::varchar(10) + + union all + select application.id, v.created_at, v.op, v.table_name, v.record_id, v.record, v.old_record, + v.record->>'conditional_approval_data' as item, + u.family_name, u.given_name, u.session_sub, u.external_analyst + from ccbc_public.record_version as v + inner join ccbc_public.ccbc_user u on v.created_by=u.id + where v.op='INSERT' and v.table_name='conditional_approval_data' and v.record->>'archived_by' is null + and v.record->>'application_id'=application.id::varchar(10) + + union all + select application.id, v.created_at, v.op, v.table_name, v.record_id, v.record, v.old_record, + v.record-> 'json_data' ->>'reason_for_change' as item, + u.family_name, u.given_name, u.session_sub, u.external_analyst + from ccbc_public.record_version as v + inner join ccbc_public.ccbc_user u on v.created_by=u.id + where v.op='INSERT' and v.table_name='form_data' and v.record->>'archived_by' is null + and v.record->>'id' in ( + select fd.id::varchar(10) from ccbc_public.form_data as fd, + ccbc_public.form as f, ccbc_public.application_form_data as af + where + fd.form_schema_id = f.id and + f.form_type = 'intake' and + af.application_id = application.id and + fd.id = af.form_data_id ) + + union all + select application.id, v.created_at, v.op, v.table_name, v.record_id, v.record, v.old_record, + v.record->>'conditional_approval_data' as item, + u.family_name, u.given_name, u.session_sub, u.external_analyst + from ccbc_public.record_version as v + inner join ccbc_public.ccbc_user u on v.created_by=u.id + where v.op='INSERT' and v.table_name='application_gis_data' and v.record->>'archived_by' is null + and v.record->>'application_id'=application.id::varchar(10) + + union all + select application.id, v.created_at, v.op, v.table_name, v.record_id, v.record, v.old_record, + v.record->>'history_operation' as item, + u.family_name, u.given_name, u.session_sub, u.external_analyst + from ccbc_public.record_version as v + inner join ccbc_public.ccbc_user u on v.created_by=u.id + where v.op='INSERT' and v.table_name='application_announcement' and v.record->>'archived_by' is null + and v.record->>'application_id'=application.id::varchar(10) + + union all + select application.id, v.created_at, v.op, v.table_name, v.record_id, v.record, v.old_record, + v.record->>'history_operation' as item, + u.family_name, u.given_name, u.session_sub, u.external_analyst + from ccbc_public.record_version as v + inner join ccbc_public.ccbc_user u on v.created_by=u.id + where v.op='INSERT' and v.table_name='project_information_data' and v.record->>'archived_by' is null + and v.record->>'application_id'=application.id::varchar(10) + + union all + + select application.id, v.created_at, v.op, v.table_name, v.record_id, v.record, v.old_record, + v.record->>'history_operation' as item, + u.family_name, u.given_name, u.session_sub, u.external_analyst + from ccbc_public.record_version as v + inner join ccbc_public.ccbc_user u on v.created_by=u.id + where (v.op='INSERT' or v.op='UPDATE') and v.table_name='change_request_data' and v.record->>'archived_by' is null + and v.record->>'application_id'=application.id::varchar(10) + + union all + select application.id, v.created_at, v.op, v.table_name, v.record_id, v.record, v.old_record, + v.record->>'history_operation' as item, + u.family_name, u.given_name, u.session_sub, u.external_analyst + from ccbc_public.record_version as v + inner join ccbc_public.ccbc_user u on v.created_by=u.id + where v.table_name='application_announcement' and v.record->>'history_operation'='deleted' + and v.record->>'application_id'=application.id::varchar(10) + + union all + select application.id, v.created_at, v.op, v.table_name, v.record_id, v.record, v.old_record, + v.record->>'application_community_progress_report_data' as item, + u.family_name, u.given_name, u.session_sub, u.external_analyst + from ccbc_public.record_version as v + inner join ccbc_public.ccbc_user u on v.created_by=u.id + where v.op='INSERT' and v.table_name='application_community_progress_report_data' and v.record->>'archived_by' is null + and v.record->>'application_id'=application.id::varchar(10) + + + union all + select application.id, v.created_at, v.op, v.table_name, v.record_id, v.record, v.old_record, + v.record->>'application_community_progress_report_data' as item, + u.family_name, u.given_name, u.session_sub, u.external_analyst + from ccbc_public.record_version as v + inner join ccbc_public.ccbc_user u on (v.record->>'updated_by')::integer=u.id + where v.op='UPDATE' and v.table_name='application_community_progress_report_data' and v.record->>'history_operation'='deleted' + and v.record->>'application_id'=application.id::varchar(10) + + union all + select application.id, v.created_at, v.op, v.table_name, v.record_id, v.record, v.old_record, + v.record->>'application_claims_data' as item, + u.family_name, u.given_name, u.session_sub, u.external_analyst + from ccbc_public.record_version as v + inner join ccbc_public.ccbc_user u on (v.record->>'updated_by')::integer=u.id + where v.op='UPDATE' and v.table_name='application_claims_data' and v.record->>'history_operation'='deleted' + and v.record->>'application_id'=application.id::varchar(10) + + union all + select application.id, v.created_at, v.op, v.table_name, v.record_id, v.record, v.old_record, + v.record->>'application_community_claims_data' as item, + u.family_name, u.given_name, u.session_sub, u.external_analyst + from ccbc_public.record_version as v + inner join ccbc_public.ccbc_user u on v.created_by=u.id + where v.op='INSERT' and v.table_name='application_claims_data' and v.record->>'archived_by' is null + and v.record->>'application_id'=application.id::varchar(10) + + union all + select application.id, v.created_at, v.op, v.table_name, v.record_id, v.record, v.old_record, + v.record->>'application_milestone_data' as item, + u.family_name, u.given_name, u.session_sub, u.external_analyst + from ccbc_public.record_version as v + inner join ccbc_public.ccbc_user u on v.created_by=u.id + where v.op='INSERT' and v.table_name='application_milestone_data' and v.record->>'archived_by' is null + and v.record->>'application_id'=application.id::varchar(10) + + union all + select application.id, v.created_at, v.op, v.table_name, v.record_id, v.record, v.old_record, + v.record->>'application_milestone_data' as item, + u.family_name, u.given_name, u.session_sub, u.external_analyst + from ccbc_public.record_version as v + inner join ccbc_public.ccbc_user u on (v.record->>'updated_by')::integer=u.id + where v.op='UPDATE' and v.table_name='application_milestone_data' and v.record->>'history_operation'='deleted' + and v.record->>'application_id'=application.id::varchar(10) + + union all + select application.id, v.created_at, v.op, v.table_name, v.record_id, v.record, v.old_record, + v.record->>'application_project_type' as item, + u.family_name, u.given_name, u.session_sub, u.external_analyst + from ccbc_public.record_version as v + inner join ccbc_public.ccbc_user u on v.created_by=u.id + where v.op='INSERT' and v.table_name='application_project_type' and v.record->>'archived_by' is null + and v.record->>'application_id'=application.id::varchar(10); + +$$ language sql stable; + +grant execute on function ccbc_public.application_history to ccbc_admin; +grant execute on function ccbc_public.application_history to ccbc_analyst; + +comment on function ccbc_public.application_history is 'Computed column that returns list of audit records for application'; + +commit; diff --git a/db/deploy/extensions/application_gis_assessment_hh_history.sql b/db/deploy/extensions/application_gis_assessment_hh_history.sql new file mode 100644 index 0000000000..506a255001 --- /dev/null +++ b/db/deploy/extensions/application_gis_assessment_hh_history.sql @@ -0,0 +1,7 @@ +-- Deploy ccbc:extensions/application_gis_assessment_hh_history to pg + +begin; + +select audit.enable_tracking('ccbc_public.application_gis_assessment_hh'::regclass); + +commit; diff --git a/db/deploy/tables/application_gis_assessment_hh_001.sql b/db/deploy/tables/application_gis_assessment_hh_001.sql new file mode 100644 index 0000000000..8c5dfc1122 --- /dev/null +++ b/db/deploy/tables/application_gis_assessment_hh_001.sql @@ -0,0 +1,7 @@ +-- Deploy ccbc:tables/application_gis_assessment_hh_001 to pg + +BEGIN; + +select ccbc_private.upsert_timestamp_columns('ccbc_public', 'application_gis_assessment_hh'); + +COMMIT; diff --git a/db/revert/computed_columns/application_history.sql b/db/revert/computed_columns/application_history.sql index 15f9f2dc64..a0230b8e54 100644 --- a/db/revert/computed_columns/application_history.sql +++ b/db/revert/computed_columns/application_history.sql @@ -165,7 +165,7 @@ returns setof ccbc_public.history_item as $$ v.record->>'application_community_progress_report_data' as item, u.family_name, u.given_name, u.session_sub, u.external_analyst from ccbc_public.record_version as v - inner join ccbc_public.ccbc_user u on v.created_by=u.id + inner join ccbc_public.ccbc_user u on (v.record->>'updated_by')::integer=u.id where v.op='UPDATE' and v.table_name='application_community_progress_report_data' and v.record->>'history_operation'='deleted' and v.record->>'application_id'=application.id::varchar(10) @@ -174,7 +174,7 @@ returns setof ccbc_public.history_item as $$ v.record->>'application_claims_data' as item, u.family_name, u.given_name, u.session_sub, u.external_analyst from ccbc_public.record_version as v - inner join ccbc_public.ccbc_user u on v.created_by=u.id + inner join ccbc_public.ccbc_user u on (v.record->>'updated_by')::integer=u.id where v.op='UPDATE' and v.table_name='application_claims_data' and v.record->>'history_operation'='deleted' and v.record->>'application_id'=application.id::varchar(10) @@ -201,7 +201,7 @@ returns setof ccbc_public.history_item as $$ v.record->>'application_milestone_data' as item, u.family_name, u.given_name, u.session_sub, u.external_analyst from ccbc_public.record_version as v - inner join ccbc_public.ccbc_user u on v.created_by=u.id + inner join ccbc_public.ccbc_user u on (v.record->>'updated_by')::integer=u.id where v.op='UPDATE' and v.table_name='application_milestone_data' and v.record->>'history_operation'='deleted' and v.record->>'application_id'=application.id::varchar(10) diff --git a/db/revert/computed_columns/application_history@1.159.0.sql b/db/revert/computed_columns/application_history@1.159.0.sql new file mode 100644 index 0000000000..15f9f2dc64 --- /dev/null +++ b/db/revert/computed_columns/application_history@1.159.0.sql @@ -0,0 +1,224 @@ +-- Deploy ccbc:computed_columns/application_history to pg + +begin; + +create or replace function ccbc_public.application_history(application ccbc_public.application) +returns setof ccbc_public.history_item as $$ + + select application.id, v.created_at, v.op, v.table_name, v.record_id, v.record, v.old_record, 'application' as item, + u.family_name, u.given_name, u.session_sub, u.external_analyst + from ccbc_public.record_version as v + inner join ccbc_public.ccbc_user u on v.created_by=u.id + where v.op='INSERT' and v.table_name='application' and v.record->>'id'=application.id::varchar(10) + union all + + select application.id, v.created_at, v.op, v.table_name, v.record_id, v.record, v.old_record, v.record->>'status' as item, + COALESCE(u.family_name,'Automated process'), COALESCE(u.given_name,''), COALESCE(u.session_sub,'robot@idir'), COALESCE(u.external_analyst,null) + from ccbc_public.record_version as v + left join ccbc_public.ccbc_user u on v.created_by=u.id + where v.op='INSERT' and v.table_name='application_status' + and v.record->>'application_id'=application.id::varchar(10) + union all + + select application.id, v.created_at, v.op, v.table_name, v.record_id, v.record, v.old_record, v.record->>'file_name' as item, + u.family_name, u.given_name, u.session_sub, u.external_analyst + from ccbc_public.record_version as v + inner join ccbc_public.ccbc_user u on v.created_by=u.id + where v.op='INSERT' and v.table_name='attachment' + and v.record->>'application_id'=application.id::varchar(10) and v.record->>'archived_by' is null + + union all + + select application.id, v.created_at, v.op, v.table_name, v.record_id, v.record, v.old_record, v.record->>'assessment_data_type' as item, + u.family_name, u.given_name, u.session_sub, u.external_analyst + from ccbc_public.record_version as v + inner join ccbc_public.ccbc_user u on v.created_by=u.id + where v.op='INSERT' and v.table_name='assessment_data' + and v.record->>'application_id'=application.id::varchar(10) and v.record->>'archived_by' is null + + union all + select application.id, v.created_at, v.op, v.table_name, v.record_id, v.record, v.old_record, + v.record-> 'json_data' ->>'rfiType' as item, + u.family_name, u.given_name, u.session_sub, u.external_analyst + from ccbc_public.record_version as v + inner join ccbc_public.ccbc_user u on v.created_by=u.id + where v.op='INSERT' and v.table_name='rfi_data' and v.record->>'archived_by' is null + and v.record->>'id' in (select rd.id::varchar(10) from ccbc_public.rfi_data as rd + inner join ccbc_public.application_rfi_data arf + on arf.rfi_data_id = rd.id + where arf.application_id = application.id) + + union all + select application.id, v.created_at, v.op, v.table_name, v.record_id, v.record, v.old_record, + v.record-> 'json_data' ->>'rfiType' as item, + u.family_name, u.given_name, u.session_sub, u.external_analyst + from ccbc_public.record_version as v + inner join ccbc_public.ccbc_user u on (v.record->>'updated_by')::integer=u.id + where v.op='UPDATE' and v.table_name='rfi_data' and v.record->>'archived_by' is null + and v.record->>'id' in (select rd.id::varchar(10) from ccbc_public.rfi_data as rd + inner join ccbc_public.application_rfi_data arf + on arf.rfi_data_id = rd.id + where arf.application_id = application.id) + + union all + select application.id, v.created_at, v.op, v.table_name, v.record_id, v.record, v.old_record, + concat_ws(' ', a.given_name, a.family_name) as item, + u.family_name, u.given_name, u.session_sub, u.external_analyst + from ccbc_public.record_version as v + inner join ccbc_public.ccbc_user u on v.created_by=u.id + left join ccbc_public.analyst a on v.record->>'analyst_id' = a.id::varchar(10) + where v.op='INSERT' and v.table_name='application_analyst_lead' and v.record->>'archived_by' is null + and v.record->>'application_id'=application.id::varchar(10) + + union all + select application.id, v.created_at, v.op, v.table_name, v.record_id, v.record, v.old_record, + v.record->>'package' as item, + u.family_name, u.given_name, u.session_sub, u.external_analyst + from ccbc_public.record_version as v + inner join ccbc_public.ccbc_user u on v.created_by=u.id + where v.op='INSERT' and v.table_name='application_package' and v.record->>'archived_by' is null + and v.record->>'application_id'=application.id::varchar(10) + + union all + select application.id, v.created_at, v.op, v.table_name, v.record_id, v.record, v.old_record, + v.record->>'conditional_approval_data' as item, + u.family_name, u.given_name, u.session_sub, u.external_analyst + from ccbc_public.record_version as v + inner join ccbc_public.ccbc_user u on v.created_by=u.id + where v.op='INSERT' and v.table_name='conditional_approval_data' and v.record->>'archived_by' is null + and v.record->>'application_id'=application.id::varchar(10) + + union all + select application.id, v.created_at, v.op, v.table_name, v.record_id, v.record, v.old_record, + v.record-> 'json_data' ->>'reason_for_change' as item, + u.family_name, u.given_name, u.session_sub, u.external_analyst + from ccbc_public.record_version as v + inner join ccbc_public.ccbc_user u on v.created_by=u.id + where v.op='INSERT' and v.table_name='form_data' and v.record->>'archived_by' is null + and v.record->>'id' in ( + select fd.id::varchar(10) from ccbc_public.form_data as fd, + ccbc_public.form as f, ccbc_public.application_form_data as af + where + fd.form_schema_id = f.id and + f.form_type = 'intake' and + af.application_id = application.id and + fd.id = af.form_data_id ) + + union all + select application.id, v.created_at, v.op, v.table_name, v.record_id, v.record, v.old_record, + v.record->>'conditional_approval_data' as item, + u.family_name, u.given_name, u.session_sub, u.external_analyst + from ccbc_public.record_version as v + inner join ccbc_public.ccbc_user u on v.created_by=u.id + where v.op='INSERT' and v.table_name='application_gis_data' and v.record->>'archived_by' is null + and v.record->>'application_id'=application.id::varchar(10) + + union all + select application.id, v.created_at, v.op, v.table_name, v.record_id, v.record, v.old_record, + v.record->>'history_operation' as item, + u.family_name, u.given_name, u.session_sub, u.external_analyst + from ccbc_public.record_version as v + inner join ccbc_public.ccbc_user u on v.created_by=u.id + where v.op='INSERT' and v.table_name='application_announcement' and v.record->>'archived_by' is null + and v.record->>'application_id'=application.id::varchar(10) + + union all + select application.id, v.created_at, v.op, v.table_name, v.record_id, v.record, v.old_record, + v.record->>'history_operation' as item, + u.family_name, u.given_name, u.session_sub, u.external_analyst + from ccbc_public.record_version as v + inner join ccbc_public.ccbc_user u on v.created_by=u.id + where v.op='INSERT' and v.table_name='project_information_data' and v.record->>'archived_by' is null + and v.record->>'application_id'=application.id::varchar(10) + + union all + + select application.id, v.created_at, v.op, v.table_name, v.record_id, v.record, v.old_record, + v.record->>'history_operation' as item, + u.family_name, u.given_name, u.session_sub, u.external_analyst + from ccbc_public.record_version as v + inner join ccbc_public.ccbc_user u on v.created_by=u.id + where (v.op='INSERT' or v.op='UPDATE') and v.table_name='change_request_data' and v.record->>'archived_by' is null + and v.record->>'application_id'=application.id::varchar(10) + + union all + select application.id, v.created_at, v.op, v.table_name, v.record_id, v.record, v.old_record, + v.record->>'history_operation' as item, + u.family_name, u.given_name, u.session_sub, u.external_analyst + from ccbc_public.record_version as v + inner join ccbc_public.ccbc_user u on v.created_by=u.id + where v.table_name='application_announcement' and v.record->>'history_operation'='deleted' + and v.record->>'application_id'=application.id::varchar(10) + + union all + select application.id, v.created_at, v.op, v.table_name, v.record_id, v.record, v.old_record, + v.record->>'application_community_progress_report_data' as item, + u.family_name, u.given_name, u.session_sub, u.external_analyst + from ccbc_public.record_version as v + inner join ccbc_public.ccbc_user u on v.created_by=u.id + where v.op='INSERT' and v.table_name='application_community_progress_report_data' and v.record->>'archived_by' is null + and v.record->>'application_id'=application.id::varchar(10) + + + union all + select application.id, v.created_at, v.op, v.table_name, v.record_id, v.record, v.old_record, + v.record->>'application_community_progress_report_data' as item, + u.family_name, u.given_name, u.session_sub, u.external_analyst + from ccbc_public.record_version as v + inner join ccbc_public.ccbc_user u on v.created_by=u.id + where v.op='UPDATE' and v.table_name='application_community_progress_report_data' and v.record->>'history_operation'='deleted' + and v.record->>'application_id'=application.id::varchar(10) + + union all + select application.id, v.created_at, v.op, v.table_name, v.record_id, v.record, v.old_record, + v.record->>'application_claims_data' as item, + u.family_name, u.given_name, u.session_sub, u.external_analyst + from ccbc_public.record_version as v + inner join ccbc_public.ccbc_user u on v.created_by=u.id + where v.op='UPDATE' and v.table_name='application_claims_data' and v.record->>'history_operation'='deleted' + and v.record->>'application_id'=application.id::varchar(10) + + union all + select application.id, v.created_at, v.op, v.table_name, v.record_id, v.record, v.old_record, + v.record->>'application_community_claims_data' as item, + u.family_name, u.given_name, u.session_sub, u.external_analyst + from ccbc_public.record_version as v + inner join ccbc_public.ccbc_user u on v.created_by=u.id + where v.op='INSERT' and v.table_name='application_claims_data' and v.record->>'archived_by' is null + and v.record->>'application_id'=application.id::varchar(10) + + union all + select application.id, v.created_at, v.op, v.table_name, v.record_id, v.record, v.old_record, + v.record->>'application_milestone_data' as item, + u.family_name, u.given_name, u.session_sub, u.external_analyst + from ccbc_public.record_version as v + inner join ccbc_public.ccbc_user u on v.created_by=u.id + where v.op='INSERT' and v.table_name='application_milestone_data' and v.record->>'archived_by' is null + and v.record->>'application_id'=application.id::varchar(10) + + union all + select application.id, v.created_at, v.op, v.table_name, v.record_id, v.record, v.old_record, + v.record->>'application_milestone_data' as item, + u.family_name, u.given_name, u.session_sub, u.external_analyst + from ccbc_public.record_version as v + inner join ccbc_public.ccbc_user u on v.created_by=u.id + where v.op='UPDATE' and v.table_name='application_milestone_data' and v.record->>'history_operation'='deleted' + and v.record->>'application_id'=application.id::varchar(10) + + union all + select application.id, v.created_at, v.op, v.table_name, v.record_id, v.record, v.old_record, + v.record->>'application_project_type' as item, + u.family_name, u.given_name, u.session_sub, u.external_analyst + from ccbc_public.record_version as v + inner join ccbc_public.ccbc_user u on v.created_by=u.id + where v.op='INSERT' and v.table_name='application_project_type' and v.record->>'archived_by' is null + and v.record->>'application_id'=application.id::varchar(10); + +$$ language sql stable; + +grant execute on function ccbc_public.application_history to ccbc_admin; +grant execute on function ccbc_public.application_history to ccbc_analyst; + +comment on function ccbc_public.application_history is 'Computed column that returns list of audit records for application'; + +commit; diff --git a/db/revert/extensions/application_gis_assessment_hh_history.sql b/db/revert/extensions/application_gis_assessment_hh_history.sql new file mode 100644 index 0000000000..0536af9ad5 --- /dev/null +++ b/db/revert/extensions/application_gis_assessment_hh_history.sql @@ -0,0 +1,5 @@ +-- Revert ccbc:extensions/application_gis_assessment_hh_history from pg +BEGIN; +SELECT + audit.disable_tracking('ccbc_public.application_gis_assessment_hh'::regclass); +COMMIT; diff --git a/db/revert/tables/application_gis_assessment_hh_001.sql b/db/revert/tables/application_gis_assessment_hh_001.sql new file mode 100644 index 0000000000..61c119d9f0 --- /dev/null +++ b/db/revert/tables/application_gis_assessment_hh_001.sql @@ -0,0 +1,7 @@ +-- Revert ccbc:tables/application_gis_data_001 from pg + +BEGIN; + +-- XXX Add DDLs here. + +COMMIT; diff --git a/db/sqitch.plan b/db/sqitch.plan index 7cbb9ff26d..549dae081a 100644 --- a/db/sqitch.plan +++ b/db/sqitch.plan @@ -567,3 +567,6 @@ tables/cbc_data 2024-05-08T18:08:06Z Rafael Solorzano <61289255+rafasdc@users.no mutations/create_pending_change_request 2024-05-22T16:44:01Z ,,, # add create application pending change request mutation @1.162.0 2024-05-23T21:23:23Z CCBC Service Account # release v1.162.0 @1.162.1 2024-05-30T16:25:42Z CCBC Service Account # release v1.162.1 +tables/application_gis_assessment_hh_001 2024-05-15T20:36:30Z Anthony Bushara # gis hh has upsert columns +extensions/application_gis_assessment_hh_history 2024-05-15T19:51:28Z Anthony Bushara # Enable audit tracking on gis assessment hh +computed_columns/application_history [computed_columns/application_history@1.159.0] 2024-05-15T19:31:39Z Anthony Bushara # Rework to include updates to application_gis_data