From 47945f788ca01ac8b21a338a330dcd136cdbdf01 Mon Sep 17 00:00:00 2001 From: Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> Date: Wed, 8 May 2024 11:49:19 -0700 Subject: [PATCH 01/34] feat: add cbc projects and data tables --- db/deploy/tables/cbc_projects.sql | 45 ++++++++++++++++++++++++++ db/deploy/tables/cbc_projects_data.sql | 44 +++++++++++++++++++++++++ db/revert/tables/cbc_projects.sql | 7 ++++ db/revert/tables/cbc_projects_data.sql | 7 ++++ db/sqitch.plan | 2 ++ 5 files changed, 105 insertions(+) create mode 100644 db/deploy/tables/cbc_projects.sql create mode 100644 db/deploy/tables/cbc_projects_data.sql create mode 100644 db/revert/tables/cbc_projects.sql create mode 100644 db/revert/tables/cbc_projects_data.sql diff --git a/db/deploy/tables/cbc_projects.sql b/db/deploy/tables/cbc_projects.sql new file mode 100644 index 0000000000..d4156c6863 --- /dev/null +++ b/db/deploy/tables/cbc_projects.sql @@ -0,0 +1,45 @@ +-- Deploy ccbc:tables/cbc_projects to pg + +begin; + +create table ccbc_public.cbc_projects( + id integer primary key generated always as identity, + project_number integer not null unique, + sharepoint_timestamp timestamp with time zone default null +); + +select ccbc_private.upsert_timestamp_columns('ccbc_public', 'cbc_projects'); + +create index cbc_projects_project_number on ccbc_public.cbc_projects(project_number); + +-- enable audit/history +select audit.enable_tracking('ccbc_public.cbc_projects'::regclass); + +do +$grant$ +begin + +-- Grant ccbc_admin permissions +perform ccbc_private.grant_permissions('select', 'cbc_projects', 'ccbc_admin'); +perform ccbc_private.grant_permissions('insert', 'cbc_projects', 'ccbc_admin'); +perform ccbc_private.grant_permissions('update', 'cbc_projects', 'ccbc_admin'); + +-- Grant ccbc_analyst permissions +perform ccbc_private.grant_permissions('select', 'cbc_projects', 'ccbc_analyst'); +perform ccbc_private.grant_permissions('insert', 'cbc_projects', 'ccbc_analyst'); +perform ccbc_private.grant_permissions('update', 'cbc_projects', 'ccbc_analyst'); + +-- Grant ccbc_service_account permissions +perform ccbc_private.grant_permissions('select', 'cbc_project', 'ccbc_service_account'); +perform ccbc_private.grant_permissions('insert', 'cbc_project', 'ccbc_service_account'); +perform ccbc_private.grant_permissions('update', 'cbc_project', 'ccbc_service_account'); + +end +$grant$; + +comment on table ccbc_public.cbc_projects is 'Table containing the data imported from the CBC projects excel file, by rows'; +comment on column ccbc_public.cbc_projects.id is 'Unique ID for the row'; +comment on column ccbc_public.cbc_projects.project_number is 'The project number, unique for each project'; +comment on column ccbc_public.cbc_projects.sharepoint_timestamp is 'The timestamp of the last time the data was updated from sharepoint'; + +commit; diff --git a/db/deploy/tables/cbc_projects_data.sql b/db/deploy/tables/cbc_projects_data.sql new file mode 100644 index 0000000000..2d0c08fe9f --- /dev/null +++ b/db/deploy/tables/cbc_projects_data.sql @@ -0,0 +1,44 @@ +-- Deploy ccbc:tables/cbc_projects_data to pg + +begin; + +create table ccbc_public.cbc_projects_data( + id integer primary key generated always as identity, + cbc_id integer references ccbc_public.cbc_projects(id), + project_number integer references ccbc_public.cbc_projects(project_number), + json_data jsonb not null default '{}'::jsonb, + sharepoint_timestamp timestamp with time zone default null +); + +select ccbc_private.upsert_timestamp_columns('ccbc_public', 'cbc_projects_data'); + +do +$grant$ +begin + +-- Grant ccbc_admin permissions +perform ccbc_private.grant_permissions('select', 'cbc_projects_data', 'ccbc_admin'); +perform ccbc_private.grant_permissions('insert', 'cbc_projects_data', 'ccbc_admin'); +perform ccbc_private.grant_permissions('update', 'cbc_projects_data', 'ccbc_admin'); + +-- Grant ccbc_analyst permissions +perform ccbc_private.grant_permissions('select', 'cbc_projects_data', 'ccbc_analyst'); +perform ccbc_private.grant_permissions('insert', 'cbc_projects_data', 'ccbc_analyst'); +perform ccbc_private.grant_permissions('update', 'cbc_projects_data', 'ccbc_analyst'); + +-- Grant ccbc_service_account permissions +perform ccbc_private.grant_permissions('select', 'cbc_project', 'ccbc_service_account'); +perform ccbc_private.grant_permissions('insert', 'cbc_project', 'ccbc_service_account'); +perform ccbc_private.grant_permissions('update', 'cbc_project', 'ccbc_service_account'); + +end +$grant$; + +comment on table ccbc_public.cbc_projects_data is 'Table containing the json data for cbc applications'; +comment on column ccbc_public.cbc_projects_data.id is 'Unique ID for the cbc_projects_data'; +comment on column ccbc_public.cbc_projects_data.cbc_id is 'ID of the cbc application this cbc_projects_data belongs to'; +comment on column ccbc_public.cbc_projects_data.project_number is 'Column containing the project number the cbc application is from'; +comment on column ccbc_public.cbc_project.json_data is 'The data imported from the excel for that cbc project'; +comment on column ccbc_public.cbc_project.sharepoint_timestamp is 'The timestamp of the last time the data was updated from sharepoint'; + +commit; diff --git a/db/revert/tables/cbc_projects.sql b/db/revert/tables/cbc_projects.sql new file mode 100644 index 0000000000..9f0b62bf49 --- /dev/null +++ b/db/revert/tables/cbc_projects.sql @@ -0,0 +1,7 @@ +-- Revert ccbc:tables/cbc_projects from pg + +BEGIN; + +drop table if exists ccbc_public.cbc_projects cascade; + +COMMIT; diff --git a/db/revert/tables/cbc_projects_data.sql b/db/revert/tables/cbc_projects_data.sql new file mode 100644 index 0000000000..96bd1f1f51 --- /dev/null +++ b/db/revert/tables/cbc_projects_data.sql @@ -0,0 +1,7 @@ +-- Revert ccbc:tables/cbc_projects_data from pg + +BEGIN; + +drop table if exists ccbc_public.cbc_projects_data cascade; + +COMMIT; diff --git a/db/sqitch.plan b/db/sqitch.plan index 5e12245fde..cff6028112 100644 --- a/db/sqitch.plan +++ b/db/sqitch.plan @@ -562,3 +562,5 @@ tables/application_status_type_010_closed_to_not_selected 2024-05-01T15:54:58Z A @1.160.1 2024-05-15T16:41:31Z CCBC Service Account # release v1.160.1 tables/application_pending_change_request 2024-05-03T20:55:21Z ,,, # add application pending change request table @1.161.0 2024-05-15T17:59:55Z CCBC Service Account # release v1.161.0 +tables/cbc_projects 2024-05-08T17:56:10Z Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> # add cbc projects table for individual cbc projects +tables/cbc_projects_data 2024-05-08T18:08:06Z Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> # table to hold the json data for individual cbc projects From d9f9b29df2d6fbcf3afa59d6235de501576c99c9 Mon Sep 17 00:00:00 2001 From: Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> Date: Wed, 8 May 2024 13:47:13 -0700 Subject: [PATCH 02/34] chore: rename tables, recreate schema rename tables due to to conflict on graphql schema generation with cbc_project --- app/schema/schema.graphql | 9940 ++++++++++++++---------- db/deploy/tables/cbc.sql | 45 + db/deploy/tables/cbc_data.sql | 44 + db/deploy/tables/cbc_projects.sql | 45 - db/deploy/tables/cbc_projects_data.sql | 44 - db/revert/tables/cbc.sql | 7 + db/revert/tables/cbc_projects.sql | 7 - db/revert/tables/cbc_projects_data.sql | 4 +- db/sqitch.plan | 4 +- 9 files changed, 6018 insertions(+), 4122 deletions(-) create mode 100644 db/deploy/tables/cbc.sql create mode 100644 db/deploy/tables/cbc_data.sql delete mode 100644 db/deploy/tables/cbc_projects.sql delete mode 100644 db/deploy/tables/cbc_projects_data.sql create mode 100644 db/revert/tables/cbc.sql delete mode 100644 db/revert/tables/cbc_projects.sql diff --git a/app/schema/schema.graphql b/app/schema/schema.graphql index d120513cca..56943ee1d5 100644 --- a/app/schema/schema.graphql +++ b/app/schema/schema.graphql @@ -581,42 +581,6 @@ type Query implements Node { filter: ApplicationPackageFilter ): ApplicationPackagesConnection - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - allApplicationPendingChangeRequests( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationPendingChangeRequestCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection - """ Reads and enables pagination through a set of `ApplicationProjectType`. """ @@ -891,6 +855,74 @@ type Query implements Node { filter: AttachmentFilter ): AttachmentsConnection + """Reads and enables pagination through a set of `Cbc`.""" + allCbcs( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcFilter + ): CbcsConnection + + """Reads and enables pagination through a set of `CbcData`.""" + allCbcData( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcDataFilter + ): CbcDataConnection + """Reads and enables pagination through a set of `CbcProject`.""" allCbcProjects( """Only read the first `n` values of the set.""" @@ -1658,7 +1690,6 @@ type Query implements Node { applicationMilestoneDataByRowId(rowId: Int!): ApplicationMilestoneData applicationMilestoneExcelDataByRowId(rowId: Int!): ApplicationMilestoneExcelData applicationPackageByRowId(rowId: Int!): ApplicationPackage - applicationPendingChangeRequestByRowId(rowId: Int!): ApplicationPendingChangeRequest applicationProjectTypeByRowId(rowId: Int!): ApplicationProjectType applicationRfiDataByRfiDataIdAndApplicationId(rfiDataId: Int!, applicationId: Int!): ApplicationRfiData applicationSowDataByRowId(rowId: Int!): ApplicationSowData @@ -1668,6 +1699,9 @@ type Query implements Node { assessmentDataByRowId(rowId: Int!): AssessmentData assessmentTypeByName(name: String!): AssessmentType attachmentByRowId(rowId: Int!): Attachment + cbcByRowId(rowId: Int!): Cbc + cbcByProjectNumber(projectNumber: Int!): Cbc + cbcDataByRowId(rowId: Int!): CbcData cbcProjectByRowId(rowId: Int!): CbcProject ccbcUserByRowId(rowId: Int!): CcbcUser changeRequestDataByRowId(rowId: Int!): ChangeRequestData @@ -1874,16 +1908,6 @@ type Query implements Node { id: ID! ): ApplicationPackage - """ - Reads a single `ApplicationPendingChangeRequest` using its globally unique `ID`. - """ - applicationPendingChangeRequest( - """ - The globally unique `ID` to be used in selecting a single `ApplicationPendingChangeRequest`. - """ - id: ID! - ): ApplicationPendingChangeRequest - """ Reads a single `ApplicationProjectType` using its globally unique `ID`. """ @@ -1950,6 +1974,18 @@ type Query implements Node { id: ID! ): Attachment + """Reads a single `Cbc` using its globally unique `ID`.""" + cbc( + """The globally unique `ID` to be used in selecting a single `Cbc`.""" + id: ID! + ): Cbc + + """Reads a single `CbcData` using its globally unique `ID`.""" + cbcData( + """The globally unique `ID` to be used in selecting a single `CbcData`.""" + id: ID! + ): CbcData + """Reads a single `CbcProject` using its globally unique `ID`.""" cbcProject( """ @@ -5984,10 +6020,8 @@ type CcbcUser implements Node { filter: NotificationFilter ): NotificationsConnection! - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByCreatedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6006,24 +6040,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: CbcFilter + ): CbcsConnection! - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByUpdatedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6042,24 +6074,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: CbcFilter + ): CbcsConnection! - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByArchivedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6078,22 +6108,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: CbcFilter + ): CbcsConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCcbcUserCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6112,22 +6142,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyConnection! + filter: CbcDataFilter + ): CbcDataConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCcbcUserCreatedByAndArchivedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6146,22 +6176,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyConnection! + filter: CbcDataFilter + ): CbcDataConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCcbcUserUpdatedByAndCreatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6180,22 +6210,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyConnection! + filter: CbcDataFilter + ): CbcDataConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCcbcUserUpdatedByAndArchivedBy( + ccbcUsersByCcbcUserCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6226,10 +6256,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCcbcUserArchivedByAndCreatedBy( + ccbcUsersByCcbcUserCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6260,10 +6290,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCcbcUserArchivedByAndUpdatedBy( + ccbcUsersByCcbcUserUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6294,10 +6324,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeCreatedByAndUpdatedBy( + ccbcUsersByCcbcUserUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6328,10 +6358,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeCreatedByAndArchivedBy( + ccbcUsersByCcbcUserArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6362,10 +6392,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `GaplessCounter`.""" - gaplessCountersByIntakeCreatedByAndCounterId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCcbcUserArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6384,22 +6414,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GaplessCounter`.""" - orderBy: [GaplessCountersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GaplessCounterCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GaplessCounterFilter - ): CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeUpdatedByAndCreatedBy( + ccbcUsersByIntakeCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6430,10 +6460,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeUpdatedByAndArchivedBy( + ccbcUsersByIntakeCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6464,10 +6494,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `GaplessCounter`.""" - gaplessCountersByIntakeUpdatedByAndCounterId( + gaplessCountersByIntakeCreatedByAndCounterId( """Only read the first `n` values of the set.""" first: Int @@ -6498,10 +6528,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: GaplessCounterFilter - ): CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyConnection! + ): CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeArchivedByAndCreatedBy( + ccbcUsersByIntakeUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6532,10 +6562,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeArchivedByAndUpdatedBy( + ccbcUsersByIntakeUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6566,10 +6596,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `GaplessCounter`.""" - gaplessCountersByIntakeArchivedByAndCounterId( + gaplessCountersByIntakeUpdatedByAndCounterId( """Only read the first `n` values of the set.""" first: Int @@ -6600,10 +6630,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: GaplessCounterFilter - ): CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyConnection! + ): CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyConnection! - """Reads and enables pagination through a set of `Intake`.""" - intakesByApplicationCreatedByAndIntakeId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByIntakeArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6622,22 +6652,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): CcbcUserIntakesByApplicationCreatedByAndIntakeIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCreatedByAndUpdatedBy( + ccbcUsersByIntakeArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6668,10 +6698,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCreatedByAndArchivedBy( + """Reads and enables pagination through a set of `GaplessCounter`.""" + gaplessCountersByIntakeArchivedByAndCounterId( """Only read the first `n` values of the set.""" first: Int @@ -6690,22 +6720,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GaplessCounter`.""" + orderBy: [GaplessCountersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: GaplessCounterCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyConnection! + filter: GaplessCounterFilter + ): CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyConnection! """Reads and enables pagination through a set of `Intake`.""" - intakesByApplicationUpdatedByAndIntakeId( + intakesByApplicationCreatedByAndIntakeId( """Only read the first `n` values of the set.""" first: Int @@ -6736,10 +6766,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: IntakeFilter - ): CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyConnection! + ): CcbcUserIntakesByApplicationCreatedByAndIntakeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationUpdatedByAndCreatedBy( + ccbcUsersByApplicationCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6770,10 +6800,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationUpdatedByAndArchivedBy( + ccbcUsersByApplicationCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6804,10 +6834,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Intake`.""" - intakesByApplicationArchivedByAndIntakeId( + intakesByApplicationUpdatedByAndIntakeId( """Only read the first `n` values of the set.""" first: Int @@ -6838,10 +6868,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: IntakeFilter - ): CcbcUserIntakesByApplicationArchivedByAndIntakeIdManyToManyConnection! + ): CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationArchivedByAndCreatedBy( + ccbcUsersByApplicationUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6872,10 +6902,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationArchivedByAndUpdatedBy( + ccbcUsersByApplicationUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6906,10 +6936,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationStatusCreatedByAndApplicationId( + """Reads and enables pagination through a set of `Intake`.""" + intakesByApplicationArchivedByAndIntakeId( """Only read the first `n` values of the set.""" first: Int @@ -6928,22 +6958,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 `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyConnection! + filter: IntakeFilter + ): CcbcUserIntakesByApplicationArchivedByAndIntakeIdManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationStatusType`.""" - applicationStatusTypesByApplicationStatusCreatedByAndStatus( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6962,22 +6992,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatusType`.""" - orderBy: [ApplicationStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusTypeCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusTypeFilter - ): CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusCreatedByAndArchivedBy( + ccbcUsersByApplicationArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7008,44 +7038,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusCreatedByAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationStatusArchivedByAndApplicationId( + applicationsByApplicationStatusCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -7076,10 +7072,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `ApplicationStatusType`.""" - applicationStatusTypesByApplicationStatusArchivedByAndStatus( + applicationStatusTypesByApplicationStatusCreatedByAndStatus( """Only read the first `n` values of the set.""" first: Int @@ -7110,10 +7106,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationStatusTypeFilter - ): CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyConnection! + ): CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusArchivedByAndCreatedBy( + ccbcUsersByApplicationStatusCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7144,10 +7140,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusArchivedByAndUpdatedBy( + ccbcUsersByApplicationStatusCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7178,10 +7174,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationStatusUpdatedByAndApplicationId( + applicationsByApplicationStatusArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -7212,10 +7208,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `ApplicationStatusType`.""" - applicationStatusTypesByApplicationStatusUpdatedByAndStatus( + applicationStatusTypesByApplicationStatusArchivedByAndStatus( """Only read the first `n` values of the set.""" first: Int @@ -7246,10 +7242,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationStatusTypeFilter - ): CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyConnection! + ): CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusUpdatedByAndCreatedBy( + ccbcUsersByApplicationStatusArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7280,10 +7276,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusUpdatedByAndArchivedBy( + ccbcUsersByApplicationStatusArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7314,10 +7310,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByAttachmentCreatedByAndApplicationId( + applicationsByApplicationStatusUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -7348,10 +7344,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByAttachmentCreatedByAndApplicationStatusId( + """Reads and enables pagination through a set of `ApplicationStatusType`.""" + applicationStatusTypesByApplicationStatusUpdatedByAndStatus( """Only read the first `n` values of the set.""" first: Int @@ -7370,22 +7366,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatusType`.""" + orderBy: [ApplicationStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ApplicationStatusTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyToManyConnection! + filter: ApplicationStatusTypeFilter + ): CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentCreatedByAndUpdatedBy( + ccbcUsersByApplicationStatusUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7416,10 +7412,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentCreatedByAndArchivedBy( + ccbcUsersByApplicationStatusUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7450,10 +7446,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByAttachmentUpdatedByAndApplicationId( + applicationsByAttachmentCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -7484,10 +7480,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByAttachmentUpdatedByAndApplicationStatusId( + applicationStatusesByAttachmentCreatedByAndApplicationStatusId( """Only read the first `n` values of the set.""" first: Int @@ -7518,10 +7514,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationStatusFilter - ): CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyConnection! + ): CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentUpdatedByAndCreatedBy( + ccbcUsersByAttachmentCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7552,10 +7548,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentUpdatedByAndArchivedBy( + ccbcUsersByAttachmentCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7586,10 +7582,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByAttachmentArchivedByAndApplicationId( + applicationsByAttachmentUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -7620,10 +7616,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByAttachmentArchivedByAndApplicationStatusId( + applicationStatusesByAttachmentUpdatedByAndApplicationStatusId( """Only read the first `n` values of the set.""" first: Int @@ -7654,10 +7650,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationStatusFilter - ): CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdManyToManyConnection! + ): CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentArchivedByAndCreatedBy( + ccbcUsersByAttachmentUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7688,10 +7684,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentArchivedByAndUpdatedBy( + ccbcUsersByAttachmentUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7722,10 +7718,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `FormDataStatusType`.""" - formDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByAttachmentArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -7744,22 +7740,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormDataStatusType`.""" - orderBy: [FormDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataStatusTypeCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataStatusTypeFilter - ): CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByAttachmentArchivedByAndApplicationStatusId( """Only read the first `n` values of the set.""" first: Int @@ -7778,22 +7774,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyConnection! + filter: ApplicationStatusFilter + ): CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataCreatedByAndArchivedBy( + ccbcUsersByAttachmentArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7824,10 +7820,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Form`.""" - formsByFormDataCreatedByAndFormSchemaId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAttachmentArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7846,22 +7842,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Form`.""" - orderBy: [FormsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormFilter - ): CcbcUserFormsByFormDataCreatedByAndFormSchemaIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `FormDataStatusType`.""" - formDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeId( + formDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -7892,10 +7888,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: FormDataStatusTypeFilter - ): CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyToManyConnection! + ): CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataUpdatedByAndCreatedBy( + ccbcUsersByFormDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7926,10 +7922,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataUpdatedByAndArchivedBy( + ccbcUsersByFormDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7960,10 +7956,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Form`.""" - formsByFormDataUpdatedByAndFormSchemaId( + formsByFormDataCreatedByAndFormSchemaId( """Only read the first `n` values of the set.""" first: Int @@ -7994,10 +7990,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: FormFilter - ): CcbcUserFormsByFormDataUpdatedByAndFormSchemaIdManyToManyConnection! + ): CcbcUserFormsByFormDataCreatedByAndFormSchemaIdManyToManyConnection! """Reads and enables pagination through a set of `FormDataStatusType`.""" - formDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeId( + formDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -8028,112 +8024,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: FormDataStatusTypeFilter - ): CcbcUserFormDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeIdManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataArchivedByAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataArchivedByAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyConnection! - - """Reads and enables pagination through a set of `Form`.""" - formsByFormDataArchivedByAndFormSchemaId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `Form`.""" - orderBy: [FormsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: FormCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormFilter - ): CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyConnection! + ): CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnalystCreatedByAndUpdatedBy( + ccbcUsersByFormDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8164,10 +8058,248 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnalystCreatedByAndArchivedBy( + ccbcUsersByFormDataUpdatedByAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `Form`.""" + formsByFormDataUpdatedByAndFormSchemaId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Form`.""" + orderBy: [FormsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormFilter + ): CcbcUserFormsByFormDataUpdatedByAndFormSchemaIdManyToManyConnection! + + """Reads and enables pagination through a set of `FormDataStatusType`.""" + formDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `FormDataStatusType`.""" + orderBy: [FormDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormDataStatusTypeCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataStatusTypeFilter + ): CcbcUserFormDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeIdManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByFormDataArchivedByAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByFormDataArchivedByAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `Form`.""" + formsByFormDataArchivedByAndFormSchemaId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Form`.""" + orderBy: [FormsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormFilter + ): CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAnalystCreatedByAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAnalystCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -16700,8 +16832,8 @@ type CcbcUser implements Node { filter: CcbcUserFilter ): CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationPendingChangeRequestCreatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16720,22 +16852,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCbcCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedBy( + ccbcUsersByCbcCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -16766,10 +16898,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedBy( + ccbcUsersByCbcUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16800,10 +16932,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationPendingChangeRequestUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -16822,22 +16954,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 - ): CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCbcUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedBy( + ccbcUsersByCbcArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16868,10 +17000,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedBy( + ccbcUsersByCbcArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16902,10 +17034,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationPendingChangeRequestArchivedByAndApplicationId( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcDataCreatedByAndCbcId( """Only read the first `n` values of the set.""" first: Int @@ -16924,22 +17056,328 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyConnection! + filter: CbcFilter + ): CcbcUserCbcsByCbcDataCreatedByAndCbcIdManyToManyConnection! + + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcDataCreatedByAndProjectNumber( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcFilter + ): CcbcUserCbcsByCbcDataCreatedByAndProjectNumberManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcDataCreatedByAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): CcbcUserCcbcUsersByCbcDataCreatedByAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcDataCreatedByAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): CcbcUserCcbcUsersByCbcDataCreatedByAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `Cbc`.""" + 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 + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcFilter + ): CcbcUserCbcsByCbcDataArchivedByAndProjectNumberManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedBy( + ccbcUsersByCbcDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16970,10 +17408,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedBy( + ccbcUsersByCbcDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17004,7 +17442,7 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcDataArchivedByAndUpdatedByManyToManyConnection! } """A connection to a list of `CcbcUser` values.""" @@ -17822,29 +18260,41 @@ input CcbcUserFilter { """Some related `notificationsByArchivedBy` exist.""" notificationsByArchivedByExist: Boolean - """ - Filter by the object’s `applicationPendingChangeRequestsByCreatedBy` relation. - """ - applicationPendingChangeRequestsByCreatedBy: CcbcUserToManyApplicationPendingChangeRequestFilter + """Filter by the object’s `cbcsByCreatedBy` relation.""" + cbcsByCreatedBy: CcbcUserToManyCbcFilter - """Some related `applicationPendingChangeRequestsByCreatedBy` exist.""" - applicationPendingChangeRequestsByCreatedByExist: Boolean + """Some related `cbcsByCreatedBy` exist.""" + cbcsByCreatedByExist: Boolean - """ - Filter by the object’s `applicationPendingChangeRequestsByUpdatedBy` relation. - """ - applicationPendingChangeRequestsByUpdatedBy: CcbcUserToManyApplicationPendingChangeRequestFilter + """Filter by the object’s `cbcsByUpdatedBy` relation.""" + cbcsByUpdatedBy: CcbcUserToManyCbcFilter - """Some related `applicationPendingChangeRequestsByUpdatedBy` exist.""" - applicationPendingChangeRequestsByUpdatedByExist: Boolean + """Some related `cbcsByUpdatedBy` exist.""" + cbcsByUpdatedByExist: Boolean - """ - Filter by the object’s `applicationPendingChangeRequestsByArchivedBy` relation. - """ - applicationPendingChangeRequestsByArchivedBy: CcbcUserToManyApplicationPendingChangeRequestFilter + """Filter by the object’s `cbcsByArchivedBy` relation.""" + cbcsByArchivedBy: CcbcUserToManyCbcFilter + + """Some related `cbcsByArchivedBy` exist.""" + cbcsByArchivedByExist: Boolean + + """Filter by the object’s `cbcDataByCreatedBy` relation.""" + cbcDataByCreatedBy: CcbcUserToManyCbcDataFilter + + """Some related `cbcDataByCreatedBy` exist.""" + cbcDataByCreatedByExist: Boolean - """Some related `applicationPendingChangeRequestsByArchivedBy` exist.""" - applicationPendingChangeRequestsByArchivedByExist: Boolean + """Filter by the object’s `cbcDataByUpdatedBy` relation.""" + cbcDataByUpdatedBy: CcbcUserToManyCbcDataFilter + + """Some related `cbcDataByUpdatedBy` exist.""" + cbcDataByUpdatedByExist: Boolean + + """Filter by the object’s `cbcDataByArchivedBy` relation.""" + cbcDataByArchivedBy: CcbcUserToManyCbcDataFilter + + """Some related `cbcDataByArchivedBy` exist.""" + cbcDataByArchivedByExist: Boolean """Filter by the object’s `keycloakJwtsBySub` relation.""" keycloakJwtsBySub: CcbcUserToManyKeycloakJwtFilter @@ -18581,14 +19031,6 @@ input ApplicationFilter { """Some related `notificationsByApplicationId` exist.""" notificationsByApplicationIdExist: Boolean - """ - Filter by the object’s `applicationPendingChangeRequestsByApplicationId` relation. - """ - applicationPendingChangeRequestsByApplicationId: ApplicationToManyApplicationPendingChangeRequestFilter - - """Some related `applicationPendingChangeRequestsByApplicationId` exist.""" - applicationPendingChangeRequestsByApplicationIdExist: Boolean - """Filter by the object’s `intakeByIntakeId` relation.""" intakeByIntakeId: IntakeFilter @@ -21977,94 +22419,6 @@ input EmailRecordToManyNotificationFilter { none: NotificationFilter } -""" -A filter to be used against many `ApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationPendingChangeRequestFilter { - """ - Every related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationPendingChangeRequestFilter - - """ - Some related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationPendingChangeRequestFilter - - """ - No related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationPendingChangeRequestFilter -} - -""" -A filter to be used against `ApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationPendingChangeRequestFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter - - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter - - """Filter by the object’s `isPending` field.""" - isPending: BooleanFilter - - """Filter by the object’s `comment` field.""" - comment: StringFilter - - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter - - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter - - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter - - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter - - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter - - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter - - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter - - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean - - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter - - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean - - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter - - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean - - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter - - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean - - """Checks for all expressions in this list.""" - and: [ApplicationPendingChangeRequestFilter!] - - """Checks for any expressions in this list.""" - or: [ApplicationPendingChangeRequestFilter!] - - """Negates the expression.""" - not: ApplicationPendingChangeRequestFilter -} - """ A filter to be used against `GaplessCounter` object types. All fields are combined with a logical ‘and.’ """ @@ -23032,23 +23386,211 @@ input CcbcUserToManyNotificationFilter { } """ -A filter to be used against many `ApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `Cbc` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyApplicationPendingChangeRequestFilter { +input CcbcUserToManyCbcFilter { """ - Every related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `Cbc` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ApplicationPendingChangeRequestFilter + every: CbcFilter """ - Some related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `Cbc` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ApplicationPendingChangeRequestFilter + some: CbcFilter """ - No related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `Cbc` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ApplicationPendingChangeRequestFilter + none: CbcFilter +} + +""" +A filter to be used against `Cbc` object types. All fields are combined with a logical ‘and.’ +""" +input CbcFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter + + """Filter by the object’s `projectNumber` field.""" + projectNumber: IntFilter + + """Filter by the object’s `sharepointTimestamp` field.""" + sharepointTimestamp: DatetimeFilter + + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter + + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter + + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter + + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter + + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter + + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter + + """Filter by the object’s `cbcDataByCbcId` relation.""" + cbcDataByCbcId: CbcToManyCbcDataFilter + + """Some related `cbcDataByCbcId` exist.""" + cbcDataByCbcIdExist: Boolean + + """Filter by the object’s `cbcDataByProjectNumber` relation.""" + cbcDataByProjectNumber: CbcToManyCbcDataFilter + + """Some related `cbcDataByProjectNumber` exist.""" + cbcDataByProjectNumberExist: Boolean + + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter + + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean + + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter + + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean + + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter + + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean + + """Checks for all expressions in this list.""" + and: [CbcFilter!] + + """Checks for any expressions in this list.""" + or: [CbcFilter!] + + """Negates the expression.""" + not: CbcFilter +} + +""" +A filter to be used against many `CbcData` object types. All fields are combined with a logical ‘and.’ +""" +input CbcToManyCbcDataFilter { + """ + Every related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: CbcDataFilter + + """ + Some related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: CbcDataFilter + + """ + No related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: CbcDataFilter +} + +""" +A filter to be used against `CbcData` object types. All fields are combined with a logical ‘and.’ +""" +input CbcDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter + + """Filter by the object’s `cbcId` field.""" + cbcId: IntFilter + + """Filter by the object’s `projectNumber` field.""" + projectNumber: IntFilter + + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter + + """Filter by the object’s `sharepointTimestamp` field.""" + sharepointTimestamp: DatetimeFilter + + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter + + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter + + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter + + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter + + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter + + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter + + """Filter by the object’s `cbcByCbcId` relation.""" + cbcByCbcId: CbcFilter + + """A related `cbcByCbcId` exists.""" + cbcByCbcIdExists: Boolean + + """Filter by the object’s `cbcByProjectNumber` relation.""" + cbcByProjectNumber: CbcFilter + + """A related `cbcByProjectNumber` exists.""" + cbcByProjectNumberExists: Boolean + + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter + + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean + + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter + + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean + + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter + + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean + + """Checks for all expressions in this list.""" + and: [CbcDataFilter!] + + """Checks for any expressions in this list.""" + or: [CbcDataFilter!] + + """Negates the expression.""" + not: CbcDataFilter +} + +""" +A filter to be used against many `CbcData` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyCbcDataFilter { + """ + Every related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: CbcDataFilter + + """ + Some related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: CbcDataFilter + + """ + No related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: CbcDataFilter } """ @@ -24744,10 +25286,8 @@ type Application implements Node { filter: NotificationFilter ): NotificationsConnection! - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByApplicationId( + """Reads and enables pagination through a set of `AssessmentData`.""" + allAssessments( """Only read the first `n` values of the set.""" first: Int @@ -24766,22 +25306,25 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationPendingChangeRequestCondition - """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! - """Reads and enables pagination through a set of `AssessmentData`.""" - allAssessments( + """ + computed column to return space separated list of amendment numbers for a change request + """ + amendmentNumbers: String + + """Computed column to return analyst lead of an application""" + analystLead: String + + """Computed column to return the analyst-visible status of an application""" + analystStatus: String + + """Computed column that returns list of announcements for the application""" + announcements( """Only read the first `n` values of the set.""" first: Int @@ -24803,69 +25346,32 @@ type Application implements Node { """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! - """ - computed column to return space separated list of amendment numbers for a change request - """ - amendmentNumbers: String + """Computed column that takes the slug to return an assessment form""" + assessmentForm(_assessmentDataType: String!): AssessmentData - """Computed column to return analyst lead of an application""" - analystLead: String + """Computed column to return conditional approval data""" + conditionalApproval: ConditionalApprovalData - """Computed column to return the analyst-visible status of an application""" - analystStatus: String + """Computed column to return external status of an application""" + externalStatus: String - """Computed column that returns list of announcements for the application""" - announcements( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AnnouncementFilter - ): AnnouncementsConnection! - - """Computed column that takes the slug to return an assessment form""" - assessmentForm(_assessmentDataType: String!): AssessmentData - - """Computed column to return conditional approval data""" - conditionalApproval: ConditionalApprovalData - - """Computed column to return external status of an application""" - externalStatus: String - - """Computed column to display form_data""" - formData: FormData - - """Computed column to return the GIS assessment household counts""" - gisAssessmentHh: ApplicationGisAssessmentHh - - """Computed column to return last GIS data for an application""" - gisData: ApplicationGisData - - """Computed column to return whether the rfi is open""" - hasRfiOpen: Boolean - - """Computed column that returns list of audit records for application""" - history( + """Computed column to display form_data""" + formData: FormData + + """Computed column to return the GIS assessment household counts""" + gisAssessmentHh: ApplicationGisAssessmentHh + + """Computed column to return last GIS data for an application""" + gisData: ApplicationGisData + + """Computed column to return whether the rfi is open""" + hasRfiOpen: Boolean + + """Computed column that returns list of audit records for application""" + history( """Only read the first `n` values of the set.""" first: Int @@ -27269,108 +27775,6 @@ type Application implements Node { """ filter: CcbcUserFilter ): ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyConnection! } """A connection to a list of `ApplicationStatus` values.""" @@ -37044,159 +37448,6 @@ type NotificationsEdge { node: Notification } -"""A connection to a list of `ApplicationPendingChangeRequest` values.""" -type ApplicationPendingChangeRequestsConnection { - """A list of `ApplicationPendingChangeRequest` objects.""" - nodes: [ApplicationPendingChangeRequest]! - - """ - A list of edges which contains the `ApplicationPendingChangeRequest` and cursor to aid in pagination. - """ - edges: [ApplicationPendingChangeRequestsEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """ - The count of *all* `ApplicationPendingChangeRequest` you could get from the connection. - """ - totalCount: Int! -} - -"""Table containing the pending change request details of the application""" -type ApplicationPendingChangeRequest implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Unique ID for the application_pending_change_request""" - rowId: Int! - - """ - ID of the application this application_pending_change_request belongs to - """ - applicationId: Int - - """Column defining if the change request pending or not""" - isPending: Boolean - - """ - Column containing the comment for the change request or completion of the change request - """ - comment: String - - """created by user id""" - createdBy: Int - - """created at timestamp""" - createdAt: Datetime! - - """updated by user id""" - updatedBy: Int - - """updated at timestamp""" - updatedAt: Datetime! - - """archived by user id""" - archivedBy: Int - - """archived at timestamp""" - archivedAt: Datetime - - """ - Reads a single `Application` that is related to this `ApplicationPendingChangeRequest`. - """ - applicationByApplicationId: Application - - """ - Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. - """ - ccbcUserByCreatedBy: CcbcUser - - """ - Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. - """ - ccbcUserByUpdatedBy: CcbcUser - - """ - Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. - """ - ccbcUserByArchivedBy: CcbcUser -} - -"""A `ApplicationPendingChangeRequest` edge in the connection.""" -type ApplicationPendingChangeRequestsEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `ApplicationPendingChangeRequest` at the end of the edge.""" - node: ApplicationPendingChangeRequest -} - -"""Methods to use when ordering `ApplicationPendingChangeRequest`.""" -enum ApplicationPendingChangeRequestsOrderBy { - NATURAL - ID_ASC - ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - IS_PENDING_ASC - IS_PENDING_DESC - COMMENT_ASC - COMMENT_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `ApplicationPendingChangeRequest` object types. -All fields are tested for equality and combined with a logical ‘and.’ -""" -input ApplicationPendingChangeRequestCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int - - """Checks for equality with the object’s `isPending` field.""" - isPending: Boolean - - """Checks for equality with the object’s `comment` field.""" - comment: String - - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int - - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime - - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int - - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime - - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int - - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime -} - """A connection to a list of `Announcement` values.""" type AnnouncementsConnection { """A list of `Announcement` objects.""" @@ -42058,204 +42309,6 @@ type ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyEdge ): NotificationsConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. -""" -type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. - """ - edges: [ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -""" -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. -""" -type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser - - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationPendingChangeRequestCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! -} - -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. -""" -type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. - """ - edges: [ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -""" -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. -""" -type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser - - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationPendingChangeRequestCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! -} - -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. -""" -type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. - """ - edges: [ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -""" -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. -""" -type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser - - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByArchivedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationPendingChangeRequestCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! -} - """A `Application` edge in the connection.""" type ApplicationsEdge { """A cursor for use in pagination.""" @@ -42663,7 +42716,7 @@ type CbcProject implements Node { """Unique ID for the row""" rowId: Int! - """The data imported from the excel""" + """The data imported from the excel for that cbc project""" jsonData: JSON! """The timestamp of the last time the data was updated from sharepoint""" @@ -42790,35 +42843,70 @@ type EmailRecordsEdge { node: EmailRecord } -""" -A connection to a list of `CcbcUser` values, with data from `CcbcUser`. -""" -type CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""A connection to a list of `Cbc` values.""" +type CbcsConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! """ - A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. + A list of edges which contains the `Cbc` and cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CbcsEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Cbc` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" -type CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor +""" +Table containing the data imported from the CBC projects excel file, by rows +""" +type Cbc implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """Unique ID for the row""" + rowId: Int! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByUpdatedBy( + """The project number, unique for each project""" + projectNumber: Int! + + """The timestamp of the last time the data was updated from sharepoint""" + sharepointTimestamp: Datetime + + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime! + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime! + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime + + """Reads a single `CcbcUser` that is related to this `Cbc`.""" + ccbcUserByCreatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `Cbc`.""" + ccbcUserByUpdatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `Cbc`.""" + ccbcUserByArchivedBy: CcbcUser + + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCbcId( """Only read the first `n` values of the set.""" first: Int @@ -42837,50 +42925,1109 @@ type CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUsersConnection! -} + filter: CbcDataFilter + ): CbcDataConnection! -""" -A connection to a list of `CcbcUser` values, with data from `CcbcUser`. -""" -type CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByProjectNumber( + """Only read the first `n` values of the set.""" + first: Int - """ - A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. - """ - edges: [CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyEdge!]! + """Only read the last `n` values of the set.""" + last: Int - """Information to aid in pagination.""" - pageInfo: PageInfo! + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" -type CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Read all values in the set after (below) this cursor.""" + after: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcDataFilter + ): CbcDataConnection! + + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcDataCbcIdAndProjectNumber( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcFilter + ): CbcCbcsByCbcDataCbcIdAndProjectNumberManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByArchivedBy( + ccbcUsersByCbcDataCbcIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): CbcCcbcUsersByCbcDataCbcIdAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcDataCbcIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): CbcCcbcUsersByCbcDataCbcIdAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcDataCbcIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): CbcCcbcUsersByCbcDataCbcIdAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcDataProjectNumberAndCbcId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcFilter + ): CbcCbcsByCbcDataProjectNumberAndCbcIdManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcDataProjectNumberAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): CbcCcbcUsersByCbcDataProjectNumberAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcDataProjectNumberAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): CbcCcbcUsersByCbcDataProjectNumberAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcDataProjectNumberAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): CbcCcbcUsersByCbcDataProjectNumberAndArchivedByManyToManyConnection! +} + +"""A connection to a list of `CbcData` values.""" +type CbcDataConnection { + """A list of `CbcData` objects.""" + nodes: [CbcData]! + + """ + A list of edges which contains the `CbcData` and cursor to aid in pagination. + """ + edges: [CbcDataEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CbcData` you could get from the connection.""" + totalCount: Int! +} + +"""Table containing the json data for cbc applications""" +type CbcData implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! + + """Unique ID for the cbc_data""" + rowId: Int! + + """ID of the cbc application this cbc_data belongs to""" + cbcId: Int + + """Column containing the project number the cbc application is from""" + projectNumber: Int + jsonData: JSON! + sharepointTimestamp: Datetime + + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime! + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime! + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime + + """Reads a single `Cbc` that is related to this `CbcData`.""" + cbcByCbcId: Cbc + + """Reads a single `Cbc` that is related to this `CbcData`.""" + cbcByProjectNumber: Cbc + + """Reads a single `CcbcUser` that is related to this `CbcData`.""" + ccbcUserByCreatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `CbcData`.""" + ccbcUserByUpdatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `CbcData`.""" + ccbcUserByArchivedBy: CcbcUser +} + +"""A `CbcData` edge in the connection.""" +type CbcDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CbcData` at the end of the edge.""" + node: CbcData +} + +"""Methods to use when ordering `CbcData`.""" +enum CbcDataOrderBy { + NATURAL + ID_ASC + ID_DESC + CBC_ID_ASC + CBC_ID_DESC + PROJECT_NUMBER_ASC + PROJECT_NUMBER_DESC + JSON_DATA_ASC + JSON_DATA_DESC + SHAREPOINT_TIMESTAMP_ASC + SHAREPOINT_TIMESTAMP_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} + +""" +A condition to be used against `CbcData` object types. All fields are tested for equality and combined with a logical ‘and.’ +""" +input CbcDataCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int + + """Checks for equality with the object’s `cbcId` field.""" + cbcId: Int + + """Checks for equality with the object’s `projectNumber` field.""" + projectNumber: Int + + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON + + """Checks for equality with the object’s `sharepointTimestamp` field.""" + sharepointTimestamp: Datetime + + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int + + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime +} + +"""A connection to a list of `Cbc` values, with data from `CbcData`.""" +type CbcCbcsByCbcDataCbcIdAndProjectNumberManyToManyConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! + + """ + A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. + """ + edges: [CbcCbcsByCbcDataCbcIdAndProjectNumberManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `Cbc` you could get from the connection.""" + totalCount: Int! +} + +"""A `Cbc` edge in the connection, with data from `CbcData`.""" +type CbcCbcsByCbcDataCbcIdAndProjectNumberManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Cbc` at the end of the edge.""" + node: Cbc + + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByProjectNumber( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcDataFilter + ): CbcDataConnection! +} + +"""Methods to use when ordering `Cbc`.""" +enum CbcsOrderBy { + NATURAL + ID_ASC + ID_DESC + PROJECT_NUMBER_ASC + PROJECT_NUMBER_DESC + SHAREPOINT_TIMESTAMP_ASC + SHAREPOINT_TIMESTAMP_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} + +""" +A condition to be used against `Cbc` object types. All fields are tested for equality and combined with a logical ‘and.’ +""" +input CbcCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int + + """Checks for equality with the object’s `projectNumber` field.""" + projectNumber: Int + + """Checks for equality with the object’s `sharepointTimestamp` field.""" + sharepointTimestamp: Datetime + + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int + + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime +} + +"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" +type CbcCcbcUsersByCbcDataCbcIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. + """ + edges: [CbcCcbcUsersByCbcDataCbcIdAndCreatedByManyToManyEdge!]! + + """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 `CbcData`.""" +type CbcCcbcUsersByCbcDataCbcIdAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcDataFilter + ): CbcDataConnection! +} + +"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" +type CbcCcbcUsersByCbcDataCbcIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. + """ + edges: [CbcCcbcUsersByCbcDataCbcIdAndUpdatedByManyToManyEdge!]! + + """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 `CbcData`.""" +type CbcCcbcUsersByCbcDataCbcIdAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcDataFilter + ): CbcDataConnection! +} + +"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" +type CbcCcbcUsersByCbcDataCbcIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. + """ + edges: [CbcCcbcUsersByCbcDataCbcIdAndArchivedByManyToManyEdge!]! + + """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 `CbcData`.""" +type CbcCcbcUsersByCbcDataCbcIdAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcDataFilter + ): CbcDataConnection! +} + +"""A connection to a list of `Cbc` values, with data from `CbcData`.""" +type CbcCbcsByCbcDataProjectNumberAndCbcIdManyToManyConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! + + """ + A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. + """ + edges: [CbcCbcsByCbcDataProjectNumberAndCbcIdManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `Cbc` you could get from the connection.""" + totalCount: Int! +} + +"""A `Cbc` edge in the connection, with data from `CbcData`.""" +type CbcCbcsByCbcDataProjectNumberAndCbcIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Cbc` at the end of the edge.""" + node: Cbc + + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCbcId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcDataFilter + ): CbcDataConnection! +} + +"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" +type CbcCcbcUsersByCbcDataProjectNumberAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. + """ + edges: [CbcCcbcUsersByCbcDataProjectNumberAndCreatedByManyToManyEdge!]! + + """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 `CbcData`.""" +type CbcCcbcUsersByCbcDataProjectNumberAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcDataFilter + ): CbcDataConnection! +} + +"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" +type CbcCcbcUsersByCbcDataProjectNumberAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. + """ + edges: [CbcCcbcUsersByCbcDataProjectNumberAndUpdatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" +type CbcCcbcUsersByCbcDataProjectNumberAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcDataFilter + ): CbcDataConnection! +} + +"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" +type CbcCcbcUsersByCbcDataProjectNumberAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. + """ + edges: [CbcCcbcUsersByCbcDataProjectNumberAndArchivedByManyToManyEdge!]! + + """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 `CbcData`.""" +type CbcCcbcUsersByCbcDataProjectNumberAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcDataFilter + ): CbcDataConnection! +} + +"""A `Cbc` edge in the connection.""" +type CbcsEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Cbc` at the end of the edge.""" + node: Cbc +} + +""" +A connection to a list of `CcbcUser` values, with data from `CcbcUser`. +""" +type CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. + """ + edges: [CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" +type CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): CcbcUsersConnection! +} + +""" +A connection to a list of `CcbcUser` values, with data from `CcbcUser`. +""" +type CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. + """ + edges: [CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" +type CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -48333,70 +49480,384 @@ type CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyEdge """Reads and enables pagination through a set of `AssessmentData`.""" assessmentDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: AssessmentDataCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! -} - -""" -A connection to a list of `AssessmentType` values, with data from `AssessmentData`. -""" -type CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyConnection { - """A list of `AssessmentType` objects.""" - nodes: [AssessmentType]! - - """ - A list of edges which contains the `AssessmentType`, info from the `AssessmentData`, and the cursor to aid in pagination. - """ - edges: [CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `AssessmentType` you could get from the connection.""" - totalCount: Int! -} - -""" -A `AssessmentType` edge in the connection, with data from `AssessmentData`. -""" -type CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `AssessmentType` at the end of the edge.""" - node: AssessmentType - - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByAssessmentDataType( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AssessmentDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AssessmentDataFilter + ): AssessmentDataConnection! +} + +""" +A connection to a list of `AssessmentType` values, with data from `AssessmentData`. +""" +type CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyConnection { + """A list of `AssessmentType` objects.""" + nodes: [AssessmentType]! + + """ + A list of edges which contains the `AssessmentType`, info from the `AssessmentData`, and the cursor to aid in pagination. + """ + edges: [CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `AssessmentType` you could get from the connection.""" + totalCount: Int! +} + +""" +A `AssessmentType` edge in the connection, with data from `AssessmentData`. +""" +type CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `AssessmentType` at the end of the edge.""" + node: AssessmentType + + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByAssessmentDataType( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AssessmentDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AssessmentDataFilter + ): AssessmentDataConnection! +} + +""" +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +""" +type CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + """ + edges: [CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AssessmentDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AssessmentDataFilter + ): AssessmentDataConnection! +} + +""" +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +""" +type CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + """ + edges: [CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AssessmentDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AssessmentDataFilter + ): AssessmentDataConnection! +} + +""" +A connection to a list of `Application` values, with data from `AssessmentData`. +""" +type CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! + + """ + A list of edges which contains the `Application`, info from the `AssessmentData`, and the cursor to aid in pagination. + """ + edges: [CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `Application` you could get from the connection.""" + totalCount: Int! +} + +""" +A `Application` edge in the connection, with data from `AssessmentData`. +""" +type CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Application` at the end of the edge.""" + node: Application + + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AssessmentDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AssessmentDataFilter + ): AssessmentDataConnection! +} + +""" +A connection to a list of `AssessmentType` values, with data from `AssessmentData`. +""" +type CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyConnection { + """A list of `AssessmentType` objects.""" + nodes: [AssessmentType]! + + """ + A list of edges which contains the `AssessmentType`, info from the `AssessmentData`, and the cursor to aid in pagination. + """ + edges: [CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `AssessmentType` you could get from the connection.""" + totalCount: Int! +} + +""" +A `AssessmentType` edge in the connection, with data from `AssessmentData`. +""" +type CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `AssessmentType` at the end of the edge.""" + node: AssessmentType + + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByAssessmentDataType( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AssessmentDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AssessmentDataFilter + ): AssessmentDataConnection! +} + +""" +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +""" +type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + """ + edges: [CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -48433,76 +49894,14 @@ type CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyTo """ A connection to a list of `CcbcUser` values, with data from `AssessmentData`. """ -type CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. - """ - edges: [CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser - - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: AssessmentDataCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! -} - -""" -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. -""" -type CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -48512,7 +49911,7 @@ type CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyConnection } """A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -48557,14 +49956,14 @@ type CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyEdge { """ A connection to a list of `Application` values, with data from `AssessmentData`. """ -type CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ A list of edges which contains the `Application`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -48576,7 +49975,7 @@ type CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyConn """ A `Application` edge in the connection, with data from `AssessmentData`. """ -type CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -48621,14 +50020,14 @@ type CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyEdge """ A connection to a list of `AssessmentType` values, with data from `AssessmentData`. """ -type CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyConnection { +type CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyToManyConnection { """A list of `AssessmentType` objects.""" nodes: [AssessmentType]! """ A list of edges which contains the `AssessmentType`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyEdge!]! + edges: [CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -48640,7 +50039,7 @@ type CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyTo """ A `AssessmentType` edge in the connection, with data from `AssessmentData`. """ -type CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyEdge { +type CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -48685,14 +50084,14 @@ type CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyTo """ A connection to a list of `CcbcUser` values, with data from `AssessmentData`. """ -type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -48702,7 +50101,7 @@ type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyConnection } """A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -48747,14 +50146,14 @@ type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyEdge { """ A connection to a list of `CcbcUser` values, with data from `AssessmentData`. """ -type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -48764,7 +50163,7 @@ type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyConnection } """A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -48772,7 +50171,7 @@ type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByArchivedBy( + assessmentDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -48807,16 +50206,16 @@ type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyEdge { } """ -A connection to a list of `Application` values, with data from `AssessmentData`. +A connection to a list of `Application` values, with data from `ApplicationPackage`. """ -type CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -48826,17 +50225,17 @@ type CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyCon } """ -A `Application` edge in the connection, with data from `AssessmentData`. +A `Application` edge in the connection, with data from `ApplicationPackage`. """ -type CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByApplicationId( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -48855,52 +50254,52 @@ type CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `AssessmentType` values, with data from `AssessmentData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. """ -type CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyToManyConnection { - """A list of `AssessmentType` objects.""" - nodes: [AssessmentType]! +type CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `AssessmentType`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `AssessmentType` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `AssessmentType` edge in the connection, with data from `AssessmentData`. +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. """ -type CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyToManyEdge { +type CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `AssessmentType` at the end of the edge.""" - node: AssessmentType + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByAssessmentDataType( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -48919,32 +50318,32 @@ type CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -48953,16 +50352,18 @@ type CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyConnection totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +""" +type CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -48981,50 +50382,52 @@ type CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +A connection to a list of `Application` values, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyEdge!]! """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 `AssessmentData`.""" -type CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationPackage`. +""" +type CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyEdge { """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 `AssessmentData`.""" - assessmentDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -49043,52 +50446,52 @@ type CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationPackage`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. """ -type CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyEdge!]! """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 `ApplicationPackage`. +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. """ -type CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyEdge { """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 `ApplicationPackage`.""" - applicationPackagesByApplicationId( + applicationPackagesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -49125,14 +50528,14 @@ type CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToMany """ A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -49144,7 +50547,7 @@ type CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyConnect """ A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -49152,7 +50555,7 @@ type CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByUpdatedBy( + applicationPackagesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -49187,36 +50590,36 @@ type CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyEdge { } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +A connection to a list of `Application` values, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyEdge!]! """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 `ApplicationPackage`. +A `Application` edge in the connection, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyEdge { +type CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyEdge { """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 `ApplicationPackage`.""" - applicationPackagesByArchivedBy( + applicationPackagesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -49251,36 +50654,36 @@ type CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyEdge { } """ -A connection to a list of `Application` values, with data from `ApplicationPackage`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. """ -type CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyEdge!]! """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 `ApplicationPackage`. +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. """ -type CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyEdge { """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 `ApplicationPackage`.""" - applicationPackagesByApplicationId( + applicationPackagesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -49317,14 +50720,14 @@ type CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToMany """ A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -49336,7 +50739,7 @@ type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyConnect """ A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -49344,7 +50747,7 @@ type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByCreatedBy( + applicationPackagesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -49379,36 +50782,38 @@ type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyEdge { } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +A connection to a list of `Application` values, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyEdge!]! """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 `ApplicationPackage`. +A `Application` edge in the connection, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyEdge { """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 `ApplicationPackage`.""" - applicationPackagesByArchivedBy( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -49427,52 +50832,54 @@ type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationPackage`. +A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. """ -type CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyEdge!]! """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 `ApplicationPackage`. +A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. """ -type CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyEdge { """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 `ApplicationPackage`.""" - applicationPackagesByApplicationId( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -49491,32 +50898,32 @@ type CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -49526,17 +50933,19 @@ type CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyConnec } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByCreatedBy( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -49555,32 +50964,98 @@ type CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +A connection to a list of `Application` values, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! + + """ + A list of edges which contains the `Application`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. + """ + edges: [CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyEdge!]! + + """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 `ConditionalApprovalData`. +""" +type CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Application` at the end of the edge.""" + node: Application + + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ConditionalApprovalDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! +} + +""" +A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. +""" +type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -49590,17 +51065,19 @@ type CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyConnec } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByUpdatedBy( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -49619,54 +51096,54 @@ type CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `Application` values, with data from `ConditionalApprovalData`. +A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. """ -type CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ConditionalApprovalData`. +A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. """ -type CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ Reads and enables pagination through a set of `ConditionalApprovalData`. """ - conditionalApprovalDataByApplicationId( + conditionalApprovalDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -49701,38 +51178,38 @@ type CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyT } """ -A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. +A connection to a list of `Application` values, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. +A `Application` edge in the connection, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application """ Reads and enables pagination through a set of `ConditionalApprovalData`. """ - conditionalApprovalDataByUpdatedBy( + conditionalApprovalDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -49769,14 +51246,14 @@ type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyEd """ A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -49788,7 +51265,7 @@ type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyC """ A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -49798,73 +51275,7 @@ type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyE """ Reads and enables pagination through a set of `ConditionalApprovalData`. """ - conditionalApprovalDataByArchivedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ConditionalApprovalDataCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! -} - -""" -A connection to a list of `Application` values, with data from `ConditionalApprovalData`. -""" -type CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! - - """ - A list of edges which contains the `Application`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. - """ - edges: [CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyEdge!]! - - """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 `ConditionalApprovalData`. -""" -type CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `Application` at the end of the edge.""" - node: Application - - """ - Reads and enables pagination through a set of `ConditionalApprovalData`. - """ - conditionalApprovalDataByApplicationId( + conditionalApprovalDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -49901,14 +51312,14 @@ type CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyT """ A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -49920,7 +51331,7 @@ type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyCo """ A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -49930,7 +51341,7 @@ type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyEd """ Reads and enables pagination through a set of `ConditionalApprovalData`. """ - conditionalApprovalDataByCreatedBy( + conditionalApprovalDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -49964,17 +51375,15 @@ type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyEd ): ConditionalApprovalDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. -""" -type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -49983,20 +51392,16 @@ type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyC totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. -""" -type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ConditionalApprovalData`. - """ - conditionalApprovalDataByArchivedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -50015,54 +51420,48 @@ type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: GisDataFilter + ): GisDataConnection! } -""" -A connection to a list of `Application` values, with data from `ConditionalApprovalData`. -""" -type CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ConditionalApprovalData`. -""" -type CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ConditionalApprovalData`. - """ - conditionalApprovalDataByApplicationId( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -50081,32 +51480,30 @@ type CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: GisDataFilter + ): GisDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. -""" -type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -50115,20 +51512,16 @@ type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyC totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. -""" -type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ConditionalApprovalData`. - """ - conditionalApprovalDataByCreatedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -50147,32 +51540,30 @@ type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: GisDataFilter + ): GisDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. -""" -type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -50181,20 +51572,16 @@ type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyC totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. -""" -type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ConditionalApprovalData`. - """ - conditionalApprovalDataByUpdatedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -50213,30 +51600,30 @@ type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: GisDataFilter + ): GisDataConnection! } """A connection to a list of `CcbcUser` values, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -50246,7 +51633,7 @@ type CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyConnection { } """A `CcbcUser` edge in the connection, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -50254,7 +51641,7 @@ type CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `GisData`.""" - gisDataByUpdatedBy( + gisDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -50289,14 +51676,14 @@ type CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyEdge { } """A connection to a list of `CcbcUser` values, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -50306,7 +51693,7 @@ type CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyConnection { } """A `CcbcUser` edge in the connection, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -50314,7 +51701,7 @@ type CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `GisData`.""" - gisDataByArchivedBy( + gisDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -50348,33 +51735,37 @@ type CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyEdge { ): GisDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `GisData` values, with data from `ApplicationGisData`. +""" +type CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyConnection { + """A list of `GisData` objects.""" + nodes: [GisData]! """ - A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. + A list of edges which contains the `GisData`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `GisData` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyEdge { +""" +A `GisData` edge in the connection, with data from `ApplicationGisData`. +""" +type CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `GisData` at the end of the edge.""" + node: GisData - """Reads and enables pagination through a set of `GisData`.""" - gisDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByBatchId( """Only read the first `n` values of the set.""" first: Int @@ -50393,48 +51784,52 @@ type CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `Application` values, with data from `ApplicationGisData`. +""" +type CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationGisData`. +""" +type CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `GisData`.""" - gisDataByArchivedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -50453,30 +51848,32 @@ type CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +""" +type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -50485,16 +51882,18 @@ type CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +""" +type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `GisData`.""" - gisDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -50513,30 +51912,32 @@ type CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +""" +type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -50545,16 +51946,18 @@ type CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +""" +type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `GisData`.""" - gisDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -50573,32 +51976,32 @@ type CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ A connection to a list of `GisData` values, with data from `ApplicationGisData`. """ -type CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyConnection { +type CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyConnection { """A list of `GisData` objects.""" nodes: [GisData]! """ A list of edges which contains the `GisData`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyEdge!]! + edges: [CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -50610,7 +52013,7 @@ type CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyConnection """ A `GisData` edge in the connection, with data from `ApplicationGisData`. """ -type CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyEdge { +type CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -50655,14 +52058,14 @@ type CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyEdge { """ A connection to a list of `Application` values, with data from `ApplicationGisData`. """ -type CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ A list of edges which contains the `Application`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -50674,7 +52077,7 @@ type CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToMany """ A `Application` edge in the connection, with data from `ApplicationGisData`. """ -type CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -50719,14 +52122,14 @@ type CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToMany """ A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -50738,7 +52141,7 @@ type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyConnect """ A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -50746,7 +52149,7 @@ type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByUpdatedBy( + applicationGisDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -50783,14 +52186,14 @@ type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyEdge { """ A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -50802,7 +52205,7 @@ type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyConnec """ A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -50847,14 +52250,14 @@ type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyEdge { """ A connection to a list of `GisData` values, with data from `ApplicationGisData`. """ -type CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyConnection { +type CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyConnection { """A list of `GisData` objects.""" nodes: [GisData]! """ A list of edges which contains the `GisData`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyEdge!]! + edges: [CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -50866,7 +52269,7 @@ type CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyConnection """ A `GisData` edge in the connection, with data from `ApplicationGisData`. """ -type CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyEdge { +type CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -50911,14 +52314,14 @@ type CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyEdge { """ A connection to a list of `Application` values, with data from `ApplicationGisData`. """ -type CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ A list of edges which contains the `Application`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -50930,7 +52333,7 @@ type CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToMany """ A `Application` edge in the connection, with data from `ApplicationGisData`. """ -type CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -50975,14 +52378,14 @@ type CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToMany """ A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -50994,7 +52397,7 @@ type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyConnect """ A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -51037,164 +52440,36 @@ type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyEdge { } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. -""" -type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. - """ - edges: [CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyEdge!]! - - """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 `ApplicationGisData`. -""" -type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser - - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByArchivedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationGisDataCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! -} - -""" -A connection to a list of `GisData` values, with data from `ApplicationGisData`. -""" -type CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyConnection { - """A list of `GisData` objects.""" - nodes: [GisData]! - - """ - A list of edges which contains the `GisData`, info from the `ApplicationGisData`, and the cursor to aid in pagination. - """ - edges: [CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `GisData` you could get from the connection.""" - totalCount: Int! -} - -""" -A `GisData` edge in the connection, with data from `ApplicationGisData`. -""" -type CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `GisData` at the end of the edge.""" - node: GisData - - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByBatchId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationGisDataCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! -} - -""" -A connection to a list of `Application` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. """ -type CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationGisData`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. """ -type CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByApplicationId( + applicationGisDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -51229,16 +52504,16 @@ type CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToMan } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `Announcement`. """ -type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -51247,18 +52522,16 @@ type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyConnec totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. -""" -type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" +type CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByCreatedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -51277,32 +52550,32 @@ type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `Announcement`. """ -type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -51311,18 +52584,16 @@ type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyConnec totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. -""" -type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" +type CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByUpdatedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -51341,32 +52612,32 @@ type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! } """ A connection to a list of `CcbcUser` values, with data from `Announcement`. """ -type CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -51376,7 +52647,7 @@ type CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyConnection { } """A `CcbcUser` edge in the connection, with data from `Announcement`.""" -type CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -51384,7 +52655,7 @@ type CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `Announcement`.""" - announcementsByUpdatedBy( + announcementsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -51421,14 +52692,14 @@ type CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyEdge { """ A connection to a list of `CcbcUser` values, with data from `Announcement`. """ -type CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -51438,7 +52709,7 @@ type CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyConnection { } """A `CcbcUser` edge in the connection, with data from `Announcement`.""" -type CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -51483,14 +52754,14 @@ type CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyEdge { """ A connection to a list of `CcbcUser` values, with data from `Announcement`. """ -type CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -51500,7 +52771,7 @@ type CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyConnection { } """A `CcbcUser` edge in the connection, with data from `Announcement`.""" -type CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -51545,14 +52816,14 @@ type CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyEdge { """ A connection to a list of `CcbcUser` values, with data from `Announcement`. """ -type CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -51562,7 +52833,7 @@ type CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyConnection { } """A `CcbcUser` edge in the connection, with data from `Announcement`.""" -type CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -51570,7 +52841,7 @@ type CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `Announcement`.""" - announcementsByArchivedBy( + announcementsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -51605,34 +52876,38 @@ type CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyEdge { } """ -A connection to a list of `CcbcUser` values, with data from `Announcement`. +A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyConnection { + """A list of `Announcement` objects.""" + nodes: [Announcement]! """ - A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. + A list of edges which contains the `Announcement`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Announcement` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" -type CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyEdge { +""" +A `Announcement` edge in the connection, with data from `ApplicationAnnouncement`. +""" +type CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Announcement` at the end of the edge.""" + node: Announcement - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByAnnouncementId( """Only read the first `n` values of the set.""" first: Int @@ -51651,32 +52926,98 @@ type CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Announcement`. +A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyConnection { + """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: [CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyEdge!]! + + """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 CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyEdge { + """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 CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -51685,16 +53026,20 @@ type CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" -type CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +""" +type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -51713,54 +53058,54 @@ type CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyConnection { - """A list of `Announcement` objects.""" - nodes: [Announcement]! +type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyConnection { + """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 `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyEdge!]! """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 `ApplicationAnnouncement`. """ -type CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Announcement` at the end of the edge.""" - node: Announcement + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationAnnouncementsByAnnouncementId( + applicationAnnouncementsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -51795,38 +53140,38 @@ type CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdMan } """ -A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. +A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyConnection { + """A list of `Announcement` objects.""" + nodes: [Announcement]! """ - 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 `Announcement`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `Announcement` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationAnnouncement`. +A `Announcement` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `Announcement` at the end of the edge.""" + node: Announcement """ Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationAnnouncementsByApplicationId( + applicationAnnouncementsByAnnouncementId( """Only read the first `n` values of the set.""" first: Int @@ -51861,38 +53206,38 @@ type CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyT } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `Application` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application """ Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationAnnouncementsByUpdatedBy( + applicationAnnouncementsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -51929,14 +53274,14 @@ type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyEd """ A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyConnection { +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: [CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -51948,7 +53293,7 @@ type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyC """ A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -51958,7 +53303,7 @@ type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyE """ Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationAnnouncementsByArchivedBy( + applicationAnnouncementsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -51993,38 +53338,38 @@ type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyE } """ -A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyConnection { - """A list of `Announcement` objects.""" - nodes: [Announcement]! +type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyConnection { + """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 `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyEdge!]! """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 `ApplicationAnnouncement`. """ -type CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Announcement` at the end of the edge.""" - node: Announcement + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationAnnouncementsByAnnouncementId( + applicationAnnouncementsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -52059,38 +53404,38 @@ type CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdMan } """ -A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. +A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyConnection { + """A list of `Announcement` objects.""" + nodes: [Announcement]! """ - 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 `Announcement`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `Announcement` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationAnnouncement`. +A `Announcement` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `Announcement` at the end of the edge.""" + node: Announcement """ Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationAnnouncementsByApplicationId( + applicationAnnouncementsByAnnouncementId( """Only read the first `n` values of the set.""" first: Int @@ -52125,38 +53470,38 @@ type CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyT } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `Application` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application """ Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationAnnouncementsByCreatedBy( + applicationAnnouncementsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -52193,14 +53538,14 @@ type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyEd """ A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyConnection { +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: [CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52212,7 +53557,7 @@ type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyC """ A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -52222,7 +53567,7 @@ type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyE """ Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationAnnouncementsByArchivedBy( + applicationAnnouncementsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -52257,38 +53602,38 @@ type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyE } """ -A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyConnection { - """A list of `Announcement` objects.""" - nodes: [Announcement]! +type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyConnection { + """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 `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyEdge!]! """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 `ApplicationAnnouncement`. """ -type CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Announcement` at the end of the edge.""" - node: Announcement + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationAnnouncementsByAnnouncementId( + applicationAnnouncementsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -52323,16 +53668,16 @@ type CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdMa } """ -A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. +A connection to a list of `Application` values, with data from `ApplicationSowData`. """ -type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyConnection { """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 `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52342,19 +53687,17 @@ type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdMany } """ -A `Application` edge in the connection, with data from `ApplicationAnnouncement`. +A `Application` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByApplicationId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -52373,32 +53716,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 `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyConnection { """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 `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52408,19 +53751,17 @@ type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByCreatedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -52439,32 +53780,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 `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyConnection { """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 `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52474,19 +53815,17 @@ type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -52505,32 +53844,32 @@ type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ A connection to a list of `Application` values, with data from `ApplicationSowData`. """ -type CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ A list of edges which contains the `Application`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52542,7 +53881,7 @@ type CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToMany """ A `Application` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -52587,14 +53926,14 @@ type CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToMany """ A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52606,7 +53945,7 @@ type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyConnect """ A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -52614,7 +53953,7 @@ type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByUpdatedBy( + applicationSowDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -52651,14 +53990,14 @@ type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyEdge { """ A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52670,7 +54009,7 @@ type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyConnec """ A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -52715,14 +54054,14 @@ type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyEdge { """ A connection to a list of `Application` values, with data from `ApplicationSowData`. """ -type CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ A list of edges which contains the `Application`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52734,7 +54073,7 @@ type CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToMany """ A `Application` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -52779,14 +54118,14 @@ type CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToMany """ A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52798,7 +54137,7 @@ type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyConnect """ A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -52843,14 +54182,14 @@ type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyEdge { """ A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52862,7 +54201,7 @@ type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyConnec """ A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -52870,7 +54209,7 @@ type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByArchivedBy( + applicationSowDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -52905,36 +54244,38 @@ type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyEdge { } """ -A connection to a list of `Application` values, with data from `ApplicationSowData`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab2`. """ -type CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `Application`, info from the `ApplicationSowData`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationSowData`. +A `ApplicationSowData` edge in the connection, with data from `SowTab2`. """ -type CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByApplicationId( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -52953,32 +54294,30 @@ type CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. -""" -type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52987,18 +54326,16 @@ type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyConnec totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. -""" -type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByCreatedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53017,32 +54354,30 @@ type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. -""" -type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53051,18 +54386,16 @@ type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyConnec totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. -""" -type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByUpdatedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -53081,32 +54414,32 @@ type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } """ A connection to a list of `ApplicationSowData` values, with data from `SowTab2`. """ -type CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyConnection { +type CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyConnection { """A list of `ApplicationSowData` objects.""" nodes: [ApplicationSowData]! """ A list of edges which contains the `ApplicationSowData`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53120,7 +54453,7 @@ type CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyConnection { """ A `ApplicationSowData` edge in the connection, with data from `SowTab2`. """ -type CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -53163,14 +54496,14 @@ type CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyEdge { } """A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53180,7 +54513,7 @@ type CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyConnection { } """A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -53188,7 +54521,7 @@ type CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByUpdatedBy( + sowTab2SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53223,14 +54556,14 @@ type CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyEdge { } """A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53240,7 +54573,7 @@ type CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyConnection { } """A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -53285,14 +54618,14 @@ type CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyEdge { """ A connection to a list of `ApplicationSowData` values, with data from `SowTab2`. """ -type CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyConnection { +type CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyConnection { """A list of `ApplicationSowData` objects.""" nodes: [ApplicationSowData]! """ A list of edges which contains the `ApplicationSowData`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53306,7 +54639,7 @@ type CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyConnection { """ A `ApplicationSowData` edge in the connection, with data from `SowTab2`. """ -type CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -53349,14 +54682,14 @@ type CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyEdge { } """A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53366,7 +54699,7 @@ type CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyConnection { } """A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -53409,14 +54742,14 @@ type CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyEdge { } """A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53426,7 +54759,7 @@ type CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyConnection { } """A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -53434,7 +54767,7 @@ type CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByArchivedBy( + sowTab2SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53469,16 +54802,16 @@ type CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyEdge { } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab2`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab1`. """ -type CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyConnection { +type CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyConnection { """A list of `ApplicationSowData` objects.""" nodes: [ApplicationSowData]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab2`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53490,17 +54823,17 @@ type CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyConnection { } """ -A `ApplicationSowData` edge in the connection, with data from `SowTab2`. +A `ApplicationSowData` edge in the connection, with data from `SowTab1`. """ -type CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `ApplicationSowData` at the end of the edge.""" node: ApplicationSowData - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SBySowId( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -53519,30 +54852,30 @@ type CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53551,16 +54884,16 @@ type CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByCreatedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53579,30 +54912,30 @@ type CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53611,16 +54944,16 @@ type CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByUpdatedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -53639,32 +54972,32 @@ type CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } """ A connection to a list of `ApplicationSowData` values, with data from `SowTab1`. """ -type CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyConnection { +type CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyConnection { """A list of `ApplicationSowData` objects.""" nodes: [ApplicationSowData]! """ A list of edges which contains the `ApplicationSowData`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53678,7 +55011,7 @@ type CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyConnection { """ A `ApplicationSowData` edge in the connection, with data from `SowTab1`. """ -type CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -53721,14 +55054,14 @@ type CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyEdge { } """A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53738,7 +55071,7 @@ type CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyConnection { } """A `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -53746,7 +55079,7 @@ type CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByUpdatedBy( + sowTab1SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53781,14 +55114,14 @@ type CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyEdge { } """A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53798,7 +55131,7 @@ type CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyConnection { } """A `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -53843,14 +55176,14 @@ type CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyEdge { """ A connection to a list of `ApplicationSowData` values, with data from `SowTab1`. """ -type CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyConnection { +type CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyConnection { """A list of `ApplicationSowData` objects.""" nodes: [ApplicationSowData]! """ A list of edges which contains the `ApplicationSowData`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53864,7 +55197,7 @@ type CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyConnection { """ A `ApplicationSowData` edge in the connection, with data from `SowTab1`. """ -type CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -53907,14 +55240,14 @@ type CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyEdge { } """A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53924,7 +55257,7 @@ type CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyConnection { } """A `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -53967,14 +55300,14 @@ type CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyEdge { } """A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53984,7 +55317,7 @@ type CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyConnection { } """A `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -53992,7 +55325,7 @@ type CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByArchivedBy( + sowTab1SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -54027,38 +55360,38 @@ type CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyEdge { } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab1`. +A connection to a list of `Application` values, with data from `ProjectInformationData`. """ -type CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab1`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationSowData` edge in the connection, with data from `SowTab1`. +A `Application` edge in the connection, with data from `ProjectInformationData`. """ -type CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyEdge { +type CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SBySowId( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -54077,30 +55410,32 @@ type CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +""" +type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54109,16 +55444,20 @@ type CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. +""" +type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByCreatedBy( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -54137,30 +55476,32 @@ type CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +""" +type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54169,16 +55510,20 @@ type CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. +""" +type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByUpdatedBy( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -54197,32 +55542,32 @@ type CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ A connection to a list of `Application` values, with data from `ProjectInformationData`. """ -type CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ A list of edges which contains the `Application`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54234,7 +55579,7 @@ type CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyTo """ A `Application` edge in the connection, with data from `ProjectInformationData`. """ -type CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -54281,14 +55626,14 @@ type CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyTo """ A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. """ -type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54300,7 +55645,7 @@ type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyCon """ A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. """ -type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -54310,7 +55655,7 @@ type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyEdg """ Reads and enables pagination through a set of `ProjectInformationData`. """ - projectInformationDataByUpdatedBy( + projectInformationDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -54347,14 +55692,14 @@ type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyEdg """ A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. """ -type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54366,7 +55711,7 @@ type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyCo """ A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. """ -type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -54413,14 +55758,14 @@ type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyEd """ A connection to a list of `Application` values, with data from `ProjectInformationData`. """ -type CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ A list of edges which contains the `Application`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54432,7 +55777,7 @@ type CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyTo """ A `Application` edge in the connection, with data from `ProjectInformationData`. """ -type CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -54479,14 +55824,14 @@ type CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyTo """ A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. """ -type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54498,7 +55843,7 @@ type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyCon """ A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. """ -type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -54545,14 +55890,14 @@ type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyEdg """ A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. """ -type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54564,7 +55909,7 @@ type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyCo """ A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. """ -type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -54574,7 +55919,7 @@ type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyEd """ Reads and enables pagination through a set of `ProjectInformationData`. """ - projectInformationDataByArchivedBy( + projectInformationDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -54609,38 +55954,38 @@ type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyEd } """ -A connection to a list of `Application` values, with data from `ProjectInformationData`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab7`. """ -type CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `Application`, info from the `ProjectInformationData`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } """ -A `Application` edge in the connection, with data from `ProjectInformationData`. +A `ApplicationSowData` edge in the connection, with data from `SowTab7`. """ -type CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """ - Reads and enables pagination through a set of `ProjectInformationData`. - """ - projectInformationDataByApplicationId( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -54659,32 +56004,30 @@ type CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. -""" -type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54693,20 +56036,16 @@ type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyCo totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. -""" -type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ProjectInformationData`. - """ - projectInformationDataByCreatedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -54725,32 +56064,30 @@ type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. -""" -type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54759,20 +56096,16 @@ type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyCo totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. -""" -type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ProjectInformationData`. - """ - projectInformationDataByUpdatedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -54791,32 +56124,32 @@ type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } """ A connection to a list of `ApplicationSowData` values, with data from `SowTab7`. """ -type CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyConnection { +type CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyConnection { """A list of `ApplicationSowData` objects.""" nodes: [ApplicationSowData]! """ A list of edges which contains the `ApplicationSowData`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54830,7 +56163,7 @@ type CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyConnection { """ A `ApplicationSowData` edge in the connection, with data from `SowTab7`. """ -type CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -54873,14 +56206,14 @@ type CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyEdge { } """A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54890,7 +56223,7 @@ type CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyConnection { } """A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -54898,7 +56231,7 @@ type CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByUpdatedBy( + sowTab7SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -54933,14 +56266,14 @@ type CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyEdge { } """A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54950,7 +56283,7 @@ type CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyConnection { } """A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -54995,14 +56328,14 @@ type CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyEdge { """ A connection to a list of `ApplicationSowData` values, with data from `SowTab7`. """ -type CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyConnection { +type CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyConnection { """A list of `ApplicationSowData` objects.""" nodes: [ApplicationSowData]! """ A list of edges which contains the `ApplicationSowData`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55016,7 +56349,7 @@ type CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyConnection { """ A `ApplicationSowData` edge in the connection, with data from `SowTab7`. """ -type CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -55059,14 +56392,14 @@ type CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyEdge { } """A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55076,7 +56409,7 @@ type CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyConnection { } """A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -55119,14 +56452,14 @@ type CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyEdge { } """A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55136,7 +56469,7 @@ type CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyConnection { } """A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -55144,7 +56477,7 @@ type CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByArchivedBy( + sowTab7SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -55179,16 +56512,16 @@ type CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyEdge { } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab7`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab8`. """ -type CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyConnection { +type CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyConnection { """A list of `ApplicationSowData` objects.""" nodes: [ApplicationSowData]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab7`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55200,17 +56533,17 @@ type CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyConnection { } """ -A `ApplicationSowData` edge in the connection, with data from `SowTab7`. +A `ApplicationSowData` edge in the connection, with data from `SowTab8`. """ -type CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `ApplicationSowData` at the end of the edge.""" node: ApplicationSowData - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SBySowId( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -55229,30 +56562,30 @@ type CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55261,16 +56594,16 @@ type CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByCreatedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -55289,30 +56622,30 @@ type CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55321,16 +56654,16 @@ type CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByUpdatedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -55349,32 +56682,32 @@ type CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } """ A connection to a list of `ApplicationSowData` values, with data from `SowTab8`. """ -type CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyConnection { +type CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyConnection { """A list of `ApplicationSowData` objects.""" nodes: [ApplicationSowData]! """ A list of edges which contains the `ApplicationSowData`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55388,7 +56721,7 @@ type CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyConnection { """ A `ApplicationSowData` edge in the connection, with data from `SowTab8`. """ -type CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -55431,14 +56764,14 @@ type CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyEdge { } """A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55448,7 +56781,7 @@ type CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyConnection { } """A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -55456,7 +56789,7 @@ type CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByUpdatedBy( + sowTab8SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -55491,14 +56824,14 @@ type CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyEdge { } """A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55508,7 +56841,7 @@ type CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyConnection { } """A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -55553,14 +56886,14 @@ type CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyEdge { """ A connection to a list of `ApplicationSowData` values, with data from `SowTab8`. """ -type CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyConnection { +type CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyConnection { """A list of `ApplicationSowData` objects.""" nodes: [ApplicationSowData]! """ A list of edges which contains the `ApplicationSowData`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55574,7 +56907,7 @@ type CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyConnection { """ A `ApplicationSowData` edge in the connection, with data from `SowTab8`. """ -type CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -55617,14 +56950,14 @@ type CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyEdge { } """A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55634,7 +56967,7 @@ type CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyConnection { } """A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -55677,14 +57010,14 @@ type CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyEdge { } """A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55694,7 +57027,7 @@ type CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyConnection { } """A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -55702,7 +57035,7 @@ type CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByArchivedBy( + sowTab8SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -55737,38 +57070,36 @@ type CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyEdge { } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab8`. +A connection to a list of `Application` values, with data from `ChangeRequestData`. """ -type CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab8`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationSowData` edge in the connection, with data from `SowTab8`. +A `Application` edge in the connection, with data from `ChangeRequestData`. """ -type CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyEdge { +type CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SBySowId( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -55787,30 +57118,32 @@ type CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +""" +type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55819,16 +57152,18 @@ type CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +""" +type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByCreatedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -55847,30 +57182,32 @@ type CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +""" +type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55879,80 +57216,18 @@ type CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser - - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: SowTab8Condition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: SowTab8Filter - ): SowTab8SConnection! -} - -""" -A connection to a list of `Application` values, with data from `ChangeRequestData`. -""" -type CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! - - """ - A list of edges which contains the `Application`, info from the `ChangeRequestData`, and the cursor to aid in pagination. - """ - edges: [CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `Application` you could get from the connection.""" - totalCount: Int! -} - """ -A `Application` edge in the connection, with data from `ChangeRequestData`. +A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. """ -type CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByApplicationId( + changeRequestDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -55987,36 +57262,36 @@ type CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyE } """ -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +A connection to a list of `Application` values, with data from `ChangeRequestData`. """ -type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +A `Application` edge in the connection, with data from `ChangeRequestData`. """ -type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByUpdatedBy( + changeRequestDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -56053,14 +57328,14 @@ type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyEdge { """ A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. """ -type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56072,7 +57347,7 @@ type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyConnect """ A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. """ -type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -56080,7 +57355,7 @@ type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByArchivedBy( + changeRequestDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -56115,36 +57390,36 @@ type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyEdge { } """ -A connection to a list of `Application` values, with data from `ChangeRequestData`. +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. """ -type CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ChangeRequestData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ChangeRequestData`. +A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. """ -type CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByApplicationId( + changeRequestDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -56179,36 +57454,36 @@ type CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyE } """ -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +A connection to a list of `Application` values, with data from `ChangeRequestData`. """ -type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +A `Application` edge in the connection, with data from `ChangeRequestData`. """ -type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByCreatedBy( + changeRequestDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -56245,14 +57520,14 @@ type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyEdge { """ A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. """ -type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56264,7 +57539,7 @@ type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyConnect """ A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. """ -type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -56272,7 +57547,7 @@ type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByArchivedBy( + changeRequestDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -56307,36 +57582,36 @@ type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyEdge { } """ -A connection to a list of `Application` values, with data from `ChangeRequestData`. +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. """ -type CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ChangeRequestData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ChangeRequestData`. +A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. """ -type CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByApplicationId( + changeRequestDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -56371,36 +57646,38 @@ type CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToMany } """ -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +A connection to a list of `Application` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +A `Application` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyEdge { +type CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -56419,32 +57696,34 @@ type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56454,17 +57733,19 @@ type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyConnect } """ -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -56483,54 +57764,56 @@ type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. """ - applicationCommunityProgressReportDataByApplicationId( + applicationCommunityProgressReportDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -56567,38 +57850,38 @@ type CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApp } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `Application` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `Application` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application """ Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. """ - applicationCommunityProgressReportDataByUpdatedBy( + applicationCommunityProgressReportDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -56637,14 +57920,14 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdate """ A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56656,7 +57939,7 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchiv """ A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -56666,7 +57949,7 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchiv """ Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. """ - applicationCommunityProgressReportDataByArchivedBy( + applicationCommunityProgressReportDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -56703,38 +57986,38 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchiv } """ -A connection to a list of `Application` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. """ - applicationCommunityProgressReportDataByApplicationId( + applicationCommunityProgressReportDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -56771,38 +58054,38 @@ type CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApp } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `Application` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `Application` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application """ Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. """ - applicationCommunityProgressReportDataByCreatedBy( + applicationCommunityProgressReportDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -56841,14 +58124,14 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreate """ A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56860,7 +58143,7 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchiv """ A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -56870,7 +58153,7 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchiv """ Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. """ - applicationCommunityProgressReportDataByArchivedBy( + applicationCommunityProgressReportDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -56907,38 +58190,38 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchiv } """ -A connection to a list of `Application` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. """ - applicationCommunityProgressReportDataByApplicationId( + applicationCommunityProgressReportDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -56975,38 +58258,38 @@ type CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndAp } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `Application` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `Application` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyEdge { +type CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. """ - applicationCommunityProgressReportDataByCreatedBy( + applicationCommunityReportExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -57025,34 +58308,32 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreat """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57062,9 +58343,9 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdat } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -57072,9 +58353,9 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdat node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. """ - applicationCommunityProgressReportDataByUpdatedBy( + applicationCommunityReportExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -57093,56 +58374,54 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdat """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. """ - applicationCommunityReportExcelDataByApplicationId( + applicationCommunityReportExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -57177,38 +58456,38 @@ type CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplic } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `Application` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `Application` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application """ Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. """ - applicationCommunityReportExcelDataByUpdatedBy( + applicationCommunityReportExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -57245,14 +58524,14 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedBy """ A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57264,7 +58543,7 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedB """ A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -57274,7 +58553,7 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedB """ Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. """ - applicationCommunityReportExcelDataByArchivedBy( + applicationCommunityReportExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -57309,38 +58588,38 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedB } """ -A connection to a list of `Application` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. """ - applicationCommunityReportExcelDataByApplicationId( + applicationCommunityReportExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -57375,38 +58654,38 @@ type CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplic } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `Application` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `Application` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application """ Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. """ - applicationCommunityReportExcelDataByCreatedBy( + applicationCommunityReportExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -57443,14 +58722,14 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedBy """ A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57462,7 +58741,7 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedB """ A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -57472,7 +58751,7 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedB """ Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. """ - applicationCommunityReportExcelDataByArchivedBy( + applicationCommunityReportExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -57507,38 +58786,38 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedB } """ -A connection to a list of `Application` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. """ - applicationCommunityReportExcelDataByApplicationId( + applicationCommunityReportExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -57573,16 +58852,80 @@ type CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndAppli } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `Application` values, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! + + """ + A list of edges which contains the `Application`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + """ + edges: [CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyEdge!]! + + """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 `ApplicationClaimsData`. +""" +type CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Application` at the end of the edge.""" + node: Application + + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationClaimsDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! +} + +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +""" +type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57592,19 +58935,17 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedB } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -57623,32 +58964,32 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedB """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57658,19 +58999,17 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedB } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -57689,32 +59028,32 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedB """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ A connection to a list of `Application` values, with data from `ApplicationClaimsData`. """ -type CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ A list of edges which contains the `Application`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57726,7 +59065,7 @@ type CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToM """ A `Application` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -57771,14 +59110,14 @@ type CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToM """ A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57790,7 +59129,7 @@ type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyConn """ A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -57798,7 +59137,7 @@ type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyEdge node: CcbcUser """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByUpdatedBy( + applicationClaimsDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -57835,14 +59174,14 @@ type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyEdge """ A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57854,7 +59193,7 @@ type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyCon """ A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -57899,14 +59238,14 @@ type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyEdg """ A connection to a list of `Application` values, with data from `ApplicationClaimsData`. """ -type CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ A list of edges which contains the `Application`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57918,7 +59257,7 @@ type CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToM """ A `Application` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -57963,14 +59302,14 @@ type CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToM """ A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57982,7 +59321,7 @@ type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyConn """ A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -58027,14 +59366,14 @@ type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyEdge """ A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58046,7 +59385,7 @@ type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyCon """ A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -58054,7 +59393,7 @@ type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyEdg node: CcbcUser """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByArchivedBy( + applicationClaimsDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -58089,16 +59428,16 @@ type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyEdg } """ -A connection to a list of `Application` values, with data from `ApplicationClaimsData`. +A connection to a list of `Application` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58108,17 +59447,19 @@ type CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyTo } """ -A `Application` edge in the connection, with data from `ApplicationClaimsData`. +A `Application` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByApplicationId( + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -58137,32 +59478,32 @@ type CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58172,17 +59513,19 @@ type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyCon } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -58201,32 +59544,32 @@ type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58236,17 +59579,19 @@ type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyCon } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -58265,32 +59610,32 @@ type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ A connection to a list of `Application` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ A list of edges which contains the `Application`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58302,7 +59647,7 @@ type CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdMa """ A `Application` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -58349,14 +59694,14 @@ type CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdMa """ A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58368,7 +59713,7 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToMan """ A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -58378,7 +59723,7 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToMan """ Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - applicationClaimsExcelDataByUpdatedBy( + applicationClaimsExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -58415,14 +59760,14 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToMan """ A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58434,7 +59779,7 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToMa """ A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -58481,14 +59826,14 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToMa """ A connection to a list of `Application` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ A list of edges which contains the `Application`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58500,7 +59845,7 @@ type CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdMa """ A `Application` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -58547,14 +59892,14 @@ type CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdMa """ A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58566,7 +59911,7 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToMan """ A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -58613,14 +59958,14 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToMan """ A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58632,7 +59977,7 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToMa """ A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -58642,7 +59987,7 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToMa """ Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - applicationClaimsExcelDataByArchivedBy( + applicationClaimsExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -58677,16 +60022,16 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToMa } """ -A connection to a list of `Application` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `Application` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58696,9 +60041,9 @@ type CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdM } """ -A `Application` edge in the connection, with data from `ApplicationClaimsExcelData`. +A `Application` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -58706,9 +60051,9 @@ type CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdM node: Application """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationClaimsExcelDataByApplicationId( + applicationMilestoneDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -58727,32 +60072,32 @@ type CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58762,9 +60107,9 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToMa } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -58772,9 +60117,9 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToMa node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationClaimsExcelDataByCreatedBy( + applicationMilestoneDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -58793,32 +60138,32 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58828,9 +60173,9 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToMa } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -58838,9 +60183,9 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToMa node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationClaimsExcelDataByUpdatedBy( + applicationMilestoneDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -58859,32 +60204,32 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ A connection to a list of `Application` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ A list of edges which contains the `Application`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58896,7 +60241,7 @@ type CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdMany """ A `Application` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -58943,14 +60288,14 @@ type CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdMany """ A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58962,7 +60307,7 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyC """ A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -58972,7 +60317,7 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyE """ Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationMilestoneDataByUpdatedBy( + applicationMilestoneDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -59009,14 +60354,14 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyE """ A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59028,7 +60373,7 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToMany """ A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -59075,14 +60420,14 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToMany """ A connection to a list of `Application` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ A list of edges which contains the `Application`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59094,7 +60439,7 @@ type CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdMany """ A `Application` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -59141,14 +60486,14 @@ type CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdMany """ A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59160,7 +60505,7 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyC """ A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -59207,14 +60552,14 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyE """ A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59226,7 +60571,7 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToMany """ A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -59236,7 +60581,7 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToMany """ Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationMilestoneDataByArchivedBy( + applicationMilestoneDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -59271,16 +60616,16 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToMany } """ -A connection to a list of `Application` values, with data from `ApplicationMilestoneData`. +A connection to a list of `Application` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59290,9 +60635,9 @@ type CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdMan } """ -A `Application` edge in the connection, with data from `ApplicationMilestoneData`. +A `Application` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -59300,9 +60645,9 @@ type CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdMan node: Application """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationMilestoneDataByApplicationId( + applicationMilestoneExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -59321,32 +60666,32 @@ type CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59356,9 +60701,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -59366,9 +60711,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToMany node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationMilestoneDataByCreatedBy( + applicationMilestoneExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -59387,32 +60732,32 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59422,9 +60767,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -59432,9 +60777,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToMany node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationMilestoneDataByUpdatedBy( + applicationMilestoneExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -59453,32 +60798,32 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ A connection to a list of `Application` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ A list of edges which contains the `Application`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59490,7 +60835,7 @@ type CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationI """ A `Application` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -59537,14 +60882,14 @@ type CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationI """ A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59556,7 +60901,7 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyTo """ A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -59566,7 +60911,7 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyTo """ Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationMilestoneExcelDataByUpdatedBy( + applicationMilestoneExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -59603,14 +60948,14 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyTo """ A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59622,7 +60967,7 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyT """ A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -59669,14 +61014,14 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyT """ A connection to a list of `Application` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ A list of edges which contains the `Application`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59688,7 +61033,7 @@ type CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationI """ A `Application` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -59735,14 +61080,14 @@ type CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationI """ A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59754,7 +61099,7 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyTo """ A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -59801,14 +61146,14 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyTo """ A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59820,7 +61165,7 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyT """ A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -59830,7 +61175,7 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyT """ Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationMilestoneExcelDataByArchivedBy( + applicationMilestoneExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -59865,38 +61210,34 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyT } """ -A connection to a list of `Application` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `CbcProject`. """ -type CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationMilestoneExcelData`. -""" -type CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" +type CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. - """ - applicationMilestoneExcelDataByApplicationId( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -59915,32 +61256,32 @@ type CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplication """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `CbcProject`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59949,20 +61290,16 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyT totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. -""" -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" +type CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. - """ - applicationMilestoneExcelDataByCreatedBy( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -59981,32 +61318,32 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `CbcProject`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60015,20 +61352,16 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyT totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. -""" -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" +type CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. - """ - applicationMilestoneExcelDataByUpdatedBy( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60047,32 +61380,32 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! } """ A connection to a list of `CcbcUser` values, with data from `CbcProject`. """ -type CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60082,7 +61415,7 @@ type CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyConnection { } """A `CcbcUser` edge in the connection, with data from `CbcProject`.""" -type CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -60090,7 +61423,7 @@ type CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByUpdatedBy( + cbcProjectsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -60127,14 +61460,14 @@ type CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyEdge { """ A connection to a list of `CcbcUser` values, with data from `CbcProject`. """ -type CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60144,7 +61477,7 @@ type CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyConnection { } """A `CcbcUser` edge in the connection, with data from `CbcProject`.""" -type CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -60152,7 +61485,7 @@ type CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByArchivedBy( + cbcProjectsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60189,14 +61522,14 @@ type CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyEdge { """ A connection to a list of `CcbcUser` values, with data from `CbcProject`. """ -type CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60206,7 +61539,7 @@ type CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyConnection { } """A `CcbcUser` edge in the connection, with data from `CbcProject`.""" -type CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -60214,7 +61547,7 @@ type CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByCreatedBy( + cbcProjectsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60249,34 +61582,38 @@ type CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyEdge { } """ -A connection to a list of `CcbcUser` values, with data from `CbcProject`. +A connection to a list of `Application` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" -type CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationInternalDescription`. +""" +type CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -60295,32 +61632,32 @@ type CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProject`.""" - orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcProject`. +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60329,16 +61666,20 @@ type CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" -type CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +""" +type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60357,32 +61698,32 @@ type CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProject`.""" - orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcProject`. +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60391,16 +61732,20 @@ type CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" -type CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +""" +type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -60419,32 +61764,32 @@ type CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProject`.""" - orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ A connection to a list of `Application` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ A list of edges which contains the `Application`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60456,7 +61801,7 @@ type CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplication """ A `Application` edge in the connection, with data from `ApplicationInternalDescription`. """ -type CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -60503,14 +61848,14 @@ type CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplication """ A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60522,7 +61867,7 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyT """ A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -60532,7 +61877,7 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyT """ Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - applicationInternalDescriptionsByUpdatedBy( + applicationInternalDescriptionsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60569,14 +61914,14 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyT """ A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60588,7 +61933,7 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByMany """ A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -60635,14 +61980,14 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByMany """ A connection to a list of `Application` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ A list of edges which contains the `Application`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60654,7 +61999,7 @@ type CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplication """ A `Application` edge in the connection, with data from `ApplicationInternalDescription`. """ -type CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -60701,14 +62046,14 @@ type CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplication """ A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60720,7 +62065,7 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyT """ A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -60767,14 +62112,14 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyT """ A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60786,7 +62131,7 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByMany """ A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -60796,7 +62141,7 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByMany """ Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - applicationInternalDescriptionsByArchivedBy( + applicationInternalDescriptionsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60831,16 +62176,16 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByMany } """ -A connection to a list of `Application` values, with data from `ApplicationInternalDescription`. +A connection to a list of `Application` values, with data from `ApplicationProjectType`. """ -type CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60850,9 +62195,9 @@ type CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicatio } """ -A `Application` edge in the connection, with data from `ApplicationInternalDescription`. +A `Application` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -60860,9 +62205,9 @@ type CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicatio node: Application """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. + Reads and enables pagination through a set of `ApplicationProjectType`. """ - applicationInternalDescriptionsByApplicationId( + applicationProjectTypesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -60881,32 +62226,32 @@ type CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicatio """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60916,9 +62261,9 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -60926,9 +62271,9 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByMany node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. + Reads and enables pagination through a set of `ApplicationProjectType`. """ - applicationInternalDescriptionsByCreatedBy( + applicationProjectTypesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60947,32 +62292,32 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60982,9 +62327,9 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -60992,9 +62337,9 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByMany node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. + Reads and enables pagination through a set of `ApplicationProjectType`. """ - applicationInternalDescriptionsByUpdatedBy( + applicationProjectTypesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -61013,32 +62358,32 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ A connection to a list of `Application` values, with data from `ApplicationProjectType`. """ -type CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ A list of edges which contains the `Application`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61050,7 +62395,7 @@ type CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyTo """ A `Application` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -61097,14 +62442,14 @@ type CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyTo """ A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61116,7 +62461,7 @@ type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyCon """ A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -61126,7 +62471,7 @@ type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyEdg """ Reads and enables pagination through a set of `ApplicationProjectType`. """ - applicationProjectTypesByUpdatedBy( + applicationProjectTypesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -61163,14 +62508,14 @@ type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyEdg """ A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61182,7 +62527,7 @@ type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyCo """ A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -61229,14 +62574,14 @@ type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyEd """ A connection to a list of `Application` values, with data from `ApplicationProjectType`. """ -type CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ A list of edges which contains the `Application`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61248,7 +62593,7 @@ type CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyTo """ A `Application` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -61295,14 +62640,14 @@ type CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyTo """ A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61314,7 +62659,7 @@ type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyCon """ A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -61361,14 +62706,14 @@ type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyEdg """ A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61380,7 +62725,7 @@ type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyCo """ A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -61390,7 +62735,7 @@ type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyEd """ Reads and enables pagination through a set of `ApplicationProjectType`. """ - applicationProjectTypesByArchivedBy( + applicationProjectTypesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -61425,38 +62770,34 @@ type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyEd } """ -A connection to a list of `Application` values, with data from `ApplicationProjectType`. +A connection to a list of `CcbcUser` values, with data from `EmailRecord`. """ -type CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationProjectType`. -""" -type CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" +type CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByApplicationId( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -61475,32 +62816,32 @@ type CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. +A connection to a list of `CcbcUser` values, with data from `EmailRecord`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61509,20 +62850,16 @@ type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyCo totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. -""" -type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" +type CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByCreatedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -61541,32 +62878,32 @@ type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. +A connection to a list of `CcbcUser` values, with data from `EmailRecord`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61575,20 +62912,78 @@ type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyCo totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. -""" -type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" +type CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): EmailRecordsConnection! +} + +""" +A connection to a list of `CcbcUser` values, with data from `EmailRecord`. +""" +type CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + """ - Reads and enables pagination through a set of `ApplicationProjectType`. + A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. """ - applicationProjectTypesByUpdatedBy( + edges: [CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyEdge!]! + + """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 `EmailRecord`.""" +type CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -61607,32 +63002,32 @@ type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! } """ A connection to a list of `CcbcUser` values, with data from `EmailRecord`. """ -type CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61642,7 +63037,7 @@ type CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyConnection { } """A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" -type CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -61650,7 +63045,7 @@ type CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByUpdatedBy( + emailRecordsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -61687,14 +63082,14 @@ type CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyEdge { """ A connection to a list of `CcbcUser` values, with data from `EmailRecord`. """ -type CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61704,7 +63099,7 @@ type CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyConnection { } """A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" -type CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -61712,7 +63107,7 @@ type CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByArchivedBy( + emailRecordsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -61747,34 +63142,34 @@ type CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyEdge { } """ -A connection to a list of `CcbcUser` values, with data from `EmailRecord`. +A connection to a list of `Application` values, with data from `Notification`. """ -type CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" -type CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyEdge { +"""A `Application` edge in the connection, with data from `Notification`.""" +type CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByCreatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -61793,50 +63188,50 @@ type CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `EmailRecord`. +A connection to a list of `EmailRecord` values, with data from `Notification`. """ -type CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyConnection { + """A list of `EmailRecord` objects.""" + nodes: [EmailRecord]! """ - A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. + A list of edges which contains the `EmailRecord`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `EmailRecord` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" -type CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyEdge { +"""A `EmailRecord` edge in the connection, with data from `Notification`.""" +type CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `EmailRecord` at the end of the edge.""" + node: EmailRecord - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByArchivedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -61855,32 +63250,32 @@ type CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `EmailRecord`. +A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61889,16 +63284,16 @@ type CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" -type CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByCreatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -61917,32 +63312,32 @@ type CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `EmailRecord`. +A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61951,16 +63346,16 @@ type CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" -type CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByUpdatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -61979,32 +63374,32 @@ type CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ A connection to a list of `Application` values, with data from `Notification`. """ -type CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ A list of edges which contains the `Application`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62014,7 +63409,7 @@ type CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyConnec } """A `Application` edge in the connection, with data from `Notification`.""" -type CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -62059,14 +63454,14 @@ type CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyEdge { """ A connection to a list of `EmailRecord` values, with data from `Notification`. """ -type CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyConnection { +type CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyConnection { """A list of `EmailRecord` objects.""" nodes: [EmailRecord]! """ A list of edges which contains the `EmailRecord`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyEdge!]! + edges: [CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62076,7 +63471,7 @@ type CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyConnec } """A `EmailRecord` edge in the connection, with data from `Notification`.""" -type CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyEdge { +type CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -62121,14 +63516,14 @@ type CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyEdge { """ A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62138,7 +63533,7 @@ type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyConnection { } """A `CcbcUser` edge in the connection, with data from `Notification`.""" -type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -62146,7 +63541,7 @@ type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `Notification`.""" - notificationsByUpdatedBy( + notificationsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -62183,14 +63578,14 @@ type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyEdge { """ A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62200,7 +63595,7 @@ type CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyConnection { } """A `CcbcUser` edge in the connection, with data from `Notification`.""" -type CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -62245,14 +63640,14 @@ type CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyEdge { """ A connection to a list of `Application` values, with data from `Notification`. """ -type CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ A list of edges which contains the `Application`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62262,7 +63657,7 @@ type CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyConnec } """A `Application` edge in the connection, with data from `Notification`.""" -type CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -62305,158 +63700,34 @@ type CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyEdge { } """ -A connection to a list of `EmailRecord` values, with data from `Notification`. -""" -type CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyConnection { - """A list of `EmailRecord` objects.""" - nodes: [EmailRecord]! - - """ - A list of edges which contains the `EmailRecord`, info from the `Notification`, and the cursor to aid in pagination. - """ - edges: [CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `EmailRecord` you could get from the connection.""" - totalCount: Int! -} - -"""A `EmailRecord` edge in the connection, with data from `Notification`.""" -type CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `EmailRecord` at the end of the edge.""" - node: EmailRecord - - """Reads and enables pagination through a set of `Notification`.""" - notificationsByEmailRecordId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: NotificationCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: NotificationFilter - ): NotificationsConnection! -} - -""" -A connection to a list of `CcbcUser` values, with data from `Notification`. -""" -type CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. - """ - edges: [CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser - - """Reads and enables pagination through a set of `Notification`.""" - notificationsByCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: NotificationCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: NotificationFilter - ): NotificationsConnection! -} - -""" -A connection to a list of `CcbcUser` values, with data from `Notification`. +A connection to a list of `EmailRecord` values, with data from `Notification`. """ -type CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyConnection { + """A list of `EmailRecord` objects.""" + nodes: [EmailRecord]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `EmailRecord`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `EmailRecord` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyEdge { +"""A `EmailRecord` edge in the connection, with data from `Notification`.""" +type CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `EmailRecord` at the end of the edge.""" + node: EmailRecord """Reads and enables pagination through a set of `Notification`.""" - notificationsByArchivedBy( + notificationsByEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -62491,34 +63762,34 @@ type CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyEdge { } """ -A connection to a list of `Application` values, with data from `Notification`. +A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Application` edge in the connection, with data from `Notification`.""" -type CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """Reads and enables pagination through a set of `Notification`.""" - notificationsByApplicationId( + notificationsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -62553,34 +63824,34 @@ type CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyEdge } """ -A connection to a list of `EmailRecord` values, with data from `Notification`. +A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyConnection { - """A list of `EmailRecord` objects.""" - nodes: [EmailRecord]! +type CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `EmailRecord`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `EmailRecord` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `EmailRecord` edge in the connection, with data from `Notification`.""" -type CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `EmailRecord` at the end of the edge.""" - node: EmailRecord + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """Reads and enables pagination through a set of `Notification`.""" - notificationsByEmailRecordId( + notificationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -62614,17 +63885,15 @@ type CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyEdge ): NotificationsConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `Notification`. -""" -type CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Cbc`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62633,16 +63902,16 @@ type CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByCreatedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -62661,32 +63930,30 @@ type CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: CbcFilter + ): CbcsConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `Notification`. -""" -type CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Cbc`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62695,16 +63962,16 @@ type CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByUpdatedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -62723,54 +63990,48 @@ type CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: CbcFilter + ): CbcsConnection! } -""" -A connection to a list of `Application` values, with data from `ApplicationPendingChangeRequest`. -""" -type CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `CcbcUser` values, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Cbc`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationPendingChangeRequest`. -""" -type CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByApplicationId( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -62789,32 +64050,30 @@ type CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicatio """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: CbcFilter + ): CbcsConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Cbc`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62823,20 +64082,16 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByMany totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByUpdatedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -62855,32 +64110,30 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: CbcFilter + ): CbcsConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Cbc`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62889,20 +64142,76 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByMan totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcFilter + ): CbcsConnection! +} + +"""A connection to a list of `CcbcUser` values, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcArchivedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + A list of edges which contains the `CcbcUser`, info from the `Cbc`, and the cursor to aid in pagination. """ - applicationPendingChangeRequestsByArchivedBy( + edges: [CcbcUserCcbcUsersByCbcArchivedByAndUpdatedByManyToManyEdge!]! + + """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 `Cbc`.""" +type CcbcUserCcbcUsersByCbcArchivedByAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -62921,54 +64230,108 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: CbcFilter + ): CbcsConnection! } -""" -A connection to a list of `Application` values, with data from `ApplicationPendingChangeRequest`. -""" -type CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `Cbc` values, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataCreatedByAndCbcIdManyToManyConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! """ - A list of edges which contains the `Application`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCbcsByCbcDataCreatedByAndCbcIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `Cbc` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationPendingChangeRequest`. -""" -type CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyEdge { +"""A `Cbc` edge in the connection, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataCreatedByAndCbcIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `Cbc` at the end of the edge.""" + node: Cbc + + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCbcId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcDataFilter + ): CbcDataConnection! +} + +"""A connection to a list of `Cbc` values, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataCreatedByAndProjectNumberManyToManyConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. """ - applicationPendingChangeRequestsByApplicationId( + edges: [CcbcUserCbcsByCbcDataCreatedByAndProjectNumberManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `Cbc` you could get from the connection.""" + totalCount: Int! +} + +"""A `Cbc` edge in the connection, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataCreatedByAndProjectNumberManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Cbc` at the end of the edge.""" + node: Cbc + + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByProjectNumber( """Only read the first `n` values of the set.""" first: Int @@ -62987,32 +64350,30 @@ type CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicatio """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" +type CcbcUserCcbcUsersByCbcDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63021,20 +64382,16 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByMany totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" +type CcbcUserCcbcUsersByCbcDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByCreatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63053,32 +64410,30 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" +type CcbcUserCcbcUsersByCbcDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63087,20 +64442,76 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByMan totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" +type CcbcUserCcbcUsersByCbcDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcDataFilter + ): CbcDataConnection! +} + +"""A connection to a list of `Cbc` values, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataUpdatedByAndCbcIdManyToManyConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! + """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. """ - applicationPendingChangeRequestsByArchivedBy( + edges: [CcbcUserCbcsByCbcDataUpdatedByAndCbcIdManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `Cbc` you could get from the connection.""" + totalCount: Int! +} + +"""A `Cbc` edge in the connection, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataUpdatedByAndCbcIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Cbc` at the end of the edge.""" + node: Cbc + + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCbcId( """Only read the first `n` values of the set.""" first: Int @@ -63119,54 +64530,108 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -""" -A connection to a list of `Application` values, with data from `ApplicationPendingChangeRequest`. -""" -type CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `Cbc` values, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataUpdatedByAndProjectNumberManyToManyConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! """ - A list of edges which contains the `Application`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCbcsByCbcDataUpdatedByAndProjectNumberManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `Cbc` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationPendingChangeRequest`. -""" -type CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyEdge { +"""A `Cbc` edge in the connection, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataUpdatedByAndProjectNumberManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `Cbc` at the end of the edge.""" + node: Cbc + + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByProjectNumber( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcDataFilter + ): CbcDataConnection! +} + +"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" +type CcbcUserCcbcUsersByCbcDataUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. """ - applicationPendingChangeRequestsByApplicationId( + edges: [CcbcUserCcbcUsersByCbcDataUpdatedByAndCreatedByManyToManyEdge!]! + + """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 `CbcData`.""" +type CcbcUserCcbcUsersByCbcDataUpdatedByAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63185,32 +64650,30 @@ type CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicati """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" +type CcbcUserCcbcUsersByCbcDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63219,20 +64682,76 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByMan totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" +type CcbcUserCcbcUsersByCbcDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcDataFilter + ): CbcDataConnection! +} + +"""A connection to a list of `Cbc` values, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataArchivedByAndCbcIdManyToManyConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! + """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. """ - applicationPendingChangeRequestsByCreatedBy( + edges: [CcbcUserCbcsByCbcDataArchivedByAndCbcIdManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `Cbc` you could get from the connection.""" + totalCount: Int! +} + +"""A `Cbc` edge in the connection, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataArchivedByAndCbcIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Cbc` at the end of the edge.""" + node: Cbc + + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCbcId( """Only read the first `n` values of the set.""" first: Int @@ -63251,32 +64770,90 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `Cbc` values, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataArchivedByAndProjectNumberManyToManyConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! + + """ + A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. + """ + edges: [CcbcUserCbcsByCbcDataArchivedByAndProjectNumberManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `Cbc` you could get from the connection.""" + totalCount: Int! +} + +"""A `Cbc` edge in the connection, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataArchivedByAndProjectNumberManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Cbc` at the end of the edge.""" + node: Cbc + + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByProjectNumber( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcDataFilter + ): CbcDataConnection! +} + +"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" +type CcbcUserCcbcUsersByCbcDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63285,20 +64862,76 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByMan totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" +type CcbcUserCcbcUsersByCbcDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcDataFilter + ): CbcDataConnection! +} + +"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" +type CcbcUserCcbcUsersByCbcDataArchivedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. """ - applicationPendingChangeRequestsByUpdatedBy( + edges: [CcbcUserCcbcUsersByCbcDataArchivedByAndUpdatedByManyToManyEdge!]! + + """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 `CbcData`.""" +type CcbcUserCcbcUsersByCbcDataArchivedByAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63317,19 +64950,19 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: CbcDataFilter + ): CbcDataConnection! } """ @@ -64160,14 +65793,6 @@ type Mutation { input: CreateApplicationPackageInput! ): CreateApplicationPackagePayload - """Creates a single `ApplicationPendingChangeRequest`.""" - createApplicationPendingChangeRequest( - """ - The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. - """ - input: CreateApplicationPendingChangeRequestInput! - ): CreateApplicationPendingChangeRequestPayload - """Creates a single `ApplicationProjectType`.""" createApplicationProjectType( """ @@ -64224,6 +65849,22 @@ type Mutation { input: CreateAttachmentInput! ): CreateAttachmentPayload + """Creates a single `Cbc`.""" + createCbc( + """ + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + """ + input: CreateCbcInput! + ): CreateCbcPayload + + """Creates a single `CbcData`.""" + createCbcData( + """ + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + """ + input: CreateCbcDataInput! + ): CreateCbcDataPayload + """Creates a single `CcbcUser`.""" createCcbcUser( """ @@ -64672,26 +66313,6 @@ type Mutation { input: UpdateApplicationPackageByRowIdInput! ): UpdateApplicationPackagePayload - """ - Updates a single `ApplicationPendingChangeRequest` using its globally unique id and a patch. - """ - updateApplicationPendingChangeRequest( - """ - The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. - """ - input: UpdateApplicationPendingChangeRequestInput! - ): UpdateApplicationPendingChangeRequestPayload - - """ - Updates a single `ApplicationPendingChangeRequest` using a unique key and a patch. - """ - updateApplicationPendingChangeRequestByRowId( - """ - The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. - """ - input: UpdateApplicationPendingChangeRequestByRowIdInput! - ): UpdateApplicationPendingChangeRequestPayload - """ Updates a single `ApplicationProjectType` using its globally unique id and a patch. """ @@ -64850,6 +66471,46 @@ type Mutation { input: UpdateAttachmentByRowIdInput! ): UpdateAttachmentPayload + """Updates a single `Cbc` using its globally unique id and a patch.""" + updateCbc( + """ + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + """ + input: UpdateCbcInput! + ): UpdateCbcPayload + + """Updates a single `Cbc` using a unique key and a patch.""" + updateCbcByRowId( + """ + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + """ + input: UpdateCbcByRowIdInput! + ): UpdateCbcPayload + + """Updates a single `Cbc` using a unique key and a patch.""" + updateCbcByProjectNumber( + """ + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + """ + input: UpdateCbcByProjectNumberInput! + ): UpdateCbcPayload + + """Updates a single `CbcData` using its globally unique id and a patch.""" + updateCbcData( + """ + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + """ + input: UpdateCbcDataInput! + ): UpdateCbcDataPayload + + """Updates a single `CbcData` using a unique key and a patch.""" + updateCbcDataByRowId( + """ + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + """ + input: UpdateCbcDataByRowIdInput! + ): UpdateCbcDataPayload + """ Updates a single `CbcProject` using its globally unique id and a patch. """ @@ -65320,24 +66981,6 @@ type Mutation { input: DeleteApplicationPackageByRowIdInput! ): DeleteApplicationPackagePayload - """ - Deletes a single `ApplicationPendingChangeRequest` using its globally unique id. - """ - deleteApplicationPendingChangeRequest( - """ - The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. - """ - input: DeleteApplicationPendingChangeRequestInput! - ): DeleteApplicationPendingChangeRequestPayload - - """Deletes a single `ApplicationPendingChangeRequest` using a unique key.""" - deleteApplicationPendingChangeRequestByRowId( - """ - The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. - """ - input: DeleteApplicationPendingChangeRequestByRowIdInput! - ): DeleteApplicationPendingChangeRequestPayload - """ Deletes a single `ApplicationProjectType` using its globally unique id. """ @@ -65460,6 +67103,46 @@ type Mutation { input: DeleteAttachmentByRowIdInput! ): DeleteAttachmentPayload + """Deletes a single `Cbc` using its globally unique id.""" + deleteCbc( + """ + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + """ + input: DeleteCbcInput! + ): DeleteCbcPayload + + """Deletes a single `Cbc` using a unique key.""" + deleteCbcByRowId( + """ + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + """ + input: DeleteCbcByRowIdInput! + ): DeleteCbcPayload + + """Deletes a single `Cbc` using a unique key.""" + deleteCbcByProjectNumber( + """ + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + """ + input: DeleteCbcByProjectNumberInput! + ): DeleteCbcPayload + + """Deletes a single `CbcData` using its globally unique id.""" + deleteCbcData( + """ + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + """ + input: DeleteCbcDataInput! + ): DeleteCbcDataPayload + + """Deletes a single `CbcData` using a unique key.""" + deleteCbcDataByRowId( + """ + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + """ + input: DeleteCbcDataByRowIdInput! + ): DeleteCbcDataPayload + """Deletes a single `CcbcUser` using its globally unique id.""" deleteCcbcUser( """ @@ -66677,99 +68360,6 @@ input ApplicationPackageInput { archivedAt: Datetime } -"""The output of our create `ApplicationPendingChangeRequest` mutation.""" -type CreateApplicationPendingChangeRequestPayload { - """ - The exact same `clientMutationId` that was provided in the mutation input, - unchanged and unused. May be used by a client to track mutations. - """ - clientMutationId: String - - """ - The `ApplicationPendingChangeRequest` that was created by this mutation. - """ - applicationPendingChangeRequest: ApplicationPendingChangeRequest - - """ - Our root query field type. Allows us to run any query from our mutation payload. - """ - query: Query - - """ - Reads a single `Application` that is related to this `ApplicationPendingChangeRequest`. - """ - applicationByApplicationId: Application - - """ - Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. - """ - ccbcUserByCreatedBy: CcbcUser - - """ - Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. - """ - ccbcUserByUpdatedBy: CcbcUser - - """ - Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. - """ - ccbcUserByArchivedBy: CcbcUser - - """ - An edge for our `ApplicationPendingChangeRequest`. May be used by Relay 1. - """ - applicationPendingChangeRequestEdge( - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] - ): ApplicationPendingChangeRequestsEdge -} - -"""All input for the create `ApplicationPendingChangeRequest` mutation.""" -input CreateApplicationPendingChangeRequestInput { - """ - An arbitrary string value with no semantic meaning. Will be included in the - payload verbatim. May be used to track mutations by the client. - """ - clientMutationId: String - - """The `ApplicationPendingChangeRequest` to be created by this mutation.""" - applicationPendingChangeRequest: ApplicationPendingChangeRequestInput! -} - -"""An input for mutations affecting `ApplicationPendingChangeRequest`""" -input ApplicationPendingChangeRequestInput { - """ - ID of the application this application_pending_change_request belongs to - """ - applicationId: Int - - """Column defining if the change request pending or not""" - isPending: Boolean - - """ - Column containing the comment for the change request or completion of the change request - """ - comment: String - - """created by user id""" - createdBy: Int - - """created at timestamp""" - createdAt: Datetime - - """updated by user id""" - updatedBy: Int - - """updated at timestamp""" - updatedAt: Datetime - - """archived by user id""" - archivedBy: Int - - """archived at timestamp""" - archivedAt: Datetime -} - """The output of our create `ApplicationProjectType` mutation.""" type CreateApplicationProjectTypePayload { """ @@ -67270,6 +68860,156 @@ input AttachmentInput { archivedAt: Datetime } +"""The output of our create `Cbc` mutation.""" +type CreateCbcPayload { + """ + The exact same `clientMutationId` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + """ + clientMutationId: String + + """The `Cbc` that was created by this mutation.""" + cbc: Cbc + + """ + Our root query field type. Allows us to run any query from our mutation payload. + """ + query: Query + + """Reads a single `CcbcUser` that is related to this `Cbc`.""" + ccbcUserByCreatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `Cbc`.""" + ccbcUserByUpdatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `Cbc`.""" + ccbcUserByArchivedBy: CcbcUser + + """An edge for our `Cbc`. May be used by Relay 1.""" + cbcEdge( + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + ): CbcsEdge +} + +"""All input for the create `Cbc` mutation.""" +input CreateCbcInput { + """ + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + """ + clientMutationId: String + + """The `Cbc` to be created by this mutation.""" + cbc: CbcInput! +} + +"""An input for mutations affecting `Cbc`""" +input CbcInput { + """The project number, unique for each project""" + projectNumber: Int! + + """The timestamp of the last time the data was updated from sharepoint""" + sharepointTimestamp: Datetime + + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime +} + +"""The output of our create `CbcData` mutation.""" +type CreateCbcDataPayload { + """ + The exact same `clientMutationId` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + """ + clientMutationId: String + + """The `CbcData` that was created by this mutation.""" + cbcData: CbcData + + """ + Our root query field type. Allows us to run any query from our mutation payload. + """ + query: Query + + """Reads a single `Cbc` that is related to this `CbcData`.""" + cbcByCbcId: Cbc + + """Reads a single `Cbc` that is related to this `CbcData`.""" + cbcByProjectNumber: Cbc + + """Reads a single `CcbcUser` that is related to this `CbcData`.""" + ccbcUserByCreatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `CbcData`.""" + ccbcUserByUpdatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `CbcData`.""" + ccbcUserByArchivedBy: CcbcUser + + """An edge for our `CbcData`. May be used by Relay 1.""" + cbcDataEdge( + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + ): CbcDataEdge +} + +"""All input for the create `CbcData` mutation.""" +input CreateCbcDataInput { + """ + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + """ + clientMutationId: String + + """The `CbcData` to be created by this mutation.""" + cbcData: CbcDataInput! +} + +"""An input for mutations affecting `CbcData`""" +input CbcDataInput { + """ID of the cbc application this cbc_data belongs to""" + cbcId: Int + + """Column containing the project number the cbc application is from""" + projectNumber: Int + jsonData: JSON + sharepointTimestamp: Datetime + + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime +} + """The output of our create `CcbcUser` mutation.""" type CreateCcbcUserPayload { """ @@ -70322,127 +72062,6 @@ input UpdateApplicationPackageByRowIdInput { rowId: Int! } -"""The output of our update `ApplicationPendingChangeRequest` mutation.""" -type UpdateApplicationPendingChangeRequestPayload { - """ - The exact same `clientMutationId` that was provided in the mutation input, - unchanged and unused. May be used by a client to track mutations. - """ - clientMutationId: String - - """ - The `ApplicationPendingChangeRequest` that was updated by this mutation. - """ - applicationPendingChangeRequest: ApplicationPendingChangeRequest - - """ - Our root query field type. Allows us to run any query from our mutation payload. - """ - query: Query - - """ - Reads a single `Application` that is related to this `ApplicationPendingChangeRequest`. - """ - applicationByApplicationId: Application - - """ - Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. - """ - ccbcUserByCreatedBy: CcbcUser - - """ - Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. - """ - ccbcUserByUpdatedBy: CcbcUser - - """ - Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. - """ - ccbcUserByArchivedBy: CcbcUser - - """ - An edge for our `ApplicationPendingChangeRequest`. May be used by Relay 1. - """ - applicationPendingChangeRequestEdge( - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] - ): ApplicationPendingChangeRequestsEdge -} - -"""All input for the `updateApplicationPendingChangeRequest` mutation.""" -input UpdateApplicationPendingChangeRequestInput { - """ - An arbitrary string value with no semantic meaning. Will be included in the - payload verbatim. May be used to track mutations by the client. - """ - clientMutationId: String - - """ - The globally unique `ID` which will identify a single `ApplicationPendingChangeRequest` to be updated. - """ - id: ID! - - """ - An object where the defined keys will be set on the `ApplicationPendingChangeRequest` being updated. - """ - applicationPendingChangeRequestPatch: ApplicationPendingChangeRequestPatch! -} - -""" -Represents an update to a `ApplicationPendingChangeRequest`. Fields that are set will be updated. -""" -input ApplicationPendingChangeRequestPatch { - """ - ID of the application this application_pending_change_request belongs to - """ - applicationId: Int - - """Column defining if the change request pending or not""" - isPending: Boolean - - """ - Column containing the comment for the change request or completion of the change request - """ - comment: String - - """created by user id""" - createdBy: Int - - """created at timestamp""" - createdAt: Datetime - - """updated by user id""" - updatedBy: Int - - """updated at timestamp""" - updatedAt: Datetime - - """archived by user id""" - archivedBy: Int - - """archived at timestamp""" - archivedAt: Datetime -} - -""" -All input for the `updateApplicationPendingChangeRequestByRowId` mutation. -""" -input UpdateApplicationPendingChangeRequestByRowIdInput { - """ - An arbitrary string value with no semantic meaning. Will be included in the - payload verbatim. May be used to track mutations by the client. - """ - clientMutationId: String - - """ - An object where the defined keys will be set on the `ApplicationPendingChangeRequest` being updated. - """ - applicationPendingChangeRequestPatch: ApplicationPendingChangeRequestPatch! - - """Unique ID for the application_pending_change_request""" - rowId: Int! -} - """The output of our update `ApplicationProjectType` mutation.""" type UpdateApplicationProjectTypePayload { """ @@ -71261,6 +72880,223 @@ input UpdateAttachmentByRowIdInput { rowId: Int! } +"""The output of our update `Cbc` mutation.""" +type UpdateCbcPayload { + """ + The exact same `clientMutationId` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + """ + clientMutationId: String + + """The `Cbc` that was updated by this mutation.""" + cbc: Cbc + + """ + Our root query field type. Allows us to run any query from our mutation payload. + """ + query: Query + + """Reads a single `CcbcUser` that is related to this `Cbc`.""" + ccbcUserByCreatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `Cbc`.""" + ccbcUserByUpdatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `Cbc`.""" + ccbcUserByArchivedBy: CcbcUser + + """An edge for our `Cbc`. May be used by Relay 1.""" + cbcEdge( + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + ): CbcsEdge +} + +"""All input for the `updateCbc` mutation.""" +input UpdateCbcInput { + """ + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + """ + clientMutationId: String + + """ + The globally unique `ID` which will identify a single `Cbc` to be updated. + """ + id: ID! + + """ + An object where the defined keys will be set on the `Cbc` being updated. + """ + cbcPatch: CbcPatch! +} + +"""Represents an update to a `Cbc`. Fields that are set will be updated.""" +input CbcPatch { + """The project number, unique for each project""" + projectNumber: Int + + """The timestamp of the last time the data was updated from sharepoint""" + sharepointTimestamp: Datetime + + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime +} + +"""All input for the `updateCbcByRowId` mutation.""" +input UpdateCbcByRowIdInput { + """ + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + """ + clientMutationId: String + + """ + An object where the defined keys will be set on the `Cbc` being updated. + """ + cbcPatch: CbcPatch! + + """Unique ID for the row""" + rowId: Int! +} + +"""All input for the `updateCbcByProjectNumber` mutation.""" +input UpdateCbcByProjectNumberInput { + """ + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + """ + clientMutationId: String + + """ + An object where the defined keys will be set on the `Cbc` being updated. + """ + cbcPatch: CbcPatch! + + """The project number, unique for each project""" + projectNumber: Int! +} + +"""The output of our update `CbcData` mutation.""" +type UpdateCbcDataPayload { + """ + The exact same `clientMutationId` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + """ + clientMutationId: String + + """The `CbcData` that was updated by this mutation.""" + cbcData: CbcData + + """ + Our root query field type. Allows us to run any query from our mutation payload. + """ + query: Query + + """Reads a single `Cbc` that is related to this `CbcData`.""" + cbcByCbcId: Cbc + + """Reads a single `Cbc` that is related to this `CbcData`.""" + cbcByProjectNumber: Cbc + + """Reads a single `CcbcUser` that is related to this `CbcData`.""" + ccbcUserByCreatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `CbcData`.""" + ccbcUserByUpdatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `CbcData`.""" + ccbcUserByArchivedBy: CcbcUser + + """An edge for our `CbcData`. May be used by Relay 1.""" + cbcDataEdge( + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + ): CbcDataEdge +} + +"""All input for the `updateCbcData` mutation.""" +input UpdateCbcDataInput { + """ + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + """ + clientMutationId: String + + """ + The globally unique `ID` which will identify a single `CbcData` to be updated. + """ + id: ID! + + """ + An object where the defined keys will be set on the `CbcData` being updated. + """ + cbcDataPatch: CbcDataPatch! +} + +""" +Represents an update to a `CbcData`. Fields that are set will be updated. +""" +input CbcDataPatch { + """ID of the cbc application this cbc_data belongs to""" + cbcId: Int + + """Column containing the project number the cbc application is from""" + projectNumber: Int + jsonData: JSON + sharepointTimestamp: Datetime + + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime +} + +"""All input for the `updateCbcDataByRowId` mutation.""" +input UpdateCbcDataByRowIdInput { + """ + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + """ + clientMutationId: String + + """ + An object where the defined keys will be set on the `CbcData` being updated. + """ + cbcDataPatch: CbcDataPatch! + + """Unique ID for the cbc_data""" + rowId: Int! +} + """The output of our update `CbcProject` mutation.""" type UpdateCbcProjectPayload { """ @@ -71316,7 +73152,7 @@ input UpdateCbcProjectInput { Represents an update to a `CbcProject`. Fields that are set will be updated. """ input CbcProjectPatch { - """The data imported from the excel""" + """The data imported from the excel for that cbc project""" jsonData: JSON """The timestamp of the last time the data was updated from sharepoint""" @@ -73677,82 +75513,6 @@ input DeleteApplicationPackageByRowIdInput { rowId: Int! } -"""The output of our delete `ApplicationPendingChangeRequest` mutation.""" -type DeleteApplicationPendingChangeRequestPayload { - """ - The exact same `clientMutationId` that was provided in the mutation input, - unchanged and unused. May be used by a client to track mutations. - """ - clientMutationId: String - - """ - The `ApplicationPendingChangeRequest` that was deleted by this mutation. - """ - applicationPendingChangeRequest: ApplicationPendingChangeRequest - deletedApplicationPendingChangeRequestId: ID - - """ - Our root query field type. Allows us to run any query from our mutation payload. - """ - query: Query - - """ - Reads a single `Application` that is related to this `ApplicationPendingChangeRequest`. - """ - applicationByApplicationId: Application - - """ - Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. - """ - ccbcUserByCreatedBy: CcbcUser - - """ - Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. - """ - ccbcUserByUpdatedBy: CcbcUser - - """ - Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. - """ - ccbcUserByArchivedBy: CcbcUser - - """ - An edge for our `ApplicationPendingChangeRequest`. May be used by Relay 1. - """ - applicationPendingChangeRequestEdge( - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] - ): ApplicationPendingChangeRequestsEdge -} - -"""All input for the `deleteApplicationPendingChangeRequest` mutation.""" -input DeleteApplicationPendingChangeRequestInput { - """ - An arbitrary string value with no semantic meaning. Will be included in the - payload verbatim. May be used to track mutations by the client. - """ - clientMutationId: String - - """ - The globally unique `ID` which will identify a single `ApplicationPendingChangeRequest` to be deleted. - """ - id: ID! -} - -""" -All input for the `deleteApplicationPendingChangeRequestByRowId` mutation. -""" -input DeleteApplicationPendingChangeRequestByRowIdInput { - """ - An arbitrary string value with no semantic meaning. Will be included in the - payload verbatim. May be used to track mutations by the client. - """ - clientMutationId: String - - """Unique ID for the application_pending_change_request""" - rowId: Int! -} - """The output of our delete `ApplicationProjectType` mutation.""" type DeleteApplicationProjectTypePayload { """ @@ -74199,6 +75959,142 @@ input DeleteAttachmentByRowIdInput { rowId: Int! } +"""The output of our delete `Cbc` mutation.""" +type DeleteCbcPayload { + """ + The exact same `clientMutationId` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + """ + clientMutationId: String + + """The `Cbc` that was deleted by this mutation.""" + cbc: Cbc + deletedCbcId: ID + + """ + Our root query field type. Allows us to run any query from our mutation payload. + """ + query: Query + + """Reads a single `CcbcUser` that is related to this `Cbc`.""" + ccbcUserByCreatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `Cbc`.""" + ccbcUserByUpdatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `Cbc`.""" + ccbcUserByArchivedBy: CcbcUser + + """An edge for our `Cbc`. May be used by Relay 1.""" + cbcEdge( + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + ): CbcsEdge +} + +"""All input for the `deleteCbc` mutation.""" +input DeleteCbcInput { + """ + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + """ + clientMutationId: String + + """ + The globally unique `ID` which will identify a single `Cbc` to be deleted. + """ + id: ID! +} + +"""All input for the `deleteCbcByRowId` mutation.""" +input DeleteCbcByRowIdInput { + """ + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + """ + clientMutationId: String + + """Unique ID for the row""" + rowId: Int! +} + +"""All input for the `deleteCbcByProjectNumber` mutation.""" +input DeleteCbcByProjectNumberInput { + """ + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + """ + clientMutationId: String + + """The project number, unique for each project""" + projectNumber: Int! +} + +"""The output of our delete `CbcData` mutation.""" +type DeleteCbcDataPayload { + """ + The exact same `clientMutationId` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + """ + clientMutationId: String + + """The `CbcData` that was deleted by this mutation.""" + cbcData: CbcData + deletedCbcDataId: ID + + """ + Our root query field type. Allows us to run any query from our mutation payload. + """ + query: Query + + """Reads a single `Cbc` that is related to this `CbcData`.""" + cbcByCbcId: Cbc + + """Reads a single `Cbc` that is related to this `CbcData`.""" + cbcByProjectNumber: Cbc + + """Reads a single `CcbcUser` that is related to this `CbcData`.""" + ccbcUserByCreatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `CbcData`.""" + ccbcUserByUpdatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `CbcData`.""" + ccbcUserByArchivedBy: CcbcUser + + """An edge for our `CbcData`. May be used by Relay 1.""" + cbcDataEdge( + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + ): CbcDataEdge +} + +"""All input for the `deleteCbcData` mutation.""" +input DeleteCbcDataInput { + """ + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + """ + clientMutationId: String + + """ + The globally unique `ID` which will identify a single `CbcData` to be deleted. + """ + id: ID! +} + +"""All input for the `deleteCbcDataByRowId` mutation.""" +input DeleteCbcDataByRowIdInput { + """ + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + """ + clientMutationId: String + + """Unique ID for the cbc_data""" + rowId: Int! +} + """The output of our delete `CcbcUser` mutation.""" type DeleteCcbcUserPayload { """ diff --git a/db/deploy/tables/cbc.sql b/db/deploy/tables/cbc.sql new file mode 100644 index 0000000000..3b9d526cb1 --- /dev/null +++ b/db/deploy/tables/cbc.sql @@ -0,0 +1,45 @@ +-- Deploy ccbc:tables/cbc to pg + +begin; + +create table ccbc_public.cbc( + id integer primary key generated always as identity, + project_number integer not null unique, + sharepoint_timestamp timestamp with time zone default null +); + +select ccbc_private.upsert_timestamp_columns('ccbc_public', 'cbc'); + +create index cbc_project_number on ccbc_public.cbc(project_number); + +-- enable audit/history +select audit.enable_tracking('ccbc_public.cbc'::regclass); + +do +$grant$ +begin + +-- Grant ccbc_admin permissions +perform ccbc_private.grant_permissions('select', 'cbc', 'ccbc_admin'); +perform ccbc_private.grant_permissions('insert', 'cbc', 'ccbc_admin'); +perform ccbc_private.grant_permissions('update', 'cbc', 'ccbc_admin'); + +-- Grant ccbc_analyst permissions +perform ccbc_private.grant_permissions('select', 'cbc', 'ccbc_analyst'); +perform ccbc_private.grant_permissions('insert', 'cbc', 'ccbc_analyst'); +perform ccbc_private.grant_permissions('update', 'cbc', 'ccbc_analyst'); + +-- Grant ccbc_service_account permissions +perform ccbc_private.grant_permissions('select', 'cbc', 'ccbc_service_account'); +perform ccbc_private.grant_permissions('insert', 'cbc', 'ccbc_service_account'); +perform ccbc_private.grant_permissions('update', 'cbc', 'ccbc_service_account'); + +end +$grant$; + +comment on table ccbc_public.cbc is 'Table containing the data imported from the CBC projects excel file, by rows'; +comment on column ccbc_public.cbc.id is 'Unique ID for the row'; +comment on column ccbc_public.cbc.project_number is 'The project number, unique for each project'; +comment on column ccbc_public.cbc.sharepoint_timestamp is 'The timestamp of the last time the data was updated from sharepoint'; + +commit; diff --git a/db/deploy/tables/cbc_data.sql b/db/deploy/tables/cbc_data.sql new file mode 100644 index 0000000000..82eac2b55b --- /dev/null +++ b/db/deploy/tables/cbc_data.sql @@ -0,0 +1,44 @@ +-- Deploy ccbc:tables/cbc_data to pg + +begin; + +create table ccbc_public.cbc_data( + id integer primary key generated always as identity, + cbc_id integer references ccbc_public.cbc(id), + project_number integer references ccbc_public.cbc(project_number), + json_data jsonb not null default '{}'::jsonb, + sharepoint_timestamp timestamp with time zone default null +); + +select ccbc_private.upsert_timestamp_columns('ccbc_public', 'cbc_data'); + +do +$grant$ +begin + +-- Grant ccbc_admin permissions +perform ccbc_private.grant_permissions('select', 'cbc_data', 'ccbc_admin'); +perform ccbc_private.grant_permissions('insert', 'cbc_data', 'ccbc_admin'); +perform ccbc_private.grant_permissions('update', 'cbc_data', 'ccbc_admin'); + +-- Grant ccbc_analyst permissions +perform ccbc_private.grant_permissions('select', 'cbc_data', 'ccbc_analyst'); +perform ccbc_private.grant_permissions('insert', 'cbc_data', 'ccbc_analyst'); +perform ccbc_private.grant_permissions('update', 'cbc_data', 'ccbc_analyst'); + +-- Grant ccbc_service_account permissions +perform ccbc_private.grant_permissions('select', 'cbc_data', 'ccbc_service_account'); +perform ccbc_private.grant_permissions('insert', 'cbc_data', 'ccbc_service_account'); +perform ccbc_private.grant_permissions('update', 'cbc_data', 'ccbc_service_account'); + +end +$grant$; + +comment on table ccbc_public.cbc_data is 'Table containing the json data for cbc applications'; +comment on column ccbc_public.cbc_data.id is 'Unique ID for the cbc_data'; +comment on column ccbc_public.cbc_data.cbc_id is 'ID of the cbc application this cbc_data belongs to'; +comment on column ccbc_public.cbc_data.project_number is 'Column containing the project number the cbc application is from'; +comment on column ccbc_public.cbc_project.json_data is 'The data imported from the excel for that cbc project'; +comment on column ccbc_public.cbc_project.sharepoint_timestamp is 'The timestamp of the last time the data was updated from sharepoint'; + +commit; diff --git a/db/deploy/tables/cbc_projects.sql b/db/deploy/tables/cbc_projects.sql deleted file mode 100644 index d4156c6863..0000000000 --- a/db/deploy/tables/cbc_projects.sql +++ /dev/null @@ -1,45 +0,0 @@ --- Deploy ccbc:tables/cbc_projects to pg - -begin; - -create table ccbc_public.cbc_projects( - id integer primary key generated always as identity, - project_number integer not null unique, - sharepoint_timestamp timestamp with time zone default null -); - -select ccbc_private.upsert_timestamp_columns('ccbc_public', 'cbc_projects'); - -create index cbc_projects_project_number on ccbc_public.cbc_projects(project_number); - --- enable audit/history -select audit.enable_tracking('ccbc_public.cbc_projects'::regclass); - -do -$grant$ -begin - --- Grant ccbc_admin permissions -perform ccbc_private.grant_permissions('select', 'cbc_projects', 'ccbc_admin'); -perform ccbc_private.grant_permissions('insert', 'cbc_projects', 'ccbc_admin'); -perform ccbc_private.grant_permissions('update', 'cbc_projects', 'ccbc_admin'); - --- Grant ccbc_analyst permissions -perform ccbc_private.grant_permissions('select', 'cbc_projects', 'ccbc_analyst'); -perform ccbc_private.grant_permissions('insert', 'cbc_projects', 'ccbc_analyst'); -perform ccbc_private.grant_permissions('update', 'cbc_projects', 'ccbc_analyst'); - --- Grant ccbc_service_account permissions -perform ccbc_private.grant_permissions('select', 'cbc_project', 'ccbc_service_account'); -perform ccbc_private.grant_permissions('insert', 'cbc_project', 'ccbc_service_account'); -perform ccbc_private.grant_permissions('update', 'cbc_project', 'ccbc_service_account'); - -end -$grant$; - -comment on table ccbc_public.cbc_projects is 'Table containing the data imported from the CBC projects excel file, by rows'; -comment on column ccbc_public.cbc_projects.id is 'Unique ID for the row'; -comment on column ccbc_public.cbc_projects.project_number is 'The project number, unique for each project'; -comment on column ccbc_public.cbc_projects.sharepoint_timestamp is 'The timestamp of the last time the data was updated from sharepoint'; - -commit; diff --git a/db/deploy/tables/cbc_projects_data.sql b/db/deploy/tables/cbc_projects_data.sql deleted file mode 100644 index 2d0c08fe9f..0000000000 --- a/db/deploy/tables/cbc_projects_data.sql +++ /dev/null @@ -1,44 +0,0 @@ --- Deploy ccbc:tables/cbc_projects_data to pg - -begin; - -create table ccbc_public.cbc_projects_data( - id integer primary key generated always as identity, - cbc_id integer references ccbc_public.cbc_projects(id), - project_number integer references ccbc_public.cbc_projects(project_number), - json_data jsonb not null default '{}'::jsonb, - sharepoint_timestamp timestamp with time zone default null -); - -select ccbc_private.upsert_timestamp_columns('ccbc_public', 'cbc_projects_data'); - -do -$grant$ -begin - --- Grant ccbc_admin permissions -perform ccbc_private.grant_permissions('select', 'cbc_projects_data', 'ccbc_admin'); -perform ccbc_private.grant_permissions('insert', 'cbc_projects_data', 'ccbc_admin'); -perform ccbc_private.grant_permissions('update', 'cbc_projects_data', 'ccbc_admin'); - --- Grant ccbc_analyst permissions -perform ccbc_private.grant_permissions('select', 'cbc_projects_data', 'ccbc_analyst'); -perform ccbc_private.grant_permissions('insert', 'cbc_projects_data', 'ccbc_analyst'); -perform ccbc_private.grant_permissions('update', 'cbc_projects_data', 'ccbc_analyst'); - --- Grant ccbc_service_account permissions -perform ccbc_private.grant_permissions('select', 'cbc_project', 'ccbc_service_account'); -perform ccbc_private.grant_permissions('insert', 'cbc_project', 'ccbc_service_account'); -perform ccbc_private.grant_permissions('update', 'cbc_project', 'ccbc_service_account'); - -end -$grant$; - -comment on table ccbc_public.cbc_projects_data is 'Table containing the json data for cbc applications'; -comment on column ccbc_public.cbc_projects_data.id is 'Unique ID for the cbc_projects_data'; -comment on column ccbc_public.cbc_projects_data.cbc_id is 'ID of the cbc application this cbc_projects_data belongs to'; -comment on column ccbc_public.cbc_projects_data.project_number is 'Column containing the project number the cbc application is from'; -comment on column ccbc_public.cbc_project.json_data is 'The data imported from the excel for that cbc project'; -comment on column ccbc_public.cbc_project.sharepoint_timestamp is 'The timestamp of the last time the data was updated from sharepoint'; - -commit; diff --git a/db/revert/tables/cbc.sql b/db/revert/tables/cbc.sql new file mode 100644 index 0000000000..77c52abf61 --- /dev/null +++ b/db/revert/tables/cbc.sql @@ -0,0 +1,7 @@ +-- Revert ccbc:tables/cbc from pg + +BEGIN; + +drop table if exists ccbc_public.cbc cascade; + +COMMIT; diff --git a/db/revert/tables/cbc_projects.sql b/db/revert/tables/cbc_projects.sql deleted file mode 100644 index 9f0b62bf49..0000000000 --- a/db/revert/tables/cbc_projects.sql +++ /dev/null @@ -1,7 +0,0 @@ --- Revert ccbc:tables/cbc_projects from pg - -BEGIN; - -drop table if exists ccbc_public.cbc_projects cascade; - -COMMIT; diff --git a/db/revert/tables/cbc_projects_data.sql b/db/revert/tables/cbc_projects_data.sql index 96bd1f1f51..3c501ac1bd 100644 --- a/db/revert/tables/cbc_projects_data.sql +++ b/db/revert/tables/cbc_projects_data.sql @@ -1,7 +1,7 @@ --- Revert ccbc:tables/cbc_projects_data from pg +-- Revert ccbc:tables/cbc_data from pg BEGIN; -drop table if exists ccbc_public.cbc_projects_data cascade; +drop table if exists ccbc_public.cbc_data cascade; COMMIT; diff --git a/db/sqitch.plan b/db/sqitch.plan index cff6028112..f418261572 100644 --- a/db/sqitch.plan +++ b/db/sqitch.plan @@ -562,5 +562,5 @@ tables/application_status_type_010_closed_to_not_selected 2024-05-01T15:54:58Z A @1.160.1 2024-05-15T16:41:31Z CCBC Service Account # release v1.160.1 tables/application_pending_change_request 2024-05-03T20:55:21Z ,,, # add application pending change request table @1.161.0 2024-05-15T17:59:55Z CCBC Service Account # release v1.161.0 -tables/cbc_projects 2024-05-08T17:56:10Z Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> # add cbc projects table for individual cbc projects -tables/cbc_projects_data 2024-05-08T18:08:06Z Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> # table to hold the json data for individual cbc projects +tables/cbc 2024-05-08T17:56:10Z Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> # add cbc projects table for individual cbc projects +tables/cbc_data 2024-05-08T18:08:06Z Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> # table to hold the json data for individual cbc projects From 80210c5fa883a83d6254bc256f58a89cd9e61b4a Mon Sep 17 00:00:00 2001 From: Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> Date: Wed, 8 May 2024 16:16:00 -0700 Subject: [PATCH 03/34] feat: import cbc data separately into two tables --- app/backend/lib/excel_import/cbc_project.ts | 105 ++++++++++++++++++++ 1 file changed, 105 insertions(+) diff --git a/app/backend/lib/excel_import/cbc_project.ts b/app/backend/lib/excel_import/cbc_project.ts index 77764510f3..c41751c260 100644 --- a/app/backend/lib/excel_import/cbc_project.ts +++ b/app/backend/lib/excel_import/cbc_project.ts @@ -19,6 +19,50 @@ const createCbcProjectMutation = ` } `; +const findCbcQuery = ` + query findCbc($projectNumber: Int!) { + cbcByProjectNumber (projectNumber: $projectNumber) { + rowId + cbcDataByProjectNumber { + nodes { + jsonData + id + projectNumber + rowId + sharepointTimestamp + } + } + } + } +`; + +const createCbcMutation = ` + mutation createCbcMutation($input: CreateCbcInput!) { + createCbc(input: $input) { + clientMutationId + cbc { + rowId + } + } + } +`; + +const createCbcDataMutation = ` + mutation createCbcDataMutation($input: CreateCbcDataInput!) { + createCbcData(input: $input) { + clientMutationId + } + } +`; + +const updateCbcDataMutation = ` +mutation updateCbcDataMutation($input: UpdateCbcDataByRowIdInput!) { + updateCbcDataByRowId(input: $input) { + clientMutationId + } +} +`; + const cbcErrorList = []; const readSummary = async (wb, sheet) => { @@ -254,6 +298,67 @@ const LoadCbcProjectData = async (wb, sheet, sharepointTimestamp, req) => { return { error: [e] }; }); + // persist into DB individually + data._jsonData.forEach(async (project) => { + // console.log(project); + const findCbcProject = await performQuery( + findCbcQuery, + { + projectNumber: project.projectNumber, + }, + req + ); + if ( + findCbcProject.data?.cbcByProjectNumber?.cbcDataByProjectNumber?.nodes + .length > 0 + ) { + // update cbc data + await performQuery( + updateCbcDataMutation, + { + input: { + cbcDataPatch: { + jsonData: project, + }, + rowId: + findCbcProject.data.cbcByProjectNumber.cbcDataByProjectNumber + .nodes[0].rowId, + }, + }, + req + ); + } else { + // create cbc + const createCbcResult = await performQuery( + createCbcMutation, + { + input: { + cbc: { + projectNumber: project.projectNumber, + sharepointTimestamp, + }, + }, + }, + req + ); + // create cbc data + await performQuery( + createCbcDataMutation, + { + input: { + cbcData: { + jsonData: project, + projectNumber: project.projectNumber, + cbcId: createCbcResult.data.createCbc.cbc.rowId, + sharepointTimestamp, + }, + }, + }, + req + ); + } + }); + return { ...result, errorLog: cbcErrorList, From f4661694e558f74959cac172b252bdf6af6e2b12 Mon Sep 17 00:00:00 2001 From: Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> Date: Thu, 9 May 2024 09:39:47 -0700 Subject: [PATCH 04/34] chore: use all cbc data (row separated) --- .../AnalystDashboard/AllDashboard.tsx | 29 +++++++++++-------- 1 file changed, 17 insertions(+), 12 deletions(-) diff --git a/app/components/AnalystDashboard/AllDashboard.tsx b/app/components/AnalystDashboard/AllDashboard.tsx index 5c4702be5f..bccd2bd80c 100644 --- a/app/components/AnalystDashboard/AllDashboard.tsx +++ b/app/components/AnalystDashboard/AllDashboard.tsx @@ -178,9 +178,13 @@ const AllDashboardTable: React.FC = ({ query }) => { } } } - allCbcProjects(filter: { archivedAt: { isNull: true } }) { - nodes { - jsonData + allCbcData(filter: { archivedAt: { isNull: true } }) { + edges { + node { + jsonData + projectNumber + cbcId + } } } } @@ -207,7 +211,7 @@ const AllDashboardTable: React.FC = ({ query }) => { }, [queryFragment] ); - const { allApplications, allCbcProjects } = queryFragment; + const { allApplications, allCbcData } = queryFragment; const isLargeUp = useMediaQuery('(min-width:1007px)'); const [isFirstRender, setIsFirstRender] = useState(true); @@ -379,23 +383,24 @@ const AllDashboardTable: React.FC = ({ query }) => { ?.projectTitle || application.node.projectName, })), ...(showCbcProjects - ? allCbcProjects?.nodes[0]?.jsonData?.map((project) => ({ - ...project, + ? allCbcData.edges.map((project) => ({ + ...project.node.jsonData, zones: [], - intakeNumber: project.intake, - projectId: project.projectNumber, + intakeNumber: project.node.jsonData.intake, + projectId: project.node.jsonData.projectNumber, internalStatus: null, - externalStatus: project.projectStatus - ? cbcProjectStatusConverter(project.projectStatus) + externalStatus: project.node.jsonData.projectStatus + ? cbcProjectStatusConverter(project.node.jsonData.projectStatus) : null, packageNumber: null, - organizationName: project.currentOperatingName || null, + organizationName: + project.node.jsonData.currentOperatingName || null, lead: null, isCbcProject: true, })) ?? [] : []), ]; - }, [allApplications, allCbcProjects, showCbcProjects]); + }, [allApplications, allCbcData, showCbcProjects]); const columns = useMemo[]>(() => { const uniqueIntakeNumbers = [ From 72a54a10ea5654925ce5ddb8047ef355211eb149 Mon Sep 17 00:00:00 2001 From: Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> Date: Thu, 9 May 2024 16:09:14 -0700 Subject: [PATCH 05/34] feat: display cbc data page --- app/components/Analyst/CBC/AssignField.tsx | 32 ++ .../Analyst/CBC/CbcAnalystLayout.tsx | 47 +++ .../Analyst/CBC/CbcChangeStatus.tsx | 106 +++++++ app/components/Analyst/CBC/CbcForm.tsx | 138 +++++++++ app/components/Analyst/CBC/CbcHeader.tsx | 136 +++++++++ .../Analyst/CBC/NavigationSidebar.tsx | 65 ++++ app/formSchema/analyst/cbc/eventsAndDates.ts | 54 ++++ app/formSchema/analyst/cbc/funding.ts | 31 ++ .../analyst/cbc/locationsAndCounts.ts | 39 +++ app/formSchema/analyst/cbc/miscellaneous.ts | 35 +++ .../analyst/cbc/projectDataReviews.ts | 23 ++ app/formSchema/analyst/cbc/projectType.ts | 40 +++ app/formSchema/analyst/cbc/tombstone.ts | 67 ++++ .../uiSchema/cbc/eventsAndDatesUiSchema.ts | 38 +++ .../uiSchema/cbc/fundingUiSchema.ts | 23 ++ .../cbc/locationsAndCountsUiSchema.ts | 29 ++ .../uiSchema/cbc/miscellaneousUiSchema.ts | 26 ++ .../cbc/projectDataReviewsUiSchema.ts | 16 + .../uiSchema/cbc/projectTypeUiSchema.ts | 32 ++ .../uiSchema/cbc/tombstoneUiSchema.ts | 48 +++ app/pages/analyst/cbc/[cbcId].tsx | 285 ++++++++++++++++++ app/utils/isRouteAuthorized.ts | 5 + 22 files changed, 1315 insertions(+) create mode 100644 app/components/Analyst/CBC/AssignField.tsx create mode 100644 app/components/Analyst/CBC/CbcAnalystLayout.tsx create mode 100644 app/components/Analyst/CBC/CbcChangeStatus.tsx create mode 100644 app/components/Analyst/CBC/CbcForm.tsx create mode 100644 app/components/Analyst/CBC/CbcHeader.tsx create mode 100644 app/components/Analyst/CBC/NavigationSidebar.tsx create mode 100644 app/formSchema/analyst/cbc/eventsAndDates.ts create mode 100644 app/formSchema/analyst/cbc/funding.ts create mode 100644 app/formSchema/analyst/cbc/locationsAndCounts.ts create mode 100644 app/formSchema/analyst/cbc/miscellaneous.ts create mode 100644 app/formSchema/analyst/cbc/projectDataReviews.ts create mode 100644 app/formSchema/analyst/cbc/projectType.ts create mode 100644 app/formSchema/analyst/cbc/tombstone.ts create mode 100644 app/formSchema/uiSchema/cbc/eventsAndDatesUiSchema.ts create mode 100644 app/formSchema/uiSchema/cbc/fundingUiSchema.ts create mode 100644 app/formSchema/uiSchema/cbc/locationsAndCountsUiSchema.ts create mode 100644 app/formSchema/uiSchema/cbc/miscellaneousUiSchema.ts create mode 100644 app/formSchema/uiSchema/cbc/projectDataReviewsUiSchema.ts create mode 100644 app/formSchema/uiSchema/cbc/projectTypeUiSchema.ts create mode 100644 app/formSchema/uiSchema/cbc/tombstoneUiSchema.ts create mode 100644 app/pages/analyst/cbc/[cbcId].tsx diff --git a/app/components/Analyst/CBC/AssignField.tsx b/app/components/Analyst/CBC/AssignField.tsx new file mode 100644 index 0000000000..fa435740ee --- /dev/null +++ b/app/components/Analyst/CBC/AssignField.tsx @@ -0,0 +1,32 @@ +// import { graphql, useFragment } from 'react-relay'; +import styled from 'styled-components'; + +const StyledDropdown = styled.select` + text-overflow: ellipsis; + color: ${(props) => props.theme.color.links}; + background-color: ${(props) => props.theme.color.white}; + border: 1px solid ${(props) => props.theme.color.borderGrey}; + padding: 0 8px; + max-width: 100%; + border-radius: 4px; +`; + +const AssignField = ({ fieldValue, fieldName, fieldOptions }) => { + return ( + console.log(e.target.value)} + data-testid={`assign-${fieldName}`} + > + {fieldOptions.map((option) => { + return ( + + ); + })} + + ); +}; + +export default AssignField; diff --git a/app/components/Analyst/CBC/CbcAnalystLayout.tsx b/app/components/Analyst/CBC/CbcAnalystLayout.tsx new file mode 100644 index 0000000000..9737b9e8ee --- /dev/null +++ b/app/components/Analyst/CBC/CbcAnalystLayout.tsx @@ -0,0 +1,47 @@ +import styled from 'styled-components'; +import { graphql, useFragment } from 'react-relay'; +import FormDiv from 'components/FormDiv'; +import NavigationSidebar from './NavigationSidebar'; +import CbcHeader from './CbcHeader'; + +const StyledContainer = styled.div` + display: flex; + flex-direction: column; + margin: 0 auto; + width: 100%; +`; + +const StyledFlex = styled.div` + display: flex; +`; + +const StyledFormDiv = styled(FormDiv)` + max-width: 100%; +`; + +interface Props { + children: JSX.Element[] | JSX.Element; + query: any; +} + +const CbcAnalystLayout: React.FC = ({ children, query }) => { + const queryFragment = useFragment( + graphql` + fragment CbcAnalystLayout_query on Query { + ...CbcHeader_query + } + `, + query + ); + return ( + + + + + {children} + + + ); +}; + +export default CbcAnalystLayout; diff --git a/app/components/Analyst/CBC/CbcChangeStatus.tsx b/app/components/Analyst/CBC/CbcChangeStatus.tsx new file mode 100644 index 0000000000..acd594eede --- /dev/null +++ b/app/components/Analyst/CBC/CbcChangeStatus.tsx @@ -0,0 +1,106 @@ +import { graphql, useFragment } from 'react-relay'; +import styled from 'styled-components'; +import statusStyles from 'data/statusStyles'; + +interface DropdownProps { + statusStyles: { + primary: string; + backgroundColor: string; + pillWidth: string; + }; +} + +const StyledDropdown = styled.select` + color: ${(props) => props.statusStyles?.primary}; + border: none; + border-radius: 16px; + appearance: none; + padding: 6px 12px; + height: 32px; + width: ${(props) => props.statusStyles?.pillWidth}; + background: ${(props) => props.statusStyles?.backgroundColor} + url("data:image/svg+xml;utf8, + ") + no-repeat; + background-position: right 5px top 5px; + + :focus { + outline: none; + } +`; + +const StyledOption = styled.option` + color: ${(props) => props.theme.color.text}; + background-color: ${(props) => props.theme.color.white}; +`; + +const getStatus = (status) => { + if (status === 'Conditionally Approved') { + return 'conditionally_approved'; + } + if (status === 'Reporting Complete') { + return 'complete'; + } + if (status === 'Agreement Signed') { + return 'approved'; + } + return status; +}; + +interface Props { + cbc: any; + status: string; + statusList: any; +} + +const CbcChangeStatus: React.FC = ({ cbc, status, statusList }) => { + const queryFragment = useFragment( + graphql` + fragment CbcChangeStatus_query on Cbc { + cbcDataByCbcId { + edges { + node { + jsonData + sharepointTimestamp + rowId + projectNumber + updatedAt + updatedBy + } + } + } + } + `, + cbc + ); + console.log(queryFragment); + console.log('status', status); + console.log('converted status', getStatus(status)); + + return ( + { + // eslint-disable-next-line no-void + void (() => console.log(e))(); + }} // Use draft status for colour so it changes as user selects it + statusStyles={statusStyles[getStatus(status)]} + value={getStatus(status)} + id="change-status" + > + {statusList?.map((statusType) => { + const { description, name, id } = statusType; + + return ( + + {description} + + ); + })} + + ); +}; + +export default CbcChangeStatus; diff --git a/app/components/Analyst/CBC/CbcForm.tsx b/app/components/Analyst/CBC/CbcForm.tsx new file mode 100644 index 0000000000..082028e58d --- /dev/null +++ b/app/components/Analyst/CBC/CbcForm.tsx @@ -0,0 +1,138 @@ +/* eslint-disable @typescript-eslint/no-unused-vars */ +import styled from 'styled-components'; +import { FormBase } from 'components/Form'; +import CircularProgress from '@mui/material/CircularProgress'; +import { RJSFSchema } from '@rjsf/utils'; +import ProjectTheme from '../Project/ProjectTheme'; + +const LoadingContainer = styled.div` + display: block; + margin-right: 200px; + margin-left: 200px; + & > * { + margin-bottom: 16px; + } +`; + +const LoadingItem = styled.div` + display: flex; + align-items: center; + justify-content: center; +`; + +interface Props { + additionalContext?: any; + before?: React.ReactNode; + children?: React.ReactNode; + formAnimationHeight?: number; + formAnimationHeightOffset?: number; + formData: any; + formHeader?: string | React.ReactNode | JSX.Element; + handleChange: any; + showEditBtn?: boolean; + /** The hidden submit button's ref, used to enforce validation on the form + * (the red-outline we see on widgets) */ + hiddenSubmitRef?: any; + isExpanded?: boolean; + isFormEditMode: boolean; + isFormAnimated?: boolean; + liveValidate?: boolean; + onSubmit: any; + resetFormData: any; + saveBtnText?: string; + saveBtnDisabled?: boolean; + cancelBtnDisabled?: boolean; + schema: RJSFSchema; + setFormData?: any; + setIsFormEditMode: any; + submitting?: boolean; + submittingText?: string; + theme?: any; + title: string; + uiSchema?: any; + saveDataTestId?: string; + validate?: any; +} + +const CbcForm: React.FC = ({ + additionalContext, + before, + children, + formData, + formHeader, + handleChange, + hiddenSubmitRef, + showEditBtn = true, + isExpanded = false, + isFormAnimated, + isFormEditMode, + liveValidate, + onSubmit, + resetFormData, + saveBtnDisabled, + cancelBtnDisabled, + saveBtnText, + schema, + setFormData = () => {}, + setIsFormEditMode, + submitting = false, + submittingText, + theme, + title, + uiSchema, + validate, + saveDataTestId = 'save', + ...rest +}) => { + return ( + <> + {before} + {submitting && ( + + + + + +

{`${submittingText}`}

+
+
+ )} + {/* We only show the readonly form if there are no children */} + {!children && ( +
+ + {hiddenSubmitRef ? ( + + ) : ( + true + )} + +
+ )} + {children} + + ); +}; +export default CbcForm; diff --git a/app/components/Analyst/CBC/CbcHeader.tsx b/app/components/Analyst/CBC/CbcHeader.tsx new file mode 100644 index 0000000000..a62a6b7d95 --- /dev/null +++ b/app/components/Analyst/CBC/CbcHeader.tsx @@ -0,0 +1,136 @@ +import styled from 'styled-components'; +import { graphql, useFragment } from 'react-relay'; +import CbcChangeStatus from './CbcChangeStatus'; +import AssignField from './AssignField'; + +const StyledCallout = styled.div` + margin-bottom: 0.5em; + display: flex; + justify-content: space-between; + padding: 8px 12px; + padding-bottom: 0; + border-left: 4px solid ${(props) => props.theme.color.links}; + width: 100%; +`; + +const StyledH1 = styled.h1` + font-size: 24px; + margin: 8px 0; +`; + +const StyledH2 = styled.h2` + margin: 0; + font-size: 16px; +`; + +const StyledProjectInfo = styled.div` + width: 100%; +`; + +const StyledDiv = styled.div` + display: grid; + height: fit-content; +`; + +const StyledLabel = styled.label` + min-width: 130px; + color: ${(props) => props.theme.color.components}; + padding-right: 1rem; + direction: rtl; +`; + +const StyledItem = styled.div` + display: flex; + align-items: center; + margin: 8px 0 0 0; +`; + +const StyledAssign = styled(StyledItem)` + margin: 8px 0 0 0; +`; + +interface Props { + query: any; +} + +const CbcHeader: React.FC = ({ query }) => { + const queryFragment = useFragment( + graphql` + fragment CbcHeader_query on Query { + cbcByRowId(rowId: $rowId) { + projectNumber + rowId + sharepointTimestamp + cbcDataByCbcId { + edges { + node { + jsonData + sharepointTimestamp + rowId + projectNumber + updatedAt + updatedBy + } + } + } + ...CbcChangeStatus_query + } + } + `, + query + ); + + const { cbcByRowId } = queryFragment; + const { projectNumber, cbcDataByCbcId } = cbcByRowId; + + const { edges } = cbcDataByCbcId; + const cbcData = edges[0].node; + const { jsonData } = cbcData; + const status = jsonData.projectStatus; + + return ( + + + {projectNumber} + {jsonData.projectTitle} + {jsonData.applicantContractualName} + + + + Status + + + + Phase + + + + Intake + + + + + ); +}; + +export default CbcHeader; diff --git a/app/components/Analyst/CBC/NavigationSidebar.tsx b/app/components/Analyst/CBC/NavigationSidebar.tsx new file mode 100644 index 0000000000..1e6dc909d9 --- /dev/null +++ b/app/components/Analyst/CBC/NavigationSidebar.tsx @@ -0,0 +1,65 @@ +import styled from 'styled-components'; +import { useRouter } from 'next/router'; +import cookie from 'js-cookie'; +import { + faChevronLeft, + faClipboardList, + faClockRotateLeft, +} from '@fortawesome/free-solid-svg-icons'; +import NavItem from '../NavItem'; + +const StyledAside = styled.aside` + min-height: 100%; +`; + +const StyledNav = styled.nav` + position: sticky; + top: 40px; +`; + +const StyledUpperSection = styled.section` + border-bottom: 1px solid #d6d6d6; + color: ${(props) => props.theme.color.navigationBlue}; +`; + +const NavigationSidebar = () => { + const router = useRouter(); + const { asPath } = router; + const { cbcId } = router.query; + const assessmentLastVisited = cookie.get('assessment_last_visited') || null; + + return ( + + + + + +
+ + +
+
+
+ ); +}; + +export default NavigationSidebar; diff --git a/app/formSchema/analyst/cbc/eventsAndDates.ts b/app/formSchema/analyst/cbc/eventsAndDates.ts new file mode 100644 index 0000000000..77964a3188 --- /dev/null +++ b/app/formSchema/analyst/cbc/eventsAndDates.ts @@ -0,0 +1,54 @@ +import { RJSFSchema } from '@rjsf/utils'; + +const eventsAndDates: RJSFSchema = { + title: 'Events and dates', + description: '', + type: 'object', + properties: { + nditConditionalApprovalLetterSent: { + type: 'string', + title: 'NDIT Conditional Approval Letter Sent', + enum: [null, 'Yes', 'No'], + }, + bindingAgreementSignedNditRecipient: { + type: 'string', + title: 'Binding Agreement Signed - NDIT Recipient', + enum: [null, 'Yes', 'No'], + }, + announcedByProvince: { + type: 'string', + title: 'Announced by Province', + enum: [null, 'Yes', 'No'], + }, + dateApplicationReceived: { + type: 'string', + title: 'Date Application Received', + }, + dateConditionallyApproved: { + type: 'string', + title: 'Date Conditionally Approved', + }, + dateAgreementSigned: { + type: 'string', + title: 'Date Agreement Signed', + }, + proposedStartDate: { + type: 'string', + title: 'Proposed Start Date', + }, + proposedCompletionDate: { + type: 'string', + title: 'Proposed Completion Date', + }, + reportingCompletionDate: { + type: 'string', + title: 'Reporting Completion Date', + }, + dateAnnounced: { + type: 'string', + title: 'Date Announced', + }, + }, +}; + +export default eventsAndDates; diff --git a/app/formSchema/analyst/cbc/funding.ts b/app/formSchema/analyst/cbc/funding.ts new file mode 100644 index 0000000000..fb18abb54f --- /dev/null +++ b/app/formSchema/analyst/cbc/funding.ts @@ -0,0 +1,31 @@ +import { RJSFSchema } from '@rjsf/utils'; + +const funding: RJSFSchema = { + title: 'Funding', + description: '', + type: 'object', + properties: { + bcFundingRequest: { + type: 'number', + title: 'BC Funding Request', + }, + federalFunding: { + type: 'number', + title: 'Federal Funding', + }, + applicantAmount: { + type: 'number', + title: 'Applicant Amount', + }, + otherFunding: { + type: 'number', + title: 'Other Amount', + }, + totalProjectBudget: { + type: 'number', + title: 'Total Project Budget', + }, + }, +}; + +export default funding; diff --git a/app/formSchema/analyst/cbc/locationsAndCounts.ts b/app/formSchema/analyst/cbc/locationsAndCounts.ts new file mode 100644 index 0000000000..21904fdd55 --- /dev/null +++ b/app/formSchema/analyst/cbc/locationsAndCounts.ts @@ -0,0 +1,39 @@ +import { RJSFSchema } from '@rjsf/utils'; + +const locationsAndCounts: RJSFSchema = { + title: 'Locations and counts', + description: '', + type: 'object', + properties: { + projectLocations: { + type: 'string', + title: 'Project Locations', + }, + communitiesAndLocalesCount: { + type: 'number', + title: 'Communities and locales count', + }, + indigenousCommunities: { + type: 'number', + title: 'Indigenous Communities', + }, + householdCount: { + type: 'number', + title: 'Household count', + }, + transportKm: { + type: 'number', + title: 'Transport km', + }, + highwayKm: { + type: 'number', + title: 'Highway km', + }, + restAreas: { + type: 'number', + title: 'Rest areas', + }, + }, +}; + +export default locationsAndCounts; diff --git a/app/formSchema/analyst/cbc/miscellaneous.ts b/app/formSchema/analyst/cbc/miscellaneous.ts new file mode 100644 index 0000000000..f18dbb62a3 --- /dev/null +++ b/app/formSchema/analyst/cbc/miscellaneous.ts @@ -0,0 +1,35 @@ +import { RJSFSchema } from '@rjsf/utils'; + +const miscellaneous: RJSFSchema = { + title: 'Miscellaneous', + description: '', + type: 'object', + properties: { + projectMilestoneCompleted: { + type: 'number', + title: '% Project Milestone Completed', + }, + constructionCompletedOn: { + type: 'string', + title: 'Construction Completed on', + }, + milestoneComments: { + type: 'string', + title: 'Milestone Comments', + }, + primaryNewsRelease: { + type: 'string', + title: 'Primary News Release', + }, + secondaryNewsRelease: { + type: 'string', + title: 'Secondary News Release', + }, + notes: { + type: 'string', + title: 'Notes', + }, + }, +}; + +export default miscellaneous; diff --git a/app/formSchema/analyst/cbc/projectDataReviews.ts b/app/formSchema/analyst/cbc/projectDataReviews.ts new file mode 100644 index 0000000000..f6745d6669 --- /dev/null +++ b/app/formSchema/analyst/cbc/projectDataReviews.ts @@ -0,0 +1,23 @@ +import { RJSFSchema } from '@rjsf/utils'; + +const projectDataReviews: RJSFSchema = { + title: 'Project data reviews', + description: '', + type: 'object', + properties: { + locked: { + type: 'boolean', + title: 'Locked', + }, + lastReviewed: { + type: 'string', + title: 'Last Reviewed', + }, + reviewNotes: { + type: 'string', + title: 'Review Notes', + }, + }, +}; + +export default projectDataReviews; diff --git a/app/formSchema/analyst/cbc/projectType.ts b/app/formSchema/analyst/cbc/projectType.ts new file mode 100644 index 0000000000..173963cd0c --- /dev/null +++ b/app/formSchema/analyst/cbc/projectType.ts @@ -0,0 +1,40 @@ +import { RJSFSchema } from '@rjsf/utils'; + +const projectType: RJSFSchema = { + title: 'Project type', + description: '', + type: 'object', + properties: { + projectType: { + type: 'string', + title: 'Project Type', + enum: [null, 'Transport', 'Highway', 'Last Mile'], + }, + transportProjectType: { + type: 'string', + title: 'Transport Project Type', + enum: [null, 'Fibre', 'Microwave'], + }, + highwayProjectType: { + type: 'string', + title: 'Highway Project Type', + }, + lastMileProjectType: { + type: 'string', + title: 'Last Mile Project Type', + enum: [null, 'Fibre', 'Coaxial', 'LTE'], + }, + lastMileMinimumSpeed: { + type: 'string', + title: 'Last Mile Minimum Speed', + enum: [null, 25, 50], + }, + connectedCoastNetworkDependant: { + type: 'string', + title: 'Connected Coast Network Dependant', + enum: [null, 'Yes', 'No'], + }, + }, +}; + +export default projectType; diff --git a/app/formSchema/analyst/cbc/tombstone.ts b/app/formSchema/analyst/cbc/tombstone.ts new file mode 100644 index 0000000000..1c9b8558dd --- /dev/null +++ b/app/formSchema/analyst/cbc/tombstone.ts @@ -0,0 +1,67 @@ +import { RJSFSchema } from '@rjsf/utils'; + +const cbcTombstone: RJSFSchema = { + title: 'Tombstone', + description: '', + type: 'object', + properties: { + projectNumber: { + type: 'string', + title: 'Project Number', + }, + originalProjectNumber: { + type: 'string', + title: 'Original Project Number', + }, + phase: { + type: 'string', + title: 'Project Phase', + enum: ['1', '2', '3', '4', '4b'], + }, + intake: { + type: 'string', + title: 'Intake', + enum: [null, '1', '2', '3', '4', '5', '6'], + }, + projectStatus: { + type: 'string', + title: 'Project Status', + }, + changeRequestPending: { + type: 'boolean', + title: 'Change Request Pending', + }, + projectTitle: { + type: 'string', + title: 'Project Title', + }, + projectDescription: { + type: 'string', + title: 'Project Description', + }, + applicantContractualName: { + type: 'string', + title: 'Applicant Contractual Name', + }, + currentOperatingName: { + type: 'string', + title: 'Current Operating Name', + }, + eightThirtyMillionFunding: { + type: 'string', + title: '$8.30 Million Funding', + enum: [null, 'Yes', 'No'], + }, + federalFundingSource: { + type: 'string', + title: 'Federal Funding Source', + enum: [null, 'CRTC', 'CTI', 'UBF', 'UBF RRS'], + }, + federalProjectNumber: { + type: 'string', + title: 'Federal Project Number', + }, + }, +}; + +export default cbcTombstone; diff --git a/app/formSchema/uiSchema/cbc/eventsAndDatesUiSchema.ts b/app/formSchema/uiSchema/cbc/eventsAndDatesUiSchema.ts new file mode 100644 index 0000000000..355f77cbd3 --- /dev/null +++ b/app/formSchema/uiSchema/cbc/eventsAndDatesUiSchema.ts @@ -0,0 +1,38 @@ +const eventsAndDatesUiSchema = { + 'ui:field': 'SectionField', + 'ui:options': { + dividers: true, + }, + nditConditionalApprovalLetterSent: { + 'ui:widget': 'TextAreaWidget', + }, + bindingAgreementSignedNditRecipient: { + 'ui:widget': 'TextAreaWidget', + }, + announcedByProvince: { + 'ui:widget': 'TextAreaWidget', + }, + dateApplicationReceived: { + 'ui:widget': 'DatePickerWidget', + }, + dateConditionallyApprovedApproved: { + 'ui:widget': 'DatePickerWidget', + }, + dateAgreementSigned: { + 'ui:widget': 'DatePickerWidget', + }, + proposedStartDate: { + 'ui:widget': 'DatePickerWidget', + }, + proposedCompletionDate: { + 'ui:widget': 'DatePickerWidget', + }, + reportingCompletionDate: { + 'ui:widget': 'DatePickerWidget', + }, + dateAnnounced: { + 'ui:widget': 'DatePickerWidget', + }, +}; + +export default eventsAndDatesUiSchema; diff --git a/app/formSchema/uiSchema/cbc/fundingUiSchema.ts b/app/formSchema/uiSchema/cbc/fundingUiSchema.ts new file mode 100644 index 0000000000..5db76dbb04 --- /dev/null +++ b/app/formSchema/uiSchema/cbc/fundingUiSchema.ts @@ -0,0 +1,23 @@ +const fundingUiSchema = { + 'ui:field': 'SectionField', + 'ui:options': { + dividers: true, + }, + bcFundingRequest: { + 'ui:widget': 'MoneyWidget', + }, + federalFunding: { + 'ui:widget': 'MoneyWidget', + }, + applicantAmount: { + 'ui:widget': 'MoneyWidget', + }, + otherFunding: { + 'ui:widget': 'MoneyWidget', + }, + totalProjectBudget: { + 'ui:widget': 'MoneyWidget', + }, +}; + +export default fundingUiSchema; diff --git a/app/formSchema/uiSchema/cbc/locationsAndCountsUiSchema.ts b/app/formSchema/uiSchema/cbc/locationsAndCountsUiSchema.ts new file mode 100644 index 0000000000..e70aae0403 --- /dev/null +++ b/app/formSchema/uiSchema/cbc/locationsAndCountsUiSchema.ts @@ -0,0 +1,29 @@ +const locationsAndCountsUiSchema = { + 'ui:field': 'SectionField', + 'ui:options': { + dividers: true, + }, + projectLocations: { + 'ui:widget': 'TextAreaWidget', + }, + communitiesAndLocalesCount: { + 'ui:widget': 'NumberWidget', + }, + indigenousCommunities: { + 'ui:widget': 'NumberWidget', + }, + householdCount: { + 'ui:widget': 'NumberWidget', + }, + transportKm: { + 'ui:widget': 'NumberWidget', + }, + highwayKm: { + 'ui:widget': 'NumberWidget', + }, + restAreas: { + 'ui:widget': 'NumberWidget', + }, +}; + +export default locationsAndCountsUiSchema; diff --git a/app/formSchema/uiSchema/cbc/miscellaneousUiSchema.ts b/app/formSchema/uiSchema/cbc/miscellaneousUiSchema.ts new file mode 100644 index 0000000000..ac163b4e25 --- /dev/null +++ b/app/formSchema/uiSchema/cbc/miscellaneousUiSchema.ts @@ -0,0 +1,26 @@ +const miscellaneousUiSchema = { + 'ui:field': 'SectionField', + 'ui:options': { + dividers: true, + }, + projectMilestoneCompleted: { + 'ui:widget': 'NumberWidget', + }, + constructionCompletedOn: { + 'ui:widget': 'DatePickerWidget', + }, + milestoneComments: { + 'ui:widget': 'TextAreaWidget', + }, + primaryNewsRelease: { + 'ui:widget': 'TextAreaWidget', + }, + secondaryNewsRelease: { + 'ui:widget': 'TextAreaWidget', + }, + notes: { + 'ui:widget': 'TextAreaWidget', + }, +}; + +export default miscellaneousUiSchema; diff --git a/app/formSchema/uiSchema/cbc/projectDataReviewsUiSchema.ts b/app/formSchema/uiSchema/cbc/projectDataReviewsUiSchema.ts new file mode 100644 index 0000000000..f53f2c1294 --- /dev/null +++ b/app/formSchema/uiSchema/cbc/projectDataReviewsUiSchema.ts @@ -0,0 +1,16 @@ +const projectDataReviewsUiSchema = { + 'ui:field': 'SectionField', + 'ui:options': { + dividers: true, + }, + locked: { + 'ui:widget': 'TextAreaWidget', + }, + lastReviewed: { + 'ui:widget': 'DatePickerWidget', + }, + reviewNotes: { + 'ui:widget': 'TextAreaWidget', + }, +}; +export default projectDataReviewsUiSchema; diff --git a/app/formSchema/uiSchema/cbc/projectTypeUiSchema.ts b/app/formSchema/uiSchema/cbc/projectTypeUiSchema.ts new file mode 100644 index 0000000000..aa02ca3860 --- /dev/null +++ b/app/formSchema/uiSchema/cbc/projectTypeUiSchema.ts @@ -0,0 +1,32 @@ +const projectTypeUiSchema = { + 'ui:field': 'SectionField', + 'ui:options': { + dividers: true, + }, + projectType: { + 'ui:widget': 'SelectWidget', + 'ui:placeholder': 'Select a project type', + }, + transportProjectType: { + 'ui:widget': 'SelectWidget', + 'ui:placeholder': 'Select a transport project type', + }, + highwayProjectType: { + 'ui:widget': 'SelectWidget', + 'ui:placeholder': 'Select a highway project type', + }, + lastMileProjectType: { + 'ui:widget': 'SelectWidget', + 'ui:placeholder': 'Select a last mile project type', + }, + lastMileMinimumSpeed: { + 'ui:widget': 'SelectWidget', + 'ui:placeholder': 'Select a last mile minimum speed', + }, + connectedCoastNetworkDependant: { + 'ui:widget': 'SelectWidget', + 'ui:placeholder': 'Select a connected coast network dependant', + }, +}; + +export default projectTypeUiSchema; diff --git a/app/formSchema/uiSchema/cbc/tombstoneUiSchema.ts b/app/formSchema/uiSchema/cbc/tombstoneUiSchema.ts new file mode 100644 index 0000000000..a944473f14 --- /dev/null +++ b/app/formSchema/uiSchema/cbc/tombstoneUiSchema.ts @@ -0,0 +1,48 @@ +const tombstoneUiSchema = { + // 'ui:order': ['projectTitle', 'projectNumber', 'projectPhase'], + 'ui:field': 'SectionField', + 'ui:options': { + dividers: true, + }, + projectTitle: { + 'ui:widget': 'TextAreaWidget', + }, + projectNumber: { + 'ui:widget': 'TextAreaWidget', + }, + phase: { + 'ui:widget': 'SelectWidget', + 'ui:placeholder': 'Select a phase', + }, + intake: { + 'ui:widget': 'SelectWidget', + 'ui:placeholder': 'Select an intake', + }, + projectStatus: { + 'ui:widget': 'SelectWidget', + 'ui:placeholder': 'Select a status', + }, + changeRequestPending: { + 'ui:widget': 'CheckboxWidget', + }, + projectDescription: { + 'ui:widget': 'TextAreaWidget', + }, + applicantContractualName: { + 'ui:widget': 'TextAreaWidget', + }, + currentOperatingName: { + 'ui:widget': 'TextAreaWidget', + }, + eightThirtyMillionFunding: { + 'ui:widget': 'TextAreaWidget', + }, + federalFundingSource: { + 'ui:widget': 'TextAreaWidget', + }, + federalProjectNumber: { + 'ui:widget': 'TextAreaWidget', + }, +}; + +export default tombstoneUiSchema; diff --git a/app/pages/analyst/cbc/[cbcId].tsx b/app/pages/analyst/cbc/[cbcId].tsx new file mode 100644 index 0000000000..1b87550ae9 --- /dev/null +++ b/app/pages/analyst/cbc/[cbcId].tsx @@ -0,0 +1,285 @@ +import { graphql } from 'react-relay'; +import { usePreloadedQuery } from 'react-relay/hooks'; +import { withRelay, RelayProps } from 'relay-nextjs'; +import { CbcIdQuery } from '__generated__/CbcIdQuery.graphql'; +import defaultRelayOptions from 'lib/relay/withRelayOptions'; +import Layout from 'components/Layout'; +import CbcAnalystLayout from 'components/Analyst/CBC/CbcAnalystLayout'; +import CbcForm from 'components/Analyst/CBC/CbcForm'; +import styled from 'styled-components'; +import ReviewTheme from 'components/Review/ReviewTheme'; +import cbcTombstone from 'formSchema/analyst/cbc/tombstone'; +import tombstoneUiSchema from 'formSchema/uiSchema/cbc/tombstoneUiSchema'; +import projectType from 'formSchema/analyst/cbc/projectType'; +import projectTypeUiSchema from 'formSchema/uiSchema/cbc/projectTypeUiSchema'; +import locationsAndCounts from 'formSchema/analyst/cbc/locationsAndCounts'; +import locationsAndCountsUiSchema from 'formSchema/uiSchema/cbc/locationsAndCountsUiSchema'; +import funding from 'formSchema/analyst/cbc/funding'; +import fundingUiSchema from 'formSchema/uiSchema/cbc/fundingUiSchema'; +import eventsAndDates from 'formSchema/analyst/cbc/eventsAndDates'; +import eventsAndDatesUiSchema from 'formSchema/uiSchema/cbc/eventsAndDatesUiSchema'; +import miscellaneous from 'formSchema/analyst/cbc/miscellaneous'; +import miscellaneousUiSchema from 'formSchema/uiSchema/cbc/miscellaneousUiSchema'; +import projectDataReviews from 'formSchema/analyst/cbc/projectDataReviews'; +import projectDataReviewsUiSchema from 'formSchema/uiSchema/cbc/projectDataReviewsUiSchema'; + +const getCbcQuery = graphql` + query CbcIdQuery($rowId: Int!) { + cbcByRowId(rowId: $rowId) { + projectNumber + rowId + sharepointTimestamp + cbcDataByCbcId { + edges { + node { + jsonData + sharepointTimestamp + rowId + projectNumber + updatedAt + updatedBy + } + } + } + } + session { + sub + } + ...CbcAnalystLayout_query + } +`; + +const Cbc = ({ + preloadedQuery, +}: RelayProps, CbcIdQuery>) => { + const query = usePreloadedQuery(getCbcQuery, preloadedQuery); + const { cbcByRowId, session } = query; + const { cbcDataByCbcId } = cbcByRowId; + const { edges } = cbcDataByCbcId; + const cbcData = edges[0].node; + const { jsonData } = cbcData; + + const StyledCbcForm = styled(CbcForm)` + margin-bottom: 0px; + `; + + const StyledButton = styled('button')` + color: ${(props) => props.theme.color.links}; + `; + + const RightAlignText = styled('div')` + padding-top: 20px; + text-align: right; + padding-bottom: 4px; + `; + + return ( + + + + { + console.log('Expand all'); + }} + type="button" + > + Expand all + + {' | '} + { + console.log('Collapse all'); + }} + type="button" + > + Collapse all + + {' | '} + { + console.log('Quick edit'); + }} + type="button" + > + Quick edit + + + <> + { + console.log(e); + }} + isExpanded + isFormEditMode={false} + title="Tombstone" + schema={cbcTombstone} + theme={ReviewTheme} + uiSchema={tombstoneUiSchema} + resetFormData={() => { + console.log('handleReset'); + }} + onSubmit={() => { + console.log('handleSubmit'); + }} + setIsFormEditMode={() => { + console.log('setIsFormEditMode'); + }} + additionalContext={{}} + isFormAnimated={false} + /> + { + console.log(e); + }} + isExpanded + isFormEditMode={false} + title="Project type" + schema={projectType} + theme={ReviewTheme} + uiSchema={projectTypeUiSchema} + resetFormData={() => { + console.log('handleReset'); + }} + onSubmit={() => { + console.log('handleSubmit'); + }} + setIsFormEditMode={() => { + console.log('setIsFormEditMode'); + }} + additionalContext={{}} + isFormAnimated={false} + /> + { + console.log(e); + }} + isExpanded + isFormEditMode={false} + title="Locations and counts" + schema={locationsAndCounts} + theme={ReviewTheme} + uiSchema={locationsAndCountsUiSchema} + resetFormData={() => { + console.log('handleReset'); + }} + onSubmit={() => { + console.log('handleSubmit'); + }} + setIsFormEditMode={() => { + console.log('setIsFormEditMode'); + }} + additionalContext={{}} + isFormAnimated={false} + /> + { + console.log(e); + }} + isExpanded + isFormEditMode={false} + title="Locations and counts" + schema={funding} + theme={ReviewTheme} + uiSchema={fundingUiSchema} + resetFormData={() => { + console.log('handleReset'); + }} + onSubmit={() => { + console.log('handleSubmit'); + }} + setIsFormEditMode={() => { + console.log('setIsFormEditMode'); + }} + additionalContext={{}} + isFormAnimated={false} + /> + { + console.log(e); + }} + isExpanded + isFormEditMode={false} + title="Locations and counts" + schema={eventsAndDates} + theme={ReviewTheme} + uiSchema={eventsAndDatesUiSchema} + resetFormData={() => { + console.log('handleReset'); + }} + onSubmit={() => { + console.log('handleSubmit'); + }} + setIsFormEditMode={() => { + console.log('setIsFormEditMode'); + }} + additionalContext={{}} + isFormAnimated={false} + /> + { + console.log(e); + }} + isExpanded + isFormEditMode={false} + title="Locations and counts" + schema={miscellaneous} + theme={ReviewTheme} + uiSchema={miscellaneousUiSchema} + resetFormData={() => { + console.log('handleReset'); + }} + onSubmit={() => { + console.log('handleSubmit'); + }} + setIsFormEditMode={() => { + console.log('setIsFormEditMode'); + }} + additionalContext={{}} + isFormAnimated={false} + /> + { + console.log(e); + }} + isExpanded + isFormEditMode={false} + title="Locations and counts" + schema={projectDataReviews} + theme={ReviewTheme} + uiSchema={projectDataReviewsUiSchema} + resetFormData={() => { + console.log('handleReset'); + }} + onSubmit={() => { + console.log('handleSubmit'); + }} + setIsFormEditMode={() => { + console.log('setIsFormEditMode'); + }} + additionalContext={{}} + isFormAnimated={false} + /> + + + + ); +}; + +export const withRelayOptions = { + ...defaultRelayOptions, + + variablesFromContext: (ctx) => { + return { + rowId: parseInt(ctx.query.cbcId.toString(), 10), + }; + }, +}; + +export default withRelay(Cbc, getCbcQuery, withRelayOptions); diff --git a/app/utils/isRouteAuthorized.ts b/app/utils/isRouteAuthorized.ts index 1221329626..d141bb21e6 100644 --- a/app/utils/isRouteAuthorized.ts +++ b/app/utils/isRouteAuthorized.ts @@ -15,6 +15,11 @@ const pagesAuthorization = [ isProtected: true, allowedRoles: ['ccbc_admin', 'ccbc_analyst'], }, + { + routePaths: ['/analyst/cbc/(.*)'], + isProtected: true, + allowedRoles: ['ccbc_admin', 'ccbc_analyst'], + }, { routePaths: ['/analyst/dashboard'], isProtected: true, From 7266751f2f7c14d35e341e679b26377bbaa49483 Mon Sep 17 00:00:00 2001 From: Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> Date: Thu, 9 May 2024 16:15:59 -0700 Subject: [PATCH 06/34] chore: add expand and collapse all --- app/pages/analyst/cbc/[cbcId].tsx | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/app/pages/analyst/cbc/[cbcId].tsx b/app/pages/analyst/cbc/[cbcId].tsx index 1b87550ae9..0a252641c2 100644 --- a/app/pages/analyst/cbc/[cbcId].tsx +++ b/app/pages/analyst/cbc/[cbcId].tsx @@ -22,6 +22,7 @@ import miscellaneous from 'formSchema/analyst/cbc/miscellaneous'; import miscellaneousUiSchema from 'formSchema/uiSchema/cbc/miscellaneousUiSchema'; import projectDataReviews from 'formSchema/analyst/cbc/projectDataReviews'; import projectDataReviewsUiSchema from 'formSchema/uiSchema/cbc/projectDataReviewsUiSchema'; +import { useState } from 'react'; const getCbcQuery = graphql` query CbcIdQuery($rowId: Int!) { @@ -53,6 +54,11 @@ const Cbc = ({ preloadedQuery, }: RelayProps, CbcIdQuery>) => { const query = usePreloadedQuery(getCbcQuery, preloadedQuery); + + const [toggleOverride, setToggleExpandOrCollapseAll] = useState< + boolean | undefined + >(undefined); + const { cbcByRowId, session } = query; const { cbcDataByCbcId } = cbcByRowId; const { edges } = cbcDataByCbcId; @@ -79,7 +85,7 @@ const Cbc = ({ { - console.log('Expand all'); + setToggleExpandOrCollapseAll(true); }} type="button" > @@ -88,7 +94,7 @@ const Cbc = ({ {' | '} { - console.log('Collapse all'); + setToggleExpandOrCollapseAll(false); }} type="button" > @@ -125,7 +131,7 @@ const Cbc = ({ setIsFormEditMode={() => { console.log('setIsFormEditMode'); }} - additionalContext={{}} + additionalContext={{ toggleOverride }} isFormAnimated={false} /> { console.log('setIsFormEditMode'); }} - additionalContext={{}} + additionalContext={{ toggleOverride }} isFormAnimated={false} /> { console.log('setIsFormEditMode'); }} - additionalContext={{}} + additionalContext={{ toggleOverride }} isFormAnimated={false} /> { console.log('setIsFormEditMode'); }} - additionalContext={{}} + additionalContext={{ toggleOverride }} isFormAnimated={false} /> { console.log('setIsFormEditMode'); }} - additionalContext={{}} + additionalContext={{ toggleOverride }} isFormAnimated={false} /> { console.log('setIsFormEditMode'); }} - additionalContext={{}} + additionalContext={{ toggleOverride }} isFormAnimated={false} /> { console.log('setIsFormEditMode'); }} - additionalContext={{}} + additionalContext={{ toggleOverride }} isFormAnimated={false} /> From 0f52c62fbc9bdae235493be65b96ff2b1afc64fd Mon Sep 17 00:00:00 2001 From: Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> Date: Tue, 14 May 2024 11:07:32 -0700 Subject: [PATCH 07/34] feat: cbc header edit, update mutation --- app/components/Analyst/CBC/AssignField.tsx | 62 ++++++++++++++++++- .../Analyst/CBC/CbcChangeStatus.tsx | 43 ++++++++++++- app/components/Analyst/CBC/CbcHeader.tsx | 9 ++- app/schema/mutations/cbc/updateCbcData.ts | 24 +++++++ app/schema/mutations/useDebouncedMutation.ts | 8 +-- 5 files changed, 135 insertions(+), 11 deletions(-) create mode 100644 app/schema/mutations/cbc/updateCbcData.ts diff --git a/app/components/Analyst/CBC/AssignField.tsx b/app/components/Analyst/CBC/AssignField.tsx index fa435740ee..e64b69a948 100644 --- a/app/components/Analyst/CBC/AssignField.tsx +++ b/app/components/Analyst/CBC/AssignField.tsx @@ -1,4 +1,6 @@ -// import { graphql, useFragment } from 'react-relay'; +import { useState } from 'react'; +import { graphql, useFragment } from 'react-relay'; +import { useUpdateCbcDataByRowIdMutation } from 'schema/mutations/cbc/updateCbcData'; import styled from 'styled-components'; const StyledDropdown = styled.select` @@ -11,11 +13,65 @@ const StyledDropdown = styled.select` border-radius: 4px; `; -const AssignField = ({ fieldValue, fieldName, fieldOptions }) => { +const AssignField = ({ fieldName, fieldOptions, fieldType, cbc }) => { + const queryFragment = useFragment( + graphql` + fragment AssignField_query on Cbc { + cbcDataByCbcId { + edges { + node { + jsonData + sharepointTimestamp + rowId + projectNumber + updatedAt + updatedBy + } + } + } + } + `, + cbc + ); + const { jsonData } = queryFragment.cbcDataByCbcId.edges[0].node; + + const [updateField] = useUpdateCbcDataByRowIdMutation(); + const [fieldValue, setFieldValue] = useState( + fieldType === 'string' + ? jsonData[fieldName].toString() || null + : jsonData[fieldName] || null + ); + console.log('fieldValue', fieldValue); + console.log(`${fieldName} queryFragment:`, queryFragment); + + const handleChange = (e) => { + const { rowId } = queryFragment.cbcDataByCbcId.edges[0].node; + updateField({ + variables: { + input: { + rowId, + cbcDataPatch: { + jsonData: { + ...jsonData, + [fieldName]: + fieldType === 'number' + ? parseInt(e.target.value, 10) + : e.target.value, + }, + }, + }, + }, + onCompleted: () => { + setFieldValue(e.target.value); + }, + debounceKey: 'cbc_assign_field', + }); + }; + return ( console.log(e.target.value)} + onChange={(e) => handleChange(e)} data-testid={`assign-${fieldName}`} > {fieldOptions.map((option) => { diff --git a/app/components/Analyst/CBC/CbcChangeStatus.tsx b/app/components/Analyst/CBC/CbcChangeStatus.tsx index acd594eede..afbc576436 100644 --- a/app/components/Analyst/CBC/CbcChangeStatus.tsx +++ b/app/components/Analyst/CBC/CbcChangeStatus.tsx @@ -1,6 +1,8 @@ import { graphql, useFragment } from 'react-relay'; import styled from 'styled-components'; import statusStyles from 'data/statusStyles'; +import { useUpdateCbcDataByRowIdMutation } from 'schema/mutations/cbc/updateCbcData'; +import { useState } from 'react'; interface DropdownProps { statusStyles: { @@ -49,6 +51,19 @@ const getStatus = (status) => { return status; }; +const convertToCbcStatus = (status) => { + if (status === 'conditionally_approved') { + return 'Conditionally Approved'; + } + if (status === 'complete') { + return 'Reporting Complete'; + } + if (status === 'approved') { + return 'Agreement Signed'; + } + return status; +}; + interface Props { cbc: any; status: string; @@ -78,16 +93,40 @@ const CbcChangeStatus: React.FC = ({ cbc, status, statusList }) => { console.log(queryFragment); console.log('status', status); console.log('converted status', getStatus(status)); + const [updateStatus] = useUpdateCbcDataByRowIdMutation(); + const [currentStatus, setCurrentStatus] = useState(getStatus(status)); + + const handleChange = (e) => { + const newStatus = e.target.value; + const cbcDataId = queryFragment.cbcDataByCbcId.edges[0].node.rowId; + updateStatus({ + variables: { + input: { + rowId: cbcDataId, + cbcDataPatch: { + jsonData: { + ...queryFragment.cbcDataByCbcId.edges[0].node.jsonData, + projectStatus: convertToCbcStatus(newStatus), + }, + }, + }, + }, + onCompleted: () => { + setCurrentStatus(newStatus); + }, + debounceKey: 'cbc_change_status', + }); + }; return ( { // eslint-disable-next-line no-void - void (() => console.log(e))(); + void (() => handleChange(e))(); }} // Use draft status for colour so it changes as user selects it statusStyles={statusStyles[getStatus(status)]} - value={getStatus(status)} + value={currentStatus} id="change-status" > {statusList?.map((statusType) => { diff --git a/app/components/Analyst/CBC/CbcHeader.tsx b/app/components/Analyst/CBC/CbcHeader.tsx index a62a6b7d95..00a0a05bb9 100644 --- a/app/components/Analyst/CBC/CbcHeader.tsx +++ b/app/components/Analyst/CBC/CbcHeader.tsx @@ -74,6 +74,7 @@ const CbcHeader: React.FC = ({ query }) => { } } ...CbcChangeStatus_query + ...AssignField_query } } `, @@ -115,17 +116,21 @@ const CbcHeader: React.FC = ({ query }) => { Phase Intake diff --git a/app/schema/mutations/cbc/updateCbcData.ts b/app/schema/mutations/cbc/updateCbcData.ts new file mode 100644 index 0000000000..9c3d499948 --- /dev/null +++ b/app/schema/mutations/cbc/updateCbcData.ts @@ -0,0 +1,24 @@ +import { graphql } from 'react-relay'; +import { updateCbcDataByRowIdMutation } from '__generated__/updateCbcDataByRowIdMutation.graphql'; +import useDebouncedMutation from '../useDebouncedMutation'; + +const mutation = graphql` + mutation updateCbcDataByRowIdMutation($input: UpdateCbcDataByRowIdInput!) { + updateCbcDataByRowId(input: $input) { + cbcData { + id + rowId + jsonData + updatedAt + } + } + } +`; + +const useUpdateCbcDataByRowIdMutation = () => + useDebouncedMutation( + mutation, + () => 'An error occurred while attempting to update the cbc data.' + ); + +export { mutation, useUpdateCbcDataByRowIdMutation }; diff --git a/app/schema/mutations/useDebouncedMutation.ts b/app/schema/mutations/useDebouncedMutation.ts index 0986005e2e..751f0692e1 100644 --- a/app/schema/mutations/useDebouncedMutation.ts +++ b/app/schema/mutations/useDebouncedMutation.ts @@ -1,13 +1,13 @@ -import { CacheConfigWithDebounce } from '../../lib/relay/debounceMutationMiddleware'; import { UseMutationConfig } from 'react-relay'; -import { commitMutation as baseCommitMutation } from 'relay-runtime'; import { + commitMutation as baseCommitMutation, Disposable, GraphQLTaggedNode, IEnvironment, MutationConfig, MutationParameters, } from 'relay-runtime'; +import { CacheConfigWithDebounce } from '../../lib/relay/debounceMutationMiddleware'; import useMutationWithErrorMessage from './useMutationWithErrorMessage'; const debouncedMutationMap = new Map(); @@ -19,13 +19,13 @@ export interface DebouncedMutationConfig } export interface UseDebouncedMutationConfig< - TMutation extends MutationParameters + TMutation extends MutationParameters, > extends UseMutationConfig { debounceKey: string; } export default function useDebouncedMutation< - TMutation extends MutationParameters + TMutation extends MutationParameters, >(mutation: GraphQLTaggedNode, getErrorMessage: (relayError: Error) => string) { const commitMutationFn = ( environment: IEnvironment, From ef6ec40643f56380ca93c7aed5f22e6ef8b045d3 Mon Sep 17 00:00:00 2001 From: Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> Date: Tue, 14 May 2024 13:49:19 -0700 Subject: [PATCH 08/34] feat: cbc rework view, initial quick edit --- app/components/Analyst/CBC/CbcForm.tsx | 30 ++ .../Project/fields/ProjectFieldTemplate.tsx | 16 +- app/formSchema/analyst/cbc/review.ts | 58 +++ .../uiSchema/cbc/eventsAndDatesUiSchema.ts | 11 + .../uiSchema/cbc/fundingUiSchema.ts | 6 + .../cbc/locationsAndCountsUiSchema.ts | 8 + .../uiSchema/cbc/miscellaneousUiSchema.ts | 7 + .../cbc/projectDataReviewsUiSchema.ts | 4 + .../uiSchema/cbc/projectTypeUiSchema.ts | 7 + app/formSchema/uiSchema/cbc/reviewUiSchema.ts | 42 ++ .../uiSchema/cbc/tombstoneUiSchema.ts | 37 +- app/package.json | 2 +- app/pages/analyst/cbc/[cbcId].tsx | 394 ++++++++---------- 13 files changed, 396 insertions(+), 226 deletions(-) create mode 100644 app/formSchema/analyst/cbc/review.ts create mode 100644 app/formSchema/uiSchema/cbc/reviewUiSchema.ts diff --git a/app/components/Analyst/CBC/CbcForm.tsx b/app/components/Analyst/CBC/CbcForm.tsx index 082028e58d..d26a9b4524 100644 --- a/app/components/Analyst/CBC/CbcForm.tsx +++ b/app/components/Analyst/CBC/CbcForm.tsx @@ -3,6 +3,7 @@ import styled from 'styled-components'; import { FormBase } from 'components/Form'; import CircularProgress from '@mui/material/CircularProgress'; import { RJSFSchema } from '@rjsf/utils'; +import Button from '@button-inc/bcgov-theme/Button'; import ProjectTheme from '../Project/ProjectTheme'; const LoadingContainer = styled.div` @@ -20,6 +21,11 @@ const LoadingItem = styled.div` justify-content: center; `; +const StyledBtn = styled(Button)` + margin: 0 8px; + padding: 8px 16px; +`; + interface Props { additionalContext?: any; before?: React.ReactNode; @@ -129,6 +135,30 @@ const CbcForm: React.FC = ({ true )} + {isFormEditMode && ( + <> + + {saveBtnText || 'Save'} + + { + setFormData(); + setIsFormEditMode(false); + }} + > + Cancel + + + )} )} {children} diff --git a/app/components/Analyst/Project/fields/ProjectFieldTemplate.tsx b/app/components/Analyst/Project/fields/ProjectFieldTemplate.tsx index c0ddbaeec9..daf3dc10e1 100644 --- a/app/components/Analyst/Project/fields/ProjectFieldTemplate.tsx +++ b/app/components/Analyst/Project/fields/ProjectFieldTemplate.tsx @@ -35,13 +35,17 @@ const ProjectFieldTemplate: React.FC = ({ children, uiSchema, }) => { - const uiTitle = uiSchema['ui:label'] || uiSchema['ui:title']; - + const uiTitle = `${uiSchema?.['ui:label'] ?? uiSchema?.['ui:title']}`; + const hidden = uiSchema?.['ui:widget'] === 'HiddenWidget' || false; return ( - - {uiTitle && {uiTitle}} - {children} - + <> + {!hidden && ( + + {uiTitle && {uiTitle}} + {children} + + )} + ); }; diff --git a/app/formSchema/analyst/cbc/review.ts b/app/formSchema/analyst/cbc/review.ts new file mode 100644 index 0000000000..ffa71f1568 --- /dev/null +++ b/app/formSchema/analyst/cbc/review.ts @@ -0,0 +1,58 @@ +import { RJSFSchema } from '@rjsf/utils'; +import cbcTombstone from './tombstone'; +import projectType from './projectType'; +import locationsAndCounts from './locationsAndCounts'; +import funding from './funding'; +import eventsAndDates from './eventsAndDates'; +import miscellaneous from './miscellaneous'; +import projectDataReviews from './projectDataReviews'; + +const review: RJSFSchema = { + type: 'object', + properties: { + tombstone: { + title: cbcTombstone.title, + properties: { + ...cbcTombstone.properties, + }, + }, + projectType: { + title: projectType.title, + properties: { + ...projectType.properties, + }, + }, + locationsAndCounts: { + title: locationsAndCounts.title, + properties: { + ...locationsAndCounts.properties, + }, + }, + funding: { + title: funding.title, + properties: { + ...funding.properties, + }, + }, + eventsAndDates: { + title: eventsAndDates.title, + properties: { + ...eventsAndDates.properties, + }, + }, + miscellaneous: { + title: miscellaneous.title, + properties: { + ...miscellaneous.properties, + }, + }, + projectDataReviews: { + title: projectDataReviews.title, + properties: { + ...projectDataReviews.properties, + }, + }, + }, +}; + +export default review; diff --git a/app/formSchema/uiSchema/cbc/eventsAndDatesUiSchema.ts b/app/formSchema/uiSchema/cbc/eventsAndDatesUiSchema.ts index 355f77cbd3..12f36302a9 100644 --- a/app/formSchema/uiSchema/cbc/eventsAndDatesUiSchema.ts +++ b/app/formSchema/uiSchema/cbc/eventsAndDatesUiSchema.ts @@ -3,35 +3,46 @@ const eventsAndDatesUiSchema = { 'ui:options': { dividers: true, }, + 'ui:title': 'Events and Dates', nditConditionalApprovalLetterSent: { 'ui:widget': 'TextAreaWidget', + 'ui:label': 'NDIT Conditional Approval Letter Sent', }, bindingAgreementSignedNditRecipient: { 'ui:widget': 'TextAreaWidget', + 'ui:label': 'Binding Agreement Signed NDIT Recipient', }, announcedByProvince: { 'ui:widget': 'TextAreaWidget', + 'ui:label': 'Announced By Province', }, dateApplicationReceived: { 'ui:widget': 'DatePickerWidget', + 'ui:label': 'Date Application Received', }, dateConditionallyApprovedApproved: { 'ui:widget': 'DatePickerWidget', + 'ui:label': 'Date Conditionally Approved Approved', }, dateAgreementSigned: { 'ui:widget': 'DatePickerWidget', + 'ui:label': 'Date Agreement Signed', }, proposedStartDate: { 'ui:widget': 'DatePickerWidget', + 'ui:label': 'Proposed Start Date', }, proposedCompletionDate: { 'ui:widget': 'DatePickerWidget', + 'ui:label': 'Proposed Completion Date', }, reportingCompletionDate: { 'ui:widget': 'DatePickerWidget', + 'ui:label': 'Reporting Completion Date', }, dateAnnounced: { 'ui:widget': 'DatePickerWidget', + 'ui:label': 'Date Announced', }, }; diff --git a/app/formSchema/uiSchema/cbc/fundingUiSchema.ts b/app/formSchema/uiSchema/cbc/fundingUiSchema.ts index 5db76dbb04..6c8a8bada5 100644 --- a/app/formSchema/uiSchema/cbc/fundingUiSchema.ts +++ b/app/formSchema/uiSchema/cbc/fundingUiSchema.ts @@ -3,20 +3,26 @@ const fundingUiSchema = { 'ui:options': { dividers: true, }, + 'ui:title': 'Funding', bcFundingRequest: { 'ui:widget': 'MoneyWidget', + 'ui:label': 'BC Funding Request', }, federalFunding: { 'ui:widget': 'MoneyWidget', + 'ui:label': 'Federal Funding', }, applicantAmount: { 'ui:widget': 'MoneyWidget', + 'ui:label': 'Applicant Amount', }, otherFunding: { 'ui:widget': 'MoneyWidget', + 'ui:label': 'Other Funding', }, totalProjectBudget: { 'ui:widget': 'MoneyWidget', + 'ui:label': 'Total Project Budget', }, }; diff --git a/app/formSchema/uiSchema/cbc/locationsAndCountsUiSchema.ts b/app/formSchema/uiSchema/cbc/locationsAndCountsUiSchema.ts index e70aae0403..5995349975 100644 --- a/app/formSchema/uiSchema/cbc/locationsAndCountsUiSchema.ts +++ b/app/formSchema/uiSchema/cbc/locationsAndCountsUiSchema.ts @@ -3,26 +3,34 @@ const locationsAndCountsUiSchema = { 'ui:options': { dividers: true, }, + 'ui:title': 'Locations and Counts', projectLocations: { 'ui:widget': 'TextAreaWidget', + 'ui:label': 'Project Locations', }, communitiesAndLocalesCount: { 'ui:widget': 'NumberWidget', + 'ui:label': 'Communities and Locales Count', }, indigenousCommunities: { 'ui:widget': 'NumberWidget', + 'ui:label': 'Indigenous Communities', }, householdCount: { 'ui:widget': 'NumberWidget', + 'ui:label': 'Household Count', }, transportKm: { 'ui:widget': 'NumberWidget', + 'ui:label': 'Transport Km', }, highwayKm: { 'ui:widget': 'NumberWidget', + 'ui:label': 'Highway Km', }, restAreas: { 'ui:widget': 'NumberWidget', + 'ui:label': 'Rest Areas', }, }; diff --git a/app/formSchema/uiSchema/cbc/miscellaneousUiSchema.ts b/app/formSchema/uiSchema/cbc/miscellaneousUiSchema.ts index ac163b4e25..d8763e9dd0 100644 --- a/app/formSchema/uiSchema/cbc/miscellaneousUiSchema.ts +++ b/app/formSchema/uiSchema/cbc/miscellaneousUiSchema.ts @@ -3,23 +3,30 @@ const miscellaneousUiSchema = { 'ui:options': { dividers: true, }, + 'ui:title': 'Miscellaneous', projectMilestoneCompleted: { 'ui:widget': 'NumberWidget', + 'ui:label': 'Project Milestone Completed', }, constructionCompletedOn: { 'ui:widget': 'DatePickerWidget', + 'ui:label': 'Construction Completed On', }, milestoneComments: { 'ui:widget': 'TextAreaWidget', + 'ui:label': 'Milestone Comments', }, primaryNewsRelease: { 'ui:widget': 'TextAreaWidget', + 'ui:label': 'Primary News Release', }, secondaryNewsRelease: { 'ui:widget': 'TextAreaWidget', + 'ui:label': 'Secondary News Release', }, notes: { 'ui:widget': 'TextAreaWidget', + 'ui:label': 'Notes', }, }; diff --git a/app/formSchema/uiSchema/cbc/projectDataReviewsUiSchema.ts b/app/formSchema/uiSchema/cbc/projectDataReviewsUiSchema.ts index f53f2c1294..9220fc91e2 100644 --- a/app/formSchema/uiSchema/cbc/projectDataReviewsUiSchema.ts +++ b/app/formSchema/uiSchema/cbc/projectDataReviewsUiSchema.ts @@ -3,14 +3,18 @@ const projectDataReviewsUiSchema = { 'ui:options': { dividers: true, }, + 'ui:title': 'Project Data Reviews', locked: { 'ui:widget': 'TextAreaWidget', + 'ui:label': 'Locked', }, lastReviewed: { 'ui:widget': 'DatePickerWidget', + 'ui:label': 'Last Reviewed', }, reviewNotes: { 'ui:widget': 'TextAreaWidget', + 'ui:label': 'Review Notes', }, }; export default projectDataReviewsUiSchema; diff --git a/app/formSchema/uiSchema/cbc/projectTypeUiSchema.ts b/app/formSchema/uiSchema/cbc/projectTypeUiSchema.ts index aa02ca3860..8bea7b0e44 100644 --- a/app/formSchema/uiSchema/cbc/projectTypeUiSchema.ts +++ b/app/formSchema/uiSchema/cbc/projectTypeUiSchema.ts @@ -3,29 +3,36 @@ const projectTypeUiSchema = { 'ui:options': { dividers: true, }, + 'ui:title': 'Project Type', projectType: { 'ui:widget': 'SelectWidget', 'ui:placeholder': 'Select a project type', + 'ui:label': 'Project Type', }, transportProjectType: { 'ui:widget': 'SelectWidget', 'ui:placeholder': 'Select a transport project type', + 'ui:label': 'Transport Project Type', }, highwayProjectType: { 'ui:widget': 'SelectWidget', 'ui:placeholder': 'Select a highway project type', + 'ui:label': 'Highway Project Type', }, lastMileProjectType: { 'ui:widget': 'SelectWidget', 'ui:placeholder': 'Select a last mile project type', + 'ui:label': 'Last Mile Project Type', }, lastMileMinimumSpeed: { 'ui:widget': 'SelectWidget', 'ui:placeholder': 'Select a last mile minimum speed', + 'ui:label': 'Last Mile Minimum Speed', }, connectedCoastNetworkDependant: { 'ui:widget': 'SelectWidget', 'ui:placeholder': 'Select a connected coast network dependant', + 'ui:label': 'Connected Coast Network Dependant', }, }; diff --git a/app/formSchema/uiSchema/cbc/reviewUiSchema.ts b/app/formSchema/uiSchema/cbc/reviewUiSchema.ts new file mode 100644 index 0000000000..5be6ab21a5 --- /dev/null +++ b/app/formSchema/uiSchema/cbc/reviewUiSchema.ts @@ -0,0 +1,42 @@ +import projectTypeUiSchema from './projectTypeUiSchema'; +import tombstoneUiSchema from './tombstoneUiSchema'; +import locationsAndCountsUiSchema from './locationsAndCountsUiSchema'; +import fundingUiSchema from './fundingUiSchema'; + +import eventsAndDatesUiSchema from './eventsAndDatesUiSchema'; +import miscellaneousUiSchema from './miscellaneousUiSchema'; +import projectDataReviewsUiSchema from './projectDataReviewsUiSchema'; + +const reviewUiSchema = { + 'ui:title': 'CBC Edit', + tombstone: { + 'ui:title': 'Tombstone', + ...tombstoneUiSchema, + }, + projectType: { + 'ui:title': 'Project Type', + ...projectTypeUiSchema, + }, + locationsAndCounts: { + 'ui:title': 'Locations and Counts', + ...locationsAndCountsUiSchema, + }, + funding: { + 'ui:title': 'Funding', + ...fundingUiSchema, + }, + eventsAndDates: { + 'ui:title': 'Events and Dates', + ...eventsAndDatesUiSchema, + }, + miscellaneous: { + 'ui:title': 'Miscellaneous', + ...miscellaneousUiSchema, + }, + projectDataReviews: { + 'ui:title': 'Project Data Reviews', + ...projectDataReviewsUiSchema, + }, +}; + +export default reviewUiSchema; diff --git a/app/formSchema/uiSchema/cbc/tombstoneUiSchema.ts b/app/formSchema/uiSchema/cbc/tombstoneUiSchema.ts index a944473f14..42d927a245 100644 --- a/app/formSchema/uiSchema/cbc/tombstoneUiSchema.ts +++ b/app/formSchema/uiSchema/cbc/tombstoneUiSchema.ts @@ -4,44 +4,61 @@ const tombstoneUiSchema = { 'ui:options': { dividers: true, }, + 'ui:title': 'Tombstone', projectTitle: { - 'ui:widget': 'TextAreaWidget', + 'ui:widget': 'TextWidget', + 'ui:label': 'Project Title', + }, + originalProjectNumber: { + 'ui:widget': 'NumberWidget', + 'ui:label': 'Original Project Number', }, projectNumber: { - 'ui:widget': 'TextAreaWidget', + 'ui:widget': 'NumberWidget', + 'ui:label': 'Project Number', }, phase: { - 'ui:widget': 'SelectWidget', + 'ui:widget': 'HiddenWidget', 'ui:placeholder': 'Select a phase', + 'ui:label': 'Phase', }, intake: { - 'ui:widget': 'SelectWidget', + 'ui:widget': 'HiddenWidget', 'ui:placeholder': 'Select an intake', + 'ui:label': 'Intake', }, projectStatus: { - 'ui:widget': 'SelectWidget', + 'ui:widget': 'HiddenWidget', 'ui:placeholder': 'Select a status', + 'ui:label': 'Status', }, changeRequestPending: { 'ui:widget': 'CheckboxWidget', + 'ui:label': 'Change Request Pending', }, projectDescription: { 'ui:widget': 'TextAreaWidget', + 'ui:label': 'Project Description', }, applicantContractualName: { - 'ui:widget': 'TextAreaWidget', + 'ui:widget': 'TextWidget', + 'ui:label': 'Applicant Contractual Name', }, currentOperatingName: { - 'ui:widget': 'TextAreaWidget', + 'ui:widget': 'TextWidget', + 'ui:label': 'Current Operating Name', }, eightThirtyMillionFunding: { - 'ui:widget': 'TextAreaWidget', + 'ui:widget': 'TextWidget', + 'ui:label': '8.30M Funding', }, federalFundingSource: { - 'ui:widget': 'TextAreaWidget', + 'ui:widget': 'TextWidget', + 'ui:label': 'Federal Funding Source', }, federalProjectNumber: { - 'ui:widget': 'TextAreaWidget', + 'ui:widget': 'TextWidget', + 'ui:label': 'Federal Project Number', }, }; diff --git a/app/package.json b/app/package.json index 74c5fc434b..6cc49fe073 100644 --- a/app/package.json +++ b/app/package.json @@ -8,7 +8,7 @@ "build:next": "next build", "build:relay": "touch schema/queryMap.json && mkdir -p __generated__ && relay-compiler && yarn run build:persisted-operations", "build:server": "tsc --project tsconfig.server.json", - "build:schema": "postgraphile -X -c postgres://localhost/ccbc -s ccbc_public --export-schema-graphql schema/schema.graphql --classic-ids", + "build:schema": "postgraphile -X -c postgres://postgres:mysecretpassword@localhost/ccbc -s ccbc_public --export-schema-graphql schema/schema.graphql --classic-ids", "build:persisted-operations": "mkdir -p .persisted_operations && node utils/addToPersistedOperations.js", "start": "NODE_ENV=production node --unhandled-rejections=strict --enable-network-family-autoselection dist/server.js", "lint": "next lint", diff --git a/app/pages/analyst/cbc/[cbcId].tsx b/app/pages/analyst/cbc/[cbcId].tsx index 0a252641c2..061443eaf9 100644 --- a/app/pages/analyst/cbc/[cbcId].tsx +++ b/app/pages/analyst/cbc/[cbcId].tsx @@ -8,21 +8,25 @@ import CbcAnalystLayout from 'components/Analyst/CBC/CbcAnalystLayout'; import CbcForm from 'components/Analyst/CBC/CbcForm'; import styled from 'styled-components'; import ReviewTheme from 'components/Review/ReviewTheme'; -import cbcTombstone from 'formSchema/analyst/cbc/tombstone'; -import tombstoneUiSchema from 'formSchema/uiSchema/cbc/tombstoneUiSchema'; -import projectType from 'formSchema/analyst/cbc/projectType'; -import projectTypeUiSchema from 'formSchema/uiSchema/cbc/projectTypeUiSchema'; -import locationsAndCounts from 'formSchema/analyst/cbc/locationsAndCounts'; -import locationsAndCountsUiSchema from 'formSchema/uiSchema/cbc/locationsAndCountsUiSchema'; -import funding from 'formSchema/analyst/cbc/funding'; -import fundingUiSchema from 'formSchema/uiSchema/cbc/fundingUiSchema'; -import eventsAndDates from 'formSchema/analyst/cbc/eventsAndDates'; -import eventsAndDatesUiSchema from 'formSchema/uiSchema/cbc/eventsAndDatesUiSchema'; -import miscellaneous from 'formSchema/analyst/cbc/miscellaneous'; -import miscellaneousUiSchema from 'formSchema/uiSchema/cbc/miscellaneousUiSchema'; -import projectDataReviews from 'formSchema/analyst/cbc/projectDataReviews'; -import projectDataReviewsUiSchema from 'formSchema/uiSchema/cbc/projectDataReviewsUiSchema'; -import { useState } from 'react'; +// import cbcTombstone from 'formSchema/analyst/cbc/tombstone'; +// import tombstoneUiSchema from 'formSchema/uiSchema/cbc/tombstoneUiSchema'; +// import projectType from 'formSchema/analyst/cbc/projectType'; +// import projectTypeUiSchema from 'formSchema/uiSchema/cbc/projectTypeUiSchema'; +// import locationsAndCounts from 'formSchema/analyst/cbc/locationsAndCounts'; +// import locationsAndCountsUiSchema from 'formSchema/uiSchema/cbc/locationsAndCountsUiSchema'; +// import funding from 'formSchema/analyst/cbc/funding'; +// import fundingUiSchema from 'formSchema/uiSchema/cbc/fundingUiSchema'; +// import eventsAndDates from 'formSchema/analyst/cbc/eventsAndDates'; +// import eventsAndDatesUiSchema from 'formSchema/uiSchema/cbc/eventsAndDatesUiSchema'; +// import miscellaneous from 'formSchema/analyst/cbc/miscellaneous'; +// import miscellaneousUiSchema from 'formSchema/uiSchema/cbc/miscellaneousUiSchema'; +// import projectDataReviews from 'formSchema/analyst/cbc/projectDataReviews'; +// import projectDataReviewsUiSchema from 'formSchema/uiSchema/cbc/projectDataReviewsUiSchema'; +import { useRef, useState } from 'react'; +import { ProjectTheme } from 'components/Analyst/Project'; +import { useUpdateCbcDataByRowIdMutation } from 'schema/mutations/cbc/updateCbcData'; +import review from 'formSchema/analyst/cbc/review'; +import reviewUiSchema from 'formSchema/uiSchema/cbc/reviewUiSchema'; const getCbcQuery = graphql` query CbcIdQuery($rowId: Int!) { @@ -50,6 +54,20 @@ const getCbcQuery = graphql` } `; +const StyledCbcForm = styled(CbcForm)` + margin-bottom: 0px; +`; + +const StyledButton = styled('button')` + color: ${(props) => props.theme.color.links}; +`; + +const RightAlignText = styled('div')` + padding-top: 20px; + text-align: right; + padding-bottom: 4px; +`; + const Cbc = ({ preloadedQuery, }: RelayProps, CbcIdQuery>) => { @@ -59,220 +77,178 @@ const Cbc = ({ boolean | undefined >(undefined); + const [editMode, setEditMode] = useState(false); + const hiddenSubmitRef = useRef(null); const { cbcByRowId, session } = query; const { cbcDataByCbcId } = cbcByRowId; const { edges } = cbcDataByCbcId; const cbcData = edges[0].node; const { jsonData } = cbcData; - const StyledCbcForm = styled(CbcForm)` - margin-bottom: 0px; - `; + const tombstone = { + projectNumber: jsonData.projectNumber, + originalProjectNumber: jsonData.originalProjectNumber, + phase: jsonData.phase, + intake: jsonData.intake, + projectStatus: jsonData.projectStatus, + changeRequestPending: jsonData.changeRequestPending, + projectTitle: jsonData.projectTitle, + projectDescription: jsonData.projectDescription, + }; + + const projectType = { + projectType: jsonData.projectType, + transportProjectType: jsonData.transportProjectType, + highwayProjectType: jsonData.highwayProjectType, + lastMileProjectType: jsonData.lastMileProjectType, + lastMileMinimumSpeed: jsonData.lastMileMinimumSpeed, + connectedCoastNetworkDependant: jsonData.connectedCoastNetworkDependant, + }; + const locationsAndCounts = { + projectLocations: jsonData.projectLocations, + communitiesAndLocalesCount: jsonData.communitiesAndLocalesCount, + indigenousCommunities: jsonData.indigenousCommunities, + householdCount: jsonData.householdCount, + transportKm: jsonData.transportKm, + highwayKm: jsonData.highwayKm, + restAreas: jsonData.restAreas, + }; - const StyledButton = styled('button')` - color: ${(props) => props.theme.color.links}; - `; + const funding = { + bcFundingRequest: jsonData.bcFundingRequest, + federalFunding: jsonData.federalFunding, + applicantAmount: jsonData.applicantAmount, + otherFunding: jsonData.otherFunding, + totalProjectBudget: jsonData.totalProjectBudget, + }; - const RightAlignText = styled('div')` - padding-top: 20px; - text-align: right; - padding-bottom: 4px; - `; + const eventsAndDates = { + nditConditionalApprovalLetterSent: + jsonData.nditConditionalApprovalLetterSent, + bindingAgreementSignedNditRecipient: + jsonData.bindingAgreementSignedNditRecipient, + announcedByProvince: jsonData.announcedByProvince, + dateApplicationReceived: jsonData.dateApplicationReceived, + dateConditionallyApproved: jsonData.dateConditionallyApproved, + dateAgreementSigned: jsonData.dateAgreementSigned, + proposedStartDate: jsonData.proposedStartDate, + proposedCompletionDate: jsonData.proposedCompletionDate, + reportingCompletionDate: jsonData.reportingCompletionDate, + dateAnnounced: jsonData.dateAnnounced, + }; + + const miscellaneous = { + projectMilestoneCompleted: jsonData.projectMilestoneCompleted, + constructionCompletedOn: jsonData.constructionCompletedOn, + milestoneComments: jsonData.milestoneComments, + primaryNewsRelease: jsonData.primaryNewsRelease, + secondaryNewsRelease: jsonData.secondaryNewsRelease, + notes: jsonData.notes, + }; + + const projectDataReviews = { + locked: jsonData.locked, + lastReviewed: jsonData.lastReviewed, + reviewNotes: jsonData.reviewNotes, + }; + + const [formData, setFormData] = useState({ + tombstone, + projectType, + locationsAndCounts, + funding, + eventsAndDates, + miscellaneous, + projectDataReviews, + }); + const [updateFormData] = useUpdateCbcDataByRowIdMutation(); + + const handleSubmit = (e) => { + hiddenSubmitRef.current.click(); + e.preventDefault(); + updateFormData({ + variables: { + input: { + rowId: cbcData.rowId, + cbcDataPatch: { + jsonData: { + ...formData.tombstone, + ...formData.projectType, + ...formData.locationsAndCounts, + ...formData.funding, + ...formData.eventsAndDates, + ...formData.miscellaneous, + ...formData.projectDataReviews, + }, + }, + }, + }, + debounceKey: 'cbc_update_form_data', + onCompleted: () => { + setEditMode(false); + }, + }); + }; + + const handleResetFormData = () => { + setEditMode(false); + setFormData({}); + }; return ( + {!editMode && ( + <> + { + setToggleExpandOrCollapseAll(true); + }} + type="button" + > + Expand all + + {' | '} + { + setToggleExpandOrCollapseAll(false); + }} + type="button" + > + Collapse all + + {' | '} + + )} { - setToggleExpandOrCollapseAll(true); - }} - type="button" - > - Expand all - - {' | '} - { - setToggleExpandOrCollapseAll(false); + setEditMode(!editMode); }} type="button" > - Collapse all - - {' | '} - { - console.log('Quick edit'); - }} - type="button" - > - Quick edit + {editMode ? 'Cancel quick edit' : 'Quick edit'} - <> - { - console.log(e); - }} - isExpanded - isFormEditMode={false} - title="Tombstone" - schema={cbcTombstone} - theme={ReviewTheme} - uiSchema={tombstoneUiSchema} - resetFormData={() => { - console.log('handleReset'); - }} - onSubmit={() => { - console.log('handleSubmit'); - }} - setIsFormEditMode={() => { - console.log('setIsFormEditMode'); - }} - additionalContext={{ toggleOverride }} - isFormAnimated={false} - /> - { - console.log(e); - }} - isExpanded - isFormEditMode={false} - title="Project type" - schema={projectType} - theme={ReviewTheme} - uiSchema={projectTypeUiSchema} - resetFormData={() => { - console.log('handleReset'); - }} - onSubmit={() => { - console.log('handleSubmit'); - }} - setIsFormEditMode={() => { - console.log('setIsFormEditMode'); - }} - additionalContext={{ toggleOverride }} - isFormAnimated={false} - /> - { - console.log(e); - }} - isExpanded - isFormEditMode={false} - title="Locations and counts" - schema={locationsAndCounts} - theme={ReviewTheme} - uiSchema={locationsAndCountsUiSchema} - resetFormData={() => { - console.log('handleReset'); - }} - onSubmit={() => { - console.log('handleSubmit'); - }} - setIsFormEditMode={() => { - console.log('setIsFormEditMode'); - }} - additionalContext={{ toggleOverride }} - isFormAnimated={false} - /> - { - console.log(e); - }} - isExpanded - isFormEditMode={false} - title="Locations and counts" - schema={funding} - theme={ReviewTheme} - uiSchema={fundingUiSchema} - resetFormData={() => { - console.log('handleReset'); - }} - onSubmit={() => { - console.log('handleSubmit'); - }} - setIsFormEditMode={() => { - console.log('setIsFormEditMode'); - }} - additionalContext={{ toggleOverride }} - isFormAnimated={false} - /> - { - console.log(e); - }} - isExpanded - isFormEditMode={false} - title="Locations and counts" - schema={eventsAndDates} - theme={ReviewTheme} - uiSchema={eventsAndDatesUiSchema} - resetFormData={() => { - console.log('handleReset'); - }} - onSubmit={() => { - console.log('handleSubmit'); - }} - setIsFormEditMode={() => { - console.log('setIsFormEditMode'); - }} - additionalContext={{ toggleOverride }} - isFormAnimated={false} - /> - { - console.log(e); - }} - isExpanded - isFormEditMode={false} - title="Locations and counts" - schema={miscellaneous} - theme={ReviewTheme} - uiSchema={miscellaneousUiSchema} - resetFormData={() => { - console.log('handleReset'); - }} - onSubmit={() => { - console.log('handleSubmit'); - }} - setIsFormEditMode={() => { - console.log('setIsFormEditMode'); - }} - additionalContext={{ toggleOverride }} - isFormAnimated={false} - /> - { - console.log(e); - }} - isExpanded - isFormEditMode={false} - title="Locations and counts" - schema={projectDataReviews} - theme={ReviewTheme} - uiSchema={projectDataReviewsUiSchema} - resetFormData={() => { - console.log('handleReset'); - }} - onSubmit={() => { - console.log('handleSubmit'); - }} - setIsFormEditMode={() => { - console.log('setIsFormEditMode'); - }} - additionalContext={{ toggleOverride }} - isFormAnimated={false} - /> - + { + setFormData({ ...e.formData }); + }} + hiddenSubmitRef={hiddenSubmitRef} + isExpanded + isFormAnimated={false} + isFormEditMode={editMode} + title="Tombstone" + schema={review} + theme={editMode ? ProjectTheme : ReviewTheme} + uiSchema={reviewUiSchema} + resetFormData={handleResetFormData} + onSubmit={handleSubmit} + setIsFormEditMode={setEditMode} + saveBtnText="Save & Close" + /> ); From 9d03cd9eed4cee71b9c1def8abcce8738b10a0da Mon Sep 17 00:00:00 2001 From: Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> Date: Tue, 14 May 2024 14:23:35 -0700 Subject: [PATCH 09/34] chore: correct typo --- app/backend/lib/excel_import/cbc_project.ts | 2 +- app/tests/backend/lib/excel_import/cbc_project.test.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/backend/lib/excel_import/cbc_project.ts b/app/backend/lib/excel_import/cbc_project.ts index c41751c260..b90de53d04 100644 --- a/app/backend/lib/excel_import/cbc_project.ts +++ b/app/backend/lib/excel_import/cbc_project.ts @@ -99,7 +99,7 @@ const readSummary = async (wb, sheet) => { const cbcProject = { projectNumber: project['A'], - orignalProjectNumber: project['B'], + originalProjectNumber: project['B'], phase: project['C'], intake: project['D'], projectStatus: project['E'], diff --git a/app/tests/backend/lib/excel_import/cbc_project.test.ts b/app/tests/backend/lib/excel_import/cbc_project.test.ts index f628f1a46c..9273cf0c57 100644 --- a/app/tests/backend/lib/excel_import/cbc_project.test.ts +++ b/app/tests/backend/lib/excel_import/cbc_project.test.ts @@ -10,7 +10,7 @@ import LoadCbcProjectData from '../../../../backend/lib/excel_import/cbc_project const mockErrorData = { projectNumber: 9999, - orignalProjectNumber: undefined, + originalProjectNumber: undefined, phase: '4b', intake: undefined, projectStatus: 'Not Applicable', From 0f94bcb00632512d946db3576ec3fd3abebe7f1d Mon Sep 17 00:00:00 2001 From: Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> Date: Tue, 14 May 2024 14:31:46 -0700 Subject: [PATCH 10/34] chore: separate edit and review ui schema, add missing fields --- app/formSchema/uiSchema/cbc/editUiSchema.ts | 42 +++++++++++++++++++ app/formSchema/uiSchema/cbc/reviewUiSchema.ts | 23 ++++++---- .../uiSchema/cbc/tombstoneUiSchema.ts | 4 +- app/pages/analyst/cbc/[cbcId].tsx | 10 ++++- 4 files changed, 67 insertions(+), 12 deletions(-) create mode 100644 app/formSchema/uiSchema/cbc/editUiSchema.ts diff --git a/app/formSchema/uiSchema/cbc/editUiSchema.ts b/app/formSchema/uiSchema/cbc/editUiSchema.ts new file mode 100644 index 0000000000..daa80ad1d8 --- /dev/null +++ b/app/formSchema/uiSchema/cbc/editUiSchema.ts @@ -0,0 +1,42 @@ +import projectTypeUiSchema from './projectTypeUiSchema'; +import tombstoneUiSchema from './tombstoneUiSchema'; +import locationsAndCountsUiSchema from './locationsAndCountsUiSchema'; +import fundingUiSchema from './fundingUiSchema'; + +import eventsAndDatesUiSchema from './eventsAndDatesUiSchema'; +import miscellaneousUiSchema from './miscellaneousUiSchema'; +import projectDataReviewsUiSchema from './projectDataReviewsUiSchema'; + +const editUiSchema = { + 'ui:title': 'CBC Edit', + tombstone: { + 'ui:title': 'Tombstone', + ...tombstoneUiSchema, + }, + projectType: { + 'ui:title': 'Project Type', + ...projectTypeUiSchema, + }, + locationsAndCounts: { + 'ui:title': 'Locations and Counts', + ...locationsAndCountsUiSchema, + }, + funding: { + 'ui:title': 'Funding', + ...fundingUiSchema, + }, + eventsAndDates: { + 'ui:title': 'Events and Dates', + ...eventsAndDatesUiSchema, + }, + miscellaneous: { + 'ui:title': 'Miscellaneous', + ...miscellaneousUiSchema, + }, + projectDataReviews: { + 'ui:title': 'Project Data Reviews', + ...projectDataReviewsUiSchema, + }, +}; + +export default editUiSchema; diff --git a/app/formSchema/uiSchema/cbc/reviewUiSchema.ts b/app/formSchema/uiSchema/cbc/reviewUiSchema.ts index 5be6ab21a5..4d72fc15f8 100644 --- a/app/formSchema/uiSchema/cbc/reviewUiSchema.ts +++ b/app/formSchema/uiSchema/cbc/reviewUiSchema.ts @@ -8,33 +8,40 @@ import miscellaneousUiSchema from './miscellaneousUiSchema'; import projectDataReviewsUiSchema from './projectDataReviewsUiSchema'; const reviewUiSchema = { - 'ui:title': 'CBC Edit', tombstone: { - 'ui:title': 'Tombstone', ...tombstoneUiSchema, + projectNumber: { + 'ui:widget': 'TextWidget', + }, + phase: { + 'ui:widget': 'TextWidget', + }, + intake: { + 'ui:widget': 'TextWidget', + }, + projectStatus: { + 'ui:widget': 'TextWidget', + }, + projectTitle: { + 'ui:widget': 'TextWidget', + }, }, projectType: { - 'ui:title': 'Project Type', ...projectTypeUiSchema, }, locationsAndCounts: { - 'ui:title': 'Locations and Counts', ...locationsAndCountsUiSchema, }, funding: { - 'ui:title': 'Funding', ...fundingUiSchema, }, eventsAndDates: { - 'ui:title': 'Events and Dates', ...eventsAndDatesUiSchema, }, miscellaneous: { - 'ui:title': 'Miscellaneous', ...miscellaneousUiSchema, }, projectDataReviews: { - 'ui:title': 'Project Data Reviews', ...projectDataReviewsUiSchema, }, }; diff --git a/app/formSchema/uiSchema/cbc/tombstoneUiSchema.ts b/app/formSchema/uiSchema/cbc/tombstoneUiSchema.ts index 42d927a245..d49559f973 100644 --- a/app/formSchema/uiSchema/cbc/tombstoneUiSchema.ts +++ b/app/formSchema/uiSchema/cbc/tombstoneUiSchema.ts @@ -6,7 +6,7 @@ const tombstoneUiSchema = { }, 'ui:title': 'Tombstone', projectTitle: { - 'ui:widget': 'TextWidget', + 'ui:widget': 'HiddenWidget', 'ui:label': 'Project Title', }, originalProjectNumber: { @@ -14,7 +14,7 @@ const tombstoneUiSchema = { 'ui:label': 'Original Project Number', }, projectNumber: { - 'ui:widget': 'NumberWidget', + 'ui:widget': 'HiddenWidget', 'ui:label': 'Project Number', }, phase: { diff --git a/app/pages/analyst/cbc/[cbcId].tsx b/app/pages/analyst/cbc/[cbcId].tsx index 061443eaf9..41699f6d6a 100644 --- a/app/pages/analyst/cbc/[cbcId].tsx +++ b/app/pages/analyst/cbc/[cbcId].tsx @@ -27,6 +27,7 @@ import { ProjectTheme } from 'components/Analyst/Project'; import { useUpdateCbcDataByRowIdMutation } from 'schema/mutations/cbc/updateCbcData'; import review from 'formSchema/analyst/cbc/review'; import reviewUiSchema from 'formSchema/uiSchema/cbc/reviewUiSchema'; +import editUiSchema from 'formSchema/uiSchema/cbc/editUiSchema'; const getCbcQuery = graphql` query CbcIdQuery($rowId: Int!) { @@ -94,6 +95,11 @@ const Cbc = ({ changeRequestPending: jsonData.changeRequestPending, projectTitle: jsonData.projectTitle, projectDescription: jsonData.projectDescription, + applicantContractualName: jsonData.applicantContractualName, + currentOperatingName: jsonData.currentOperatingName, + eightThirtyMillionFunding: jsonData.eightThirtyMillionFunding, + federalFundingSource: jsonData.federalFundingSource, + federalProjectNumber: jsonData.federalProjectNumber, }; const projectType = { @@ -192,7 +198,7 @@ const Cbc = ({ const handleResetFormData = () => { setEditMode(false); - setFormData({}); + setFormData({} as any); }; return ( @@ -243,7 +249,7 @@ const Cbc = ({ title="Tombstone" schema={review} theme={editMode ? ProjectTheme : ReviewTheme} - uiSchema={reviewUiSchema} + uiSchema={editMode ? editUiSchema : reviewUiSchema} resetFormData={handleResetFormData} onSubmit={handleSubmit} setIsFormEditMode={setEditMode} From 6cc4266edb49bb828bfe9c8ff41ac1399a8d1811 Mon Sep 17 00:00:00 2001 From: Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> Date: Tue, 14 May 2024 14:32:33 -0700 Subject: [PATCH 11/34] feat: add link to cbc view page on all dashboard --- .../AnalystDashboard/AllDashboard.tsx | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/app/components/AnalystDashboard/AllDashboard.tsx b/app/components/AnalystDashboard/AllDashboard.tsx index bccd2bd80c..09af37d1f6 100644 --- a/app/components/AnalystDashboard/AllDashboard.tsx +++ b/app/components/AnalystDashboard/AllDashboard.tsx @@ -98,16 +98,13 @@ const muiTableHeadCellProps = { const CcbcIdCell = ({ cell }) => { const applicationId = cell.row.original?.rowId; + const isCbcProject = cell.row.original?.isCbcProject; return ( - <> - {applicationId ? ( - - {cell.getValue()} - - ) : ( - cell.getValue() - )} - + + {cell.getValue()} + ); }; @@ -381,9 +378,11 @@ const AllDashboardTable: React.FC = ({ query }) => { projectTitle: application.node.applicationSowDataByApplicationId?.nodes[0]?.jsonData ?.projectTitle || application.node.projectName, + isCbcProject: false, })), ...(showCbcProjects ? allCbcData.edges.map((project) => ({ + rowId: project.node.cbcId, ...project.node.jsonData, zones: [], intakeNumber: project.node.jsonData.intake, From c62018bf26176a1bc83244ed5361ce0fdfd26043 Mon Sep 17 00:00:00 2001 From: Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> Date: Tue, 14 May 2024 14:33:00 -0700 Subject: [PATCH 12/34] feat: placeholder history page --- .../Analyst/CBC/NavigationSidebar.tsx | 10 +--- app/pages/analyst/cbc/[cbcId]/cbcHistory.tsx | 58 +++++++++++++++++++ 2 files changed, 60 insertions(+), 8 deletions(-) create mode 100644 app/pages/analyst/cbc/[cbcId]/cbcHistory.tsx diff --git a/app/components/Analyst/CBC/NavigationSidebar.tsx b/app/components/Analyst/CBC/NavigationSidebar.tsx index 1e6dc909d9..a744259d86 100644 --- a/app/components/Analyst/CBC/NavigationSidebar.tsx +++ b/app/components/Analyst/CBC/NavigationSidebar.tsx @@ -1,6 +1,5 @@ import styled from 'styled-components'; import { useRouter } from 'next/router'; -import cookie from 'js-cookie'; import { faChevronLeft, faClipboardList, @@ -26,7 +25,6 @@ const NavigationSidebar = () => { const router = useRouter(); const { asPath } = router; const { cbcId } = router.query; - const assessmentLastVisited = cookie.get('assessment_last_visited') || null; return ( @@ -34,11 +32,7 @@ const NavigationSidebar = () => { @@ -52,7 +46,7 @@ const NavigationSidebar = () => { /> diff --git a/app/pages/analyst/cbc/[cbcId]/cbcHistory.tsx b/app/pages/analyst/cbc/[cbcId]/cbcHistory.tsx new file mode 100644 index 0000000000..eb7f621b7d --- /dev/null +++ b/app/pages/analyst/cbc/[cbcId]/cbcHistory.tsx @@ -0,0 +1,58 @@ +import CbcAnalystLayout from 'components/Analyst/CBC/CbcAnalystLayout'; +import Layout from 'components/Layout'; +import { usePreloadedQuery } from 'react-relay/hooks'; +import { withRelay, RelayProps } from 'relay-nextjs'; +import { graphql } from 'react-relay'; +import defaultRelayOptions from 'lib/relay/withRelayOptions'; +import { cbcHistoryQuery } from '__generated__/cbcHistoryQuery.graphql'; + +const getCbcHistoryQuery = graphql` + query cbcHistoryQuery($rowId: Int!) { + cbcByRowId(rowId: $rowId) { + projectNumber + rowId + sharepointTimestamp + cbcDataByCbcId { + edges { + node { + jsonData + sharepointTimestamp + rowId + projectNumber + updatedAt + updatedBy + } + } + } + } + session { + sub + } + ...CbcAnalystLayout_query + } +`; + +const CbcHistory = ({ + preloadedQuery, +}: RelayProps, cbcHistoryQuery>) => { + const query = usePreloadedQuery(getCbcHistoryQuery, preloadedQuery); + return ( + + +

Under construction...

+
+
+ ); +}; + +export const withRelayOptions = { + ...defaultRelayOptions, + + variablesFromContext: (ctx) => { + return { + rowId: parseInt(ctx.query.cbcId.toString(), 10), + }; + }, +}; + +export default withRelay(CbcHistory, getCbcHistoryQuery, withRelayOptions); From 4b28adf86fc705dea778b114f1ee4b46207508ac Mon Sep 17 00:00:00 2001 From: Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> Date: Tue, 14 May 2024 14:40:04 -0700 Subject: [PATCH 13/34] chore: update form title --- app/pages/analyst/cbc/[cbcId].tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/pages/analyst/cbc/[cbcId].tsx b/app/pages/analyst/cbc/[cbcId].tsx index 41699f6d6a..67c7a78850 100644 --- a/app/pages/analyst/cbc/[cbcId].tsx +++ b/app/pages/analyst/cbc/[cbcId].tsx @@ -246,7 +246,7 @@ const Cbc = ({ isExpanded isFormAnimated={false} isFormEditMode={editMode} - title="Tombstone" + title="CBC Form" schema={review} theme={editMode ? ProjectTheme : ReviewTheme} uiSchema={editMode ? editUiSchema : reviewUiSchema} From e39d2e8a1dcf990b39392d1c26cb8aaf64ee9b6e Mon Sep 17 00:00:00 2001 From: Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> Date: Tue, 14 May 2024 14:42:11 -0700 Subject: [PATCH 14/34] chore: cleanup --- app/pages/analyst/cbc/[cbcId].tsx | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/app/pages/analyst/cbc/[cbcId].tsx b/app/pages/analyst/cbc/[cbcId].tsx index 67c7a78850..6964b625f8 100644 --- a/app/pages/analyst/cbc/[cbcId].tsx +++ b/app/pages/analyst/cbc/[cbcId].tsx @@ -8,20 +8,6 @@ import CbcAnalystLayout from 'components/Analyst/CBC/CbcAnalystLayout'; import CbcForm from 'components/Analyst/CBC/CbcForm'; import styled from 'styled-components'; import ReviewTheme from 'components/Review/ReviewTheme'; -// import cbcTombstone from 'formSchema/analyst/cbc/tombstone'; -// import tombstoneUiSchema from 'formSchema/uiSchema/cbc/tombstoneUiSchema'; -// import projectType from 'formSchema/analyst/cbc/projectType'; -// import projectTypeUiSchema from 'formSchema/uiSchema/cbc/projectTypeUiSchema'; -// import locationsAndCounts from 'formSchema/analyst/cbc/locationsAndCounts'; -// import locationsAndCountsUiSchema from 'formSchema/uiSchema/cbc/locationsAndCountsUiSchema'; -// import funding from 'formSchema/analyst/cbc/funding'; -// import fundingUiSchema from 'formSchema/uiSchema/cbc/fundingUiSchema'; -// import eventsAndDates from 'formSchema/analyst/cbc/eventsAndDates'; -// import eventsAndDatesUiSchema from 'formSchema/uiSchema/cbc/eventsAndDatesUiSchema'; -// import miscellaneous from 'formSchema/analyst/cbc/miscellaneous'; -// import miscellaneousUiSchema from 'formSchema/uiSchema/cbc/miscellaneousUiSchema'; -// import projectDataReviews from 'formSchema/analyst/cbc/projectDataReviews'; -// import projectDataReviewsUiSchema from 'formSchema/uiSchema/cbc/projectDataReviewsUiSchema'; import { useRef, useState } from 'react'; import { ProjectTheme } from 'components/Analyst/Project'; import { useUpdateCbcDataByRowIdMutation } from 'schema/mutations/cbc/updateCbcData'; From 6dba2e954c7641f4af0dd3bf2a8e6f047db61f4a Mon Sep 17 00:00:00 2001 From: Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> Date: Tue, 14 May 2024 14:43:07 -0700 Subject: [PATCH 15/34] chore: cleanup --- app/components/Analyst/CBC/AssignField.tsx | 2 -- app/components/Analyst/CBC/CbcChangeStatus.tsx | 3 --- 2 files changed, 5 deletions(-) diff --git a/app/components/Analyst/CBC/AssignField.tsx b/app/components/Analyst/CBC/AssignField.tsx index e64b69a948..e2b4bfcc9c 100644 --- a/app/components/Analyst/CBC/AssignField.tsx +++ b/app/components/Analyst/CBC/AssignField.tsx @@ -41,8 +41,6 @@ const AssignField = ({ fieldName, fieldOptions, fieldType, cbc }) => { ? jsonData[fieldName].toString() || null : jsonData[fieldName] || null ); - console.log('fieldValue', fieldValue); - console.log(`${fieldName} queryFragment:`, queryFragment); const handleChange = (e) => { const { rowId } = queryFragment.cbcDataByCbcId.edges[0].node; diff --git a/app/components/Analyst/CBC/CbcChangeStatus.tsx b/app/components/Analyst/CBC/CbcChangeStatus.tsx index afbc576436..dec4918170 100644 --- a/app/components/Analyst/CBC/CbcChangeStatus.tsx +++ b/app/components/Analyst/CBC/CbcChangeStatus.tsx @@ -90,9 +90,6 @@ const CbcChangeStatus: React.FC = ({ cbc, status, statusList }) => { `, cbc ); - console.log(queryFragment); - console.log('status', status); - console.log('converted status', getStatus(status)); const [updateStatus] = useUpdateCbcDataByRowIdMutation(); const [currentStatus, setCurrentStatus] = useState(getStatus(status)); From c0fe36a9556fd2ff90559916e2e153659d11b3a2 Mon Sep 17 00:00:00 2001 From: Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> Date: Tue, 14 May 2024 15:05:01 -0700 Subject: [PATCH 16/34] feat: extend header banner, add cbc beta banner --- app/components/HeaderBanner.tsx | 21 +++++++++++++++++---- app/components/Navigation.tsx | 10 ++++++++++ 2 files changed, 27 insertions(+), 4 deletions(-) diff --git a/app/components/HeaderBanner.tsx b/app/components/HeaderBanner.tsx index 44addb88d0..5d72d17307 100644 --- a/app/components/HeaderBanner.tsx +++ b/app/components/HeaderBanner.tsx @@ -8,11 +8,12 @@ import getConfig from 'next/config'; import styled from 'styled-components'; interface StyledHeaderBannerProps { - type: 'success' | 'warn' | 'error'; + type: 'success' | 'warn' | 'error' | 'custom'; } const StyledBaseHeaderBanner = styled(BaseHeader)` - color: ${(props) => props.theme.color.white}; + color: ${(props) => + props.type === 'custom' ? props.customFontColor : props.theme.color.white}; font-size: 11px; font-weight: bold; padding-left: 30px; @@ -26,6 +27,9 @@ const StyledBaseHeaderBanner = styled(BaseHeader)` if (props.type === 'success') { return props.theme.color.success; } + if (props.type === 'custom') { + return props.customBannerColor; + } return props.theme.color.backgroundMagenta; }}; `; @@ -38,14 +42,18 @@ const StyledDiv = styled('div')` interface Props { message: string; - type: 'success' | 'warn' | 'error'; + type: 'success' | 'warn' | 'error' | 'custom'; environmentIndicator: boolean; + customBannerColor?: string; + customFontColor?: string; } const HeaderBanner: React.FC = ({ message, type, environmentIndicator, + customBannerColor, + customFontColor, }) => { const publicRuntimeConfig = getConfig()?.publicRuntimeConfig; const namespace = publicRuntimeConfig?.OPENSHIFT_APP_NAMESPACE; @@ -63,7 +71,12 @@ const HeaderBanner: React.FC = ({ )} {message && ( - + = ({ isLoggedIn = false, title = '' }) => { const router = useRouter(); const isApplicantPortal = router?.pathname.startsWith('/applicantportal'); + const isCbcPage = router?.pathname.includes('/cbc/'); const useCustomLogin = useFeature('use_custom_login').value; const useDirectIdir = useFeature('use_direct_idir').value; const { value: banner } = useFeature('header-banner'); @@ -118,6 +119,15 @@ const Navigation: React.FC = ({ isLoggedIn = false, title = '' }) => { + {isCbcPage && ( + + )} {isApplicantPortal && } ); From 467c4751815c27a226383fcabbd7d0065ed58245 Mon Sep 17 00:00:00 2001 From: Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> Date: Tue, 14 May 2024 15:19:36 -0700 Subject: [PATCH 17/34] feat: feature flag cbc view and edit --- .../AnalystDashboard/AllDashboard.tsx | 22 ++++++++++++++----- app/pages/analyst/cbc/[cbcId].tsx | 20 ++++++++++------- 2 files changed, 28 insertions(+), 14 deletions(-) diff --git a/app/components/AnalystDashboard/AllDashboard.tsx b/app/components/AnalystDashboard/AllDashboard.tsx index 09af37d1f6..b73a88775a 100644 --- a/app/components/AnalystDashboard/AllDashboard.tsx +++ b/app/components/AnalystDashboard/AllDashboard.tsx @@ -99,12 +99,19 @@ const muiTableHeadCellProps = { const CcbcIdCell = ({ cell }) => { const applicationId = cell.row.original?.rowId; const isCbcProject = cell.row.original?.isCbcProject; + const linkCbc = cell.row.original?.showLink; return ( - - {cell.getValue()} - + <> + {linkCbc ? ( + + {cell.getValue()} + + ) : ( + cell.getValue() + )} + ); }; @@ -218,6 +225,7 @@ const AllDashboardTable: React.FC = ({ query }) => { ); const showLeadFeatureFlag = useFeature('show_lead').value ?? false; const showCbcProjects = useFeature('show_cbc_projects').value ?? false; + const showCbcProjectsLink = useFeature('show_cbc_view_link').value ?? false; const [columnVisibility, setColumnVisibility] = useState( { Lead: false } ); @@ -379,6 +387,7 @@ const AllDashboardTable: React.FC = ({ query }) => { application.node.applicationSowDataByApplicationId?.nodes[0]?.jsonData ?.projectTitle || application.node.projectName, isCbcProject: false, + showLink: true, })), ...(showCbcProjects ? allCbcData.edges.map((project) => ({ @@ -396,10 +405,11 @@ const AllDashboardTable: React.FC = ({ query }) => { project.node.jsonData.currentOperatingName || null, lead: null, isCbcProject: true, + showLink: showCbcProjectsLink, })) ?? [] : []), ]; - }, [allApplications, allCbcData, showCbcProjects]); + }, [allApplications, allCbcData, showCbcProjects, showCbcProjectsLink]); const columns = useMemo[]>(() => { const uniqueIntakeNumbers = [ diff --git a/app/pages/analyst/cbc/[cbcId].tsx b/app/pages/analyst/cbc/[cbcId].tsx index 6964b625f8..f6f913b172 100644 --- a/app/pages/analyst/cbc/[cbcId].tsx +++ b/app/pages/analyst/cbc/[cbcId].tsx @@ -14,6 +14,7 @@ import { useUpdateCbcDataByRowIdMutation } from 'schema/mutations/cbc/updateCbcD import review from 'formSchema/analyst/cbc/review'; import reviewUiSchema from 'formSchema/uiSchema/cbc/reviewUiSchema'; import editUiSchema from 'formSchema/uiSchema/cbc/editUiSchema'; +import { useFeature } from '@growthbook/growthbook-react'; const getCbcQuery = graphql` query CbcIdQuery($rowId: Int!) { @@ -60,6 +61,7 @@ const Cbc = ({ }: RelayProps, CbcIdQuery>) => { const query = usePreloadedQuery(getCbcQuery, preloadedQuery); + const allowEdit = useFeature('show_cbc_edit').value ?? false; const [toggleOverride, setToggleExpandOrCollapseAll] = useState< boolean | undefined >(undefined); @@ -213,14 +215,16 @@ const Cbc = ({ {' | '} )} - { - setEditMode(!editMode); - }} - type="button" - > - {editMode ? 'Cancel quick edit' : 'Quick edit'} - + {allowEdit && ( + { + setEditMode(!editMode); + }} + type="button" + > + {editMode ? 'Cancel quick edit' : 'Quick edit'} + + )}
Date: Tue, 14 May 2024 15:27:02 -0700 Subject: [PATCH 18/34] chore: add feature flag to cbc header edits --- app/components/Analyst/CBC/AssignField.tsx | 10 +++++++++- app/components/Analyst/CBC/CbcChangeStatus.tsx | 4 +++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/app/components/Analyst/CBC/AssignField.tsx b/app/components/Analyst/CBC/AssignField.tsx index e2b4bfcc9c..bba99c9e32 100644 --- a/app/components/Analyst/CBC/AssignField.tsx +++ b/app/components/Analyst/CBC/AssignField.tsx @@ -1,3 +1,4 @@ +import { useFeature } from '@growthbook/growthbook-react'; import { useState } from 'react'; import { graphql, useFragment } from 'react-relay'; import { useUpdateCbcDataByRowIdMutation } from 'schema/mutations/cbc/updateCbcData'; @@ -42,6 +43,8 @@ const AssignField = ({ fieldName, fieldOptions, fieldType, cbc }) => { : jsonData[fieldName] || null ); + const allowEdit = useFeature('show_cbc_edit').value ?? false; + const handleChange = (e) => { const { rowId } = queryFragment.cbcDataByCbcId.edges[0].node; updateField({ @@ -74,7 +77,12 @@ const AssignField = ({ fieldName, fieldOptions, fieldType, cbc }) => { > {fieldOptions.map((option) => { return ( - ); diff --git a/app/components/Analyst/CBC/CbcChangeStatus.tsx b/app/components/Analyst/CBC/CbcChangeStatus.tsx index dec4918170..4a5361c0d1 100644 --- a/app/components/Analyst/CBC/CbcChangeStatus.tsx +++ b/app/components/Analyst/CBC/CbcChangeStatus.tsx @@ -3,6 +3,7 @@ import styled from 'styled-components'; import statusStyles from 'data/statusStyles'; import { useUpdateCbcDataByRowIdMutation } from 'schema/mutations/cbc/updateCbcData'; import { useState } from 'react'; +import { useFeature } from '@growthbook/growthbook-react'; interface DropdownProps { statusStyles: { @@ -92,6 +93,7 @@ const CbcChangeStatus: React.FC = ({ cbc, status, statusList }) => { ); const [updateStatus] = useUpdateCbcDataByRowIdMutation(); const [currentStatus, setCurrentStatus] = useState(getStatus(status)); + const allowEdit = useFeature('show_cbc_edit').value ?? false; const handleChange = (e) => { const newStatus = e.target.value; @@ -130,7 +132,7 @@ const CbcChangeStatus: React.FC = ({ cbc, status, statusList }) => { const { description, name, id } = statusType; return ( - + {description} ); From b292bfae06b0019aa7ae8235d83657f65645d819 Mon Sep 17 00:00:00 2001 From: Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> Date: Tue, 14 May 2024 15:39:40 -0700 Subject: [PATCH 19/34] chore: correct revert for cbc_data table --- db/revert/tables/{cbc_projects_data.sql => cbc_data.sql} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename db/revert/tables/{cbc_projects_data.sql => cbc_data.sql} (100%) diff --git a/db/revert/tables/cbc_projects_data.sql b/db/revert/tables/cbc_data.sql similarity index 100% rename from db/revert/tables/cbc_projects_data.sql rename to db/revert/tables/cbc_data.sql From 792bc6a133f5c58a6c88d428812834649e5f5be1 Mon Sep 17 00:00:00 2001 From: Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> Date: Tue, 14 May 2024 15:40:11 -0700 Subject: [PATCH 20/34] chore: properly escape background --- app/components/Analyst/CBC/CbcChangeStatus.tsx | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/app/components/Analyst/CBC/CbcChangeStatus.tsx b/app/components/Analyst/CBC/CbcChangeStatus.tsx index 4a5361c0d1..aabd191ca6 100644 --- a/app/components/Analyst/CBC/CbcChangeStatus.tsx +++ b/app/components/Analyst/CBC/CbcChangeStatus.tsx @@ -21,12 +21,13 @@ const StyledDropdown = styled.select` padding: 6px 12px; height: 32px; width: ${(props) => props.statusStyles?.pillWidth}; - background: ${(props) => props.statusStyles?.backgroundColor} - url("data:image/svg+xml;utf8, - ") - no-repeat; + background: ${(props) => ` + ${props.statusStyles?.backgroundColor} url("data:image/svg+xml;utf8, + + + ") + no-repeat; +`}; background-position: right 5px top 5px; :focus { From 8747ab9498f8d1303ff4b7900bd86dfe39476ece Mon Sep 17 00:00:00 2001 From: Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> Date: Tue, 14 May 2024 15:56:49 -0700 Subject: [PATCH 21/34] test: update dashboard test data for cbc --- app/tests/pages/analyst/dashboard.test.tsx | 22 +++++++++++++++------- 1 file changed, 15 insertions(+), 7 deletions(-) diff --git a/app/tests/pages/analyst/dashboard.test.tsx b/app/tests/pages/analyst/dashboard.test.tsx index 9b59d3f02d..c3eebbc7eb 100644 --- a/app/tests/pages/analyst/dashboard.test.tsx +++ b/app/tests/pages/analyst/dashboard.test.tsx @@ -92,11 +92,11 @@ const mockQueryPayload = { }, ], }, - allCbcProjects: { - nodes: [ + allCbcData: { + edges: [ { - jsonData: [ - { + node: { + jsonData: { phase: 2, intake: 1, errorLog: [], @@ -141,7 +141,11 @@ const mockQueryPayload = { nditConditionalApprovalLetterSent: 'YES', bindingAgreementSignedNditRecipient: 'YES', }, - { + }, + }, + { + node: { + jsonData: { phase: 2, intake: 1, errorLog: [], @@ -186,7 +190,11 @@ const mockQueryPayload = { nditConditionalApprovalLetterSent: 'YES', bindingAgreementSignedNditRecipient: 'YES', }, - { + }, + }, + { + node: { + jsonData: { phase: 2, intake: 1, errorLog: [], @@ -231,7 +239,7 @@ const mockQueryPayload = { nditConditionalApprovalLetterSent: 'YES', bindingAgreementSignedNditRecipient: 'YES', }, - ], + }, }, ], }, From 1d79147b02acf6a0dea8acf39a40f6a222a7af3a Mon Sep 17 00:00:00 2001 From: Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> Date: Tue, 14 May 2024 16:24:02 -0700 Subject: [PATCH 22/34] test: update mock perform query --- app/tests/backend/lib/sharepoint.test.ts | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/app/tests/backend/lib/sharepoint.test.ts b/app/tests/backend/lib/sharepoint.test.ts index 9444d1678c..9f6ba7353e 100644 --- a/app/tests/backend/lib/sharepoint.test.ts +++ b/app/tests/backend/lib/sharepoint.test.ts @@ -114,7 +114,15 @@ describe('The SharePoint API', () => { ); mocked(performQuery).mockImplementation(async () => { - return {}; + return { + data: { + createCbc: { + cbc: { + rowId: 1, + }, + }, + }, + }; }); mocked(getAuthRole).mockImplementation(() => { From 13b3826742fd236e62690b469408b2e033d9e7be Mon Sep 17 00:00:00 2001 From: Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> Date: Wed, 15 May 2024 13:30:29 -0700 Subject: [PATCH 23/34] test: update mocked performQuery --- .../lib/excel_import/cbc_project.test.ts | 89 +++++++++++++++---- app/tests/backend/lib/sharepoint.test.ts | 12 +++ 2 files changed, 84 insertions(+), 17 deletions(-) diff --git a/app/tests/backend/lib/excel_import/cbc_project.test.ts b/app/tests/backend/lib/excel_import/cbc_project.test.ts index 9273cf0c57..91b60ff1ec 100644 --- a/app/tests/backend/lib/excel_import/cbc_project.test.ts +++ b/app/tests/backend/lib/excel_import/cbc_project.test.ts @@ -102,6 +102,16 @@ describe('cbc_project', () => { }, clientMutationId: '1', }, + cbcByProjectNumber: { + cbcDataByProjectNumber: { + nodes: [], + }, + }, + createCbc: { + cbc: { + rowId: 1, + }, + }, }, }; }); @@ -119,6 +129,16 @@ describe('cbc_project', () => { }, clientMutationId: '1', }, + cbcByProjectNumber: { + cbcDataByProjectNumber: { + nodes: [], + }, + }, + createCbc: { + cbc: { + rowId: 1, + }, + }, }, errorLog: [], }); @@ -189,6 +209,16 @@ describe('cbc_project', () => { }, clientMutationId: '1', }, + cbcByProjectNumber: { + cbcDataByProjectNumber: { + nodes: [], + }, + }, + createCbc: { + cbc: { + rowId: 1, + }, + }, }, }; }); @@ -205,6 +235,16 @@ describe('cbc_project', () => { }, clientMutationId: '1', }, + cbcByProjectNumber: { + cbcDataByProjectNumber: { + nodes: [], + }, + }, + createCbc: { + cbc: { + rowId: 1, + }, + }, }, errorLog: [ 'Project #9999: communitiesAndLocalesCount not imported due to formatting error - value should be a number', @@ -280,10 +320,8 @@ describe('cbc_project', () => { ]); const wb = XLSX.read(null); - let mockVariables; - mocked(performQuery).mockImplementation(async (id, variables) => { - mockVariables = variables; + mocked(performQuery).mockImplementation(async () => { return { data: { createCbcProject: { @@ -294,24 +332,41 @@ describe('cbc_project', () => { }, clientMutationId: '1', }, + cbcByProjectNumber: { + cbcDataByProjectNumber: { + nodes: [], + }, + }, + createCbc: { + cbc: { + rowId: 1, + }, + }, }, }; }); - await LoadCbcProjectData(wb, 'CBC Project', null, request); - - expect(mockVariables.input._jsonData[0].phase).toEqual('4b'); - expect(mockVariables.input._jsonData[0].projectStatus).toEqual( - 'Not Applicable' - ); - expect(mockVariables.input._jsonData[0].projectTitle).toEqual( - 'Program Fee (1%) - Community' - ); - expect(mockVariables.input._jsonData[0].applicantContractualName).toEqual( - 'Northern Development' - ); - expect(mockVariables.input._jsonData[0].currentOperatingName).toEqual( - 'Northern Development' + const result = (await LoadCbcProjectData( + wb, + 'CBC Project', + null, + request + )) as any; + expect(result.data.createCbcProject.cbcProject.jsonData[0].phase).toEqual( + '4b' ); + expect( + result.data.createCbcProject.cbcProject.jsonData[0].projectStatus + ).toEqual('Not Applicable'); + expect( + result.data.createCbcProject.cbcProject.jsonData[0].projectTitle + ).toEqual('Program Fee (1%) - Community'); + expect( + result.data.createCbcProject.cbcProject.jsonData[0] + .applicantContractualName + ).toEqual('Northern Development'); + expect( + result.data.createCbcProject.cbcProject.jsonData[0].currentOperatingName + ).toEqual('Northern Development'); }); }); diff --git a/app/tests/backend/lib/sharepoint.test.ts b/app/tests/backend/lib/sharepoint.test.ts index 9f6ba7353e..d2ae473c73 100644 --- a/app/tests/backend/lib/sharepoint.test.ts +++ b/app/tests/backend/lib/sharepoint.test.ts @@ -121,6 +121,18 @@ describe('The SharePoint API', () => { rowId: 1, }, }, + cbcByProjectNumber: { + cbcDataByProjectNumber: { + nodes: [], + }, + }, + createCbcProject: { + cbcProject: { + rowId: 1, + id: '1', + jsonData: [fakeSummary], + }, + }, }, }; }); From 8831917aa9e703a355bb296b0d2a0dee447a6b25 Mon Sep 17 00:00:00 2001 From: Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> Date: Wed, 15 May 2024 13:39:49 -0700 Subject: [PATCH 24/34] chore: merge conflicts --- app/schema/schema.graphql | 3132 ++++++++++++++++++++++++++++++------- 1 file changed, 2576 insertions(+), 556 deletions(-) diff --git a/app/schema/schema.graphql b/app/schema/schema.graphql index 56943ee1d5..47a88ce763 100644 --- a/app/schema/schema.graphql +++ b/app/schema/schema.graphql @@ -581,6 +581,42 @@ type Query implements Node { filter: ApplicationPackageFilter ): ApplicationPackagesConnection + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + allApplicationPendingChangeRequests( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationPendingChangeRequestCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection + """ Reads and enables pagination through a set of `ApplicationProjectType`. """ @@ -1690,6 +1726,7 @@ type Query implements Node { applicationMilestoneDataByRowId(rowId: Int!): ApplicationMilestoneData applicationMilestoneExcelDataByRowId(rowId: Int!): ApplicationMilestoneExcelData applicationPackageByRowId(rowId: Int!): ApplicationPackage + applicationPendingChangeRequestByRowId(rowId: Int!): ApplicationPendingChangeRequest applicationProjectTypeByRowId(rowId: Int!): ApplicationProjectType applicationRfiDataByRfiDataIdAndApplicationId(rfiDataId: Int!, applicationId: Int!): ApplicationRfiData applicationSowDataByRowId(rowId: Int!): ApplicationSowData @@ -1908,6 +1945,16 @@ type Query implements Node { id: ID! ): ApplicationPackage + """ + Reads a single `ApplicationPendingChangeRequest` using its globally unique `ID`. + """ + applicationPendingChangeRequest( + """ + The globally unique `ID` to be used in selecting a single `ApplicationPendingChangeRequest`. + """ + id: ID! + ): ApplicationPendingChangeRequest + """ Reads a single `ApplicationProjectType` using its globally unique `ID`. """ @@ -6020,6 +6067,114 @@ type CcbcUser implements Node { filter: NotificationFilter ): NotificationsConnection! + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationPendingChangeRequestCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! + + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationPendingChangeRequestCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! + + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationPendingChangeRequestCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! + """Reads and enables pagination through a set of `Cbc`.""" cbcsByCreatedBy( """Only read the first `n` values of the set.""" @@ -16832,8 +16987,8 @@ type CcbcUser implements Node { filter: CcbcUserFilter ): CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationPendingChangeRequestCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -16852,22 +17007,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 - ): CcbcUserCcbcUsersByCbcCreatedByAndUpdatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcCreatedByAndArchivedBy( + ccbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16898,10 +17053,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcUpdatedByAndCreatedBy( + ccbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -16932,10 +17087,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationPendingChangeRequestUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -16954,22 +17109,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 - ): CcbcUserCcbcUsersByCbcUpdatedByAndArchivedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcArchivedByAndCreatedBy( + ccbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17000,10 +17155,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcArchivedByAndUpdatedBy( + ccbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -17034,44 +17189,10 @@ type CcbcUser implements Node { 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`.""" - cbcsByCbcDataCreatedByAndCbcId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int + ): CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyConnection! - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): CcbcUserCbcsByCbcDataCreatedByAndCbcIdManyToManyConnection! - - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcDataCreatedByAndProjectNumber( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationPendingChangeRequestArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -17090,22 +17211,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CcbcUserCbcsByCbcDataCreatedByAndProjectNumberManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17136,10 +17257,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataCreatedByAndArchivedBy( + ccbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17170,44 +17291,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataCreatedByAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `Cbc`.""" - 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! + ): CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcDataUpdatedByAndProjectNumber( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17226,22 +17313,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CcbcUserCbcsByCbcDataUpdatedByAndProjectNumberManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCbcCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataUpdatedByAndCreatedBy( + ccbcUsersByCbcCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -17272,10 +17359,384 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataUpdatedByAndArchivedBy( + ccbcUsersByCbcUpdatedByAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): CcbcUserCcbcUsersByCbcUpdatedByAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcUpdatedByAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): CcbcUserCcbcUsersByCbcUpdatedByAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcArchivedByAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): 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`.""" + cbcsByCbcDataCreatedByAndCbcId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): CcbcUserCbcsByCbcDataCreatedByAndCbcIdManyToManyConnection! + + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcDataCreatedByAndProjectNumber( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcFilter + ): CcbcUserCbcsByCbcDataCreatedByAndProjectNumberManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcDataCreatedByAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): CcbcUserCcbcUsersByCbcDataCreatedByAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcDataCreatedByAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): CcbcUserCcbcUsersByCbcDataCreatedByAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `Cbc`.""" + 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 @@ -18260,6 +18721,30 @@ input CcbcUserFilter { """Some related `notificationsByArchivedBy` exist.""" notificationsByArchivedByExist: Boolean + """ + Filter by the object’s `applicationPendingChangeRequestsByCreatedBy` relation. + """ + applicationPendingChangeRequestsByCreatedBy: CcbcUserToManyApplicationPendingChangeRequestFilter + + """Some related `applicationPendingChangeRequestsByCreatedBy` exist.""" + applicationPendingChangeRequestsByCreatedByExist: Boolean + + """ + Filter by the object’s `applicationPendingChangeRequestsByUpdatedBy` relation. + """ + applicationPendingChangeRequestsByUpdatedBy: CcbcUserToManyApplicationPendingChangeRequestFilter + + """Some related `applicationPendingChangeRequestsByUpdatedBy` exist.""" + applicationPendingChangeRequestsByUpdatedByExist: Boolean + + """ + Filter by the object’s `applicationPendingChangeRequestsByArchivedBy` relation. + """ + applicationPendingChangeRequestsByArchivedBy: CcbcUserToManyApplicationPendingChangeRequestFilter + + """Some related `applicationPendingChangeRequestsByArchivedBy` exist.""" + applicationPendingChangeRequestsByArchivedByExist: Boolean + """Filter by the object’s `cbcsByCreatedBy` relation.""" cbcsByCreatedBy: CcbcUserToManyCbcFilter @@ -19031,6 +19516,14 @@ input ApplicationFilter { """Some related `notificationsByApplicationId` exist.""" notificationsByApplicationIdExist: Boolean + """ + Filter by the object’s `applicationPendingChangeRequestsByApplicationId` relation. + """ + applicationPendingChangeRequestsByApplicationId: ApplicationToManyApplicationPendingChangeRequestFilter + + """Some related `applicationPendingChangeRequestsByApplicationId` exist.""" + applicationPendingChangeRequestsByApplicationIdExist: Boolean + """Filter by the object’s `intakeByIntakeId` relation.""" intakeByIntakeId: IntakeFilter @@ -22419,6 +22912,94 @@ input EmailRecordToManyNotificationFilter { none: NotificationFilter } +""" +A filter to be used against many `ApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationPendingChangeRequestFilter { + """ + Every related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationPendingChangeRequestFilter + + """ + Some related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationPendingChangeRequestFilter + + """ + No related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationPendingChangeRequestFilter +} + +""" +A filter to be used against `ApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationPendingChangeRequestFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter + + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter + + """Filter by the object’s `isPending` field.""" + isPending: BooleanFilter + + """Filter by the object’s `comment` field.""" + comment: StringFilter + + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter + + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter + + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter + + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter + + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter + + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter + + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter + + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean + + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter + + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean + + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter + + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean + + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter + + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean + + """Checks for all expressions in this list.""" + and: [ApplicationPendingChangeRequestFilter!] + + """Checks for any expressions in this list.""" + or: [ApplicationPendingChangeRequestFilter!] + + """Negates the expression.""" + not: ApplicationPendingChangeRequestFilter +} + """ A filter to be used against `GaplessCounter` object types. All fields are combined with a logical ‘and.’ """ @@ -23385,6 +23966,26 @@ input CcbcUserToManyNotificationFilter { none: NotificationFilter } +""" +A filter to be used against many `ApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyApplicationPendingChangeRequestFilter { + """ + Every related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationPendingChangeRequestFilter + + """ + Some related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationPendingChangeRequestFilter + + """ + No related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationPendingChangeRequestFilter +} + """ A filter to be used against many `Cbc` object types. All fields are combined with a logical ‘and.’ """ @@ -25286,6 +25887,42 @@ type Application implements Node { filter: NotificationFilter ): NotificationsConnection! + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationPendingChangeRequestCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! + """Reads and enables pagination through a set of `AssessmentData`.""" allAssessments( """Only read the first `n` values of the set.""" @@ -27775,153 +28412,255 @@ type Application implements Node { """ filter: CcbcUserFilter ): ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyConnection! -} - -"""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( + ccbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyConnection! +} + +"""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 @@ -37448,6 +38187,159 @@ type NotificationsEdge { node: Notification } +"""A connection to a list of `ApplicationPendingChangeRequest` values.""" +type ApplicationPendingChangeRequestsConnection { + """A list of `ApplicationPendingChangeRequest` objects.""" + nodes: [ApplicationPendingChangeRequest]! + + """ + A list of edges which contains the `ApplicationPendingChangeRequest` and cursor to aid in pagination. + """ + edges: [ApplicationPendingChangeRequestsEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """ + The count of *all* `ApplicationPendingChangeRequest` you could get from the connection. + """ + totalCount: Int! +} + +"""Table containing the pending change request details of the application""" +type ApplicationPendingChangeRequest implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! + + """Unique ID for the application_pending_change_request""" + rowId: Int! + + """ + ID of the application this application_pending_change_request belongs to + """ + applicationId: Int + + """Column defining if the change request pending or not""" + isPending: Boolean + + """ + Column containing the comment for the change request or completion of the change request + """ + comment: String + + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime! + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime! + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime + + """ + Reads a single `Application` that is related to this `ApplicationPendingChangeRequest`. + """ + applicationByApplicationId: Application + + """ + Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. + """ + ccbcUserByCreatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. + """ + ccbcUserByUpdatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. + """ + ccbcUserByArchivedBy: CcbcUser +} + +"""A `ApplicationPendingChangeRequest` edge in the connection.""" +type ApplicationPendingChangeRequestsEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `ApplicationPendingChangeRequest` at the end of the edge.""" + node: ApplicationPendingChangeRequest +} + +"""Methods to use when ordering `ApplicationPendingChangeRequest`.""" +enum ApplicationPendingChangeRequestsOrderBy { + NATURAL + ID_ASC + ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + IS_PENDING_ASC + IS_PENDING_DESC + COMMENT_ASC + COMMENT_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} + +""" +A condition to be used against `ApplicationPendingChangeRequest` object types. +All fields are tested for equality and combined with a logical ‘and.’ +""" +input ApplicationPendingChangeRequestCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int + + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int + + """Checks for equality with the object’s `isPending` field.""" + isPending: Boolean + + """Checks for equality with the object’s `comment` field.""" + comment: String + + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int + + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime +} + """A connection to a list of `Announcement` values.""" type AnnouncementsConnection { """A list of `Announcement` objects.""" @@ -42309,6 +43201,204 @@ type ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyEdge ): NotificationsConnection! } +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. +""" +type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + """ + edges: [ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +""" +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +""" +type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationPendingChangeRequestCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! +} + +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. +""" +type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + """ + edges: [ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +""" +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +""" +type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationPendingChangeRequestCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! +} + +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. +""" +type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + """ + edges: [ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +""" +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +""" +type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationPendingChangeRequestCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! +} + """A `Application` edge in the connection.""" type ApplicationsEdge { """A cursor for use in pagination.""" @@ -63268,14 +64358,510 @@ type CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyEdge { """ A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + """ + edges: [CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `Notification`.""" + notificationsByUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: NotificationCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: NotificationFilter + ): NotificationsConnection! +} + +""" +A connection to a list of `CcbcUser` values, with data from `Notification`. +""" +type CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + """ + edges: [CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `Notification`.""" + notificationsByArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: NotificationCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: NotificationFilter + ): NotificationsConnection! +} + +""" +A connection to a list of `Application` values, with data from `Notification`. +""" +type CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! + + """ + A list of edges which contains the `Application`, info from the `Notification`, and the cursor to aid in pagination. + """ + edges: [CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyEdge!]! + + """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 `Notification`.""" +type CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Application` at the end of the edge.""" + node: Application + + """Reads and enables pagination through a set of `Notification`.""" + notificationsByApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: NotificationCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: NotificationFilter + ): NotificationsConnection! +} + +""" +A connection to a list of `EmailRecord` values, with data from `Notification`. +""" +type CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyConnection { + """A list of `EmailRecord` objects.""" + nodes: [EmailRecord]! + + """ + A list of edges which contains the `EmailRecord`, info from the `Notification`, and the cursor to aid in pagination. + """ + edges: [CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `EmailRecord` you could get from the connection.""" + totalCount: Int! +} + +"""A `EmailRecord` edge in the connection, with data from `Notification`.""" +type CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `EmailRecord` at the end of the edge.""" + node: EmailRecord + + """Reads and enables pagination through a set of `Notification`.""" + notificationsByEmailRecordId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: NotificationCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: NotificationFilter + ): NotificationsConnection! +} + +""" +A connection to a list of `CcbcUser` values, with data from `Notification`. +""" +type CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + """ + edges: [CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `Notification`.""" + notificationsByCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: NotificationCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: NotificationFilter + ): NotificationsConnection! +} + +""" +A connection to a list of `CcbcUser` values, with data from `Notification`. +""" +type CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + """ + edges: [CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `Notification`.""" + notificationsByArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: NotificationCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: NotificationFilter + ): NotificationsConnection! +} + +""" +A connection to a list of `Application` values, with data from `Notification`. +""" +type CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! + + """ + A list of edges which contains the `Application`, info from the `Notification`, and the cursor to aid in pagination. + """ + edges: [CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyEdge!]! + + """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 `Notification`.""" +type CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Application` at the end of the edge.""" + node: Application + + """Reads and enables pagination through a set of `Notification`.""" + notificationsByApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: NotificationCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: NotificationFilter + ): NotificationsConnection! +} + +""" +A connection to a list of `EmailRecord` values, with data from `Notification`. +""" +type CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyConnection { + """A list of `EmailRecord` objects.""" + nodes: [EmailRecord]! + + """ + A list of edges which contains the `EmailRecord`, info from the `Notification`, and the cursor to aid in pagination. + """ + edges: [CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `EmailRecord` you could get from the connection.""" + totalCount: Int! +} + +"""A `EmailRecord` edge in the connection, with data from `Notification`.""" +type CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `EmailRecord` at the end of the edge.""" + node: EmailRecord + + """Reads and enables pagination through a set of `Notification`.""" + notificationsByEmailRecordId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: NotificationCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: NotificationFilter + ): NotificationsConnection! +} + +""" +A connection to a list of `CcbcUser` values, with data from `Notification`. +""" +type CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63285,7 +64871,7 @@ type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyConnection { } """A `CcbcUser` edge in the connection, with data from `Notification`.""" -type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -63293,7 +64879,7 @@ type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `Notification`.""" - notificationsByUpdatedBy( + notificationsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63330,14 +64916,14 @@ type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyEdge { """ A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63347,7 +64933,7 @@ type CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyConnection { } """A `CcbcUser` edge in the connection, with data from `Notification`.""" -type CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -63355,7 +64941,7 @@ type CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `Notification`.""" - notificationsByArchivedBy( + notificationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63390,16 +64976,16 @@ type CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyEdge { } """ -A connection to a list of `Application` values, with data from `Notification`. +A connection to a list of `Application` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63408,16 +64994,20 @@ type CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyConnec totalCount: Int! } -"""A `Application` edge in the connection, with data from `Notification`.""" -type CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationPendingChangeRequest`. +""" +type CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `Notification`.""" - notificationsByApplicationId( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -63436,50 +65026,54 @@ type CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `EmailRecord` values, with data from `Notification`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyConnection { - """A list of `EmailRecord` objects.""" - nodes: [EmailRecord]! +type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `EmailRecord`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `EmailRecord` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `EmailRecord` edge in the connection, with data from `Notification`.""" -type CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `EmailRecord` at the end of the edge.""" - node: EmailRecord + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByEmailRecordId( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63498,32 +65092,32 @@ type CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Notification`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63532,16 +65126,20 @@ type CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -63560,32 +65158,98 @@ type CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Notification`. +A connection to a list of `Application` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! + + """ + A list of edges which contains the `Application`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + """ + edges: [CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyEdge!]! + + """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 `ApplicationPendingChangeRequest`. +""" +type CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Application` at the end of the edge.""" + node: Application + + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationPendingChangeRequestCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! +} + +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63594,16 +65258,20 @@ type CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63622,50 +65290,54 @@ type CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `Application` values, with data from `Notification`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Application` edge in the connection, with data from `Notification`.""" -type CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByApplicationId( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -63684,50 +65356,54 @@ type CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `EmailRecord` values, with data from `Notification`. +A connection to a list of `Application` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyConnection { - """A list of `EmailRecord` objects.""" - nodes: [EmailRecord]! +type CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `EmailRecord`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `EmailRecord` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `EmailRecord` edge in the connection, with data from `Notification`.""" -type CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationPendingChangeRequest`. +""" +type CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `EmailRecord` at the end of the edge.""" - node: EmailRecord + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `Notification`.""" - notificationsByEmailRecordId( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -63746,32 +65422,32 @@ type CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Notification`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63780,16 +65456,20 @@ type CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63808,32 +65488,32 @@ type CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Notification`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63842,16 +65522,20 @@ type CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63870,19 +65554,19 @@ type CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """A connection to a list of `CcbcUser` values, with data from `Cbc`.""" @@ -65793,6 +67477,14 @@ type Mutation { input: CreateApplicationPackageInput! ): CreateApplicationPackagePayload + """Creates a single `ApplicationPendingChangeRequest`.""" + createApplicationPendingChangeRequest( + """ + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + """ + input: CreateApplicationPendingChangeRequestInput! + ): CreateApplicationPendingChangeRequestPayload + """Creates a single `ApplicationProjectType`.""" createApplicationProjectType( """ @@ -66313,6 +68005,26 @@ type Mutation { input: UpdateApplicationPackageByRowIdInput! ): UpdateApplicationPackagePayload + """ + Updates a single `ApplicationPendingChangeRequest` using its globally unique id and a patch. + """ + updateApplicationPendingChangeRequest( + """ + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + """ + input: UpdateApplicationPendingChangeRequestInput! + ): UpdateApplicationPendingChangeRequestPayload + + """ + Updates a single `ApplicationPendingChangeRequest` using a unique key and a patch. + """ + updateApplicationPendingChangeRequestByRowId( + """ + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + """ + input: UpdateApplicationPendingChangeRequestByRowIdInput! + ): UpdateApplicationPendingChangeRequestPayload + """ Updates a single `ApplicationProjectType` using its globally unique id and a patch. """ @@ -66981,6 +68693,24 @@ type Mutation { input: DeleteApplicationPackageByRowIdInput! ): DeleteApplicationPackagePayload + """ + Deletes a single `ApplicationPendingChangeRequest` using its globally unique id. + """ + deleteApplicationPendingChangeRequest( + """ + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + """ + input: DeleteApplicationPendingChangeRequestInput! + ): DeleteApplicationPendingChangeRequestPayload + + """Deletes a single `ApplicationPendingChangeRequest` using a unique key.""" + deleteApplicationPendingChangeRequestByRowId( + """ + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + """ + input: DeleteApplicationPendingChangeRequestByRowIdInput! + ): DeleteApplicationPendingChangeRequestPayload + """ Deletes a single `ApplicationProjectType` using its globally unique id. """ @@ -68360,6 +70090,99 @@ input ApplicationPackageInput { archivedAt: Datetime } +"""The output of our create `ApplicationPendingChangeRequest` mutation.""" +type CreateApplicationPendingChangeRequestPayload { + """ + The exact same `clientMutationId` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + """ + clientMutationId: String + + """ + The `ApplicationPendingChangeRequest` that was created by this mutation. + """ + applicationPendingChangeRequest: ApplicationPendingChangeRequest + + """ + Our root query field type. Allows us to run any query from our mutation payload. + """ + query: Query + + """ + Reads a single `Application` that is related to this `ApplicationPendingChangeRequest`. + """ + applicationByApplicationId: Application + + """ + Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. + """ + ccbcUserByCreatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. + """ + ccbcUserByUpdatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. + """ + ccbcUserByArchivedBy: CcbcUser + + """ + An edge for our `ApplicationPendingChangeRequest`. May be used by Relay 1. + """ + applicationPendingChangeRequestEdge( + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + ): ApplicationPendingChangeRequestsEdge +} + +"""All input for the create `ApplicationPendingChangeRequest` mutation.""" +input CreateApplicationPendingChangeRequestInput { + """ + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + """ + clientMutationId: String + + """The `ApplicationPendingChangeRequest` to be created by this mutation.""" + applicationPendingChangeRequest: ApplicationPendingChangeRequestInput! +} + +"""An input for mutations affecting `ApplicationPendingChangeRequest`""" +input ApplicationPendingChangeRequestInput { + """ + ID of the application this application_pending_change_request belongs to + """ + applicationId: Int + + """Column defining if the change request pending or not""" + isPending: Boolean + + """ + Column containing the comment for the change request or completion of the change request + """ + comment: String + + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime +} + """The output of our create `ApplicationProjectType` mutation.""" type CreateApplicationProjectTypePayload { """ @@ -71710,9 +73533,235 @@ input ApplicationInternalDescriptionPatch { } """ -All input for the `updateApplicationInternalDescriptionByRowId` mutation. +All input for the `updateApplicationInternalDescriptionByRowId` mutation. +""" +input UpdateApplicationInternalDescriptionByRowIdInput { + """ + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + """ + clientMutationId: String + + """ + An object where the defined keys will be set on the `ApplicationInternalDescription` being updated. + """ + applicationInternalDescriptionPatch: ApplicationInternalDescriptionPatch! + + """Unique id for the row""" + rowId: Int! +} + +"""The output of our update `ApplicationMilestoneData` mutation.""" +type UpdateApplicationMilestoneDataPayload { + """ + The exact same `clientMutationId` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + """ + clientMutationId: String + + """The `ApplicationMilestoneData` that was updated by this mutation.""" + applicationMilestoneData: ApplicationMilestoneData + + """ + Our root query field type. Allows us to run any query from our mutation payload. + """ + query: Query + + """ + Reads a single `Application` that is related to this `ApplicationMilestoneData`. + """ + applicationByApplicationId: Application + + """ + Reads a single `CcbcUser` that is related to this `ApplicationMilestoneData`. + """ + ccbcUserByCreatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationMilestoneData`. + """ + ccbcUserByUpdatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationMilestoneData`. + """ + ccbcUserByArchivedBy: CcbcUser + + """An edge for our `ApplicationMilestoneData`. May be used by Relay 1.""" + applicationMilestoneDataEdge( + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + ): ApplicationMilestoneDataEdge +} + +"""All input for the `updateApplicationMilestoneData` mutation.""" +input UpdateApplicationMilestoneDataInput { + """ + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + """ + clientMutationId: String + + """ + The globally unique `ID` which will identify a single `ApplicationMilestoneData` to be updated. + """ + id: ID! + + """ + An object where the defined keys will be set on the `ApplicationMilestoneData` being updated. + """ + applicationMilestoneDataPatch: ApplicationMilestoneDataPatch! +} + +""" +Represents an update to a `ApplicationMilestoneData`. Fields that are set will be updated. +""" +input ApplicationMilestoneDataPatch { + """Id of the application the milestone belongs to""" + applicationId: Int + + """The milestone form json data""" + jsonData: JSON + + """The id of the excel data that this record is associated with""" + excelDataId: Int + + """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 + + """History operation""" + historyOperation: String +} + +"""All input for the `updateApplicationMilestoneDataByRowId` mutation.""" +input UpdateApplicationMilestoneDataByRowIdInput { + """ + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + """ + clientMutationId: String + + """ + An object where the defined keys will be set on the `ApplicationMilestoneData` being updated. + """ + applicationMilestoneDataPatch: ApplicationMilestoneDataPatch! + + """Unique id for the milestone""" + rowId: Int! +} + +"""The output of our update `ApplicationMilestoneExcelData` mutation.""" +type UpdateApplicationMilestoneExcelDataPayload { + """ + The exact same `clientMutationId` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + """ + clientMutationId: String + + """The `ApplicationMilestoneExcelData` that was updated by this mutation.""" + applicationMilestoneExcelData: ApplicationMilestoneExcelData + + """ + Our root query field type. Allows us to run any query from our mutation payload. + """ + query: Query + + """ + Reads a single `Application` that is related to this `ApplicationMilestoneExcelData`. + """ + applicationByApplicationId: Application + + """ + Reads a single `CcbcUser` that is related to this `ApplicationMilestoneExcelData`. + """ + ccbcUserByCreatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationMilestoneExcelData`. + """ + ccbcUserByUpdatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationMilestoneExcelData`. + """ + ccbcUserByArchivedBy: CcbcUser + + """ + An edge for our `ApplicationMilestoneExcelData`. May be used by Relay 1. + """ + applicationMilestoneExcelDataEdge( + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + ): ApplicationMilestoneExcelDataEdge +} + +"""All input for the `updateApplicationMilestoneExcelData` mutation.""" +input UpdateApplicationMilestoneExcelDataInput { + """ + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + """ + clientMutationId: String + + """ + The globally unique `ID` which will identify a single `ApplicationMilestoneExcelData` to be updated. + """ + id: ID! + + """ + An object where the defined keys will be set on the `ApplicationMilestoneExcelData` being updated. + """ + applicationMilestoneExcelDataPatch: ApplicationMilestoneExcelDataPatch! +} + +""" +Represents an update to a `ApplicationMilestoneExcelData`. Fields that are set will be updated. +""" +input ApplicationMilestoneExcelDataPatch { + """ID of the application this data belongs to""" + applicationId: Int + + """The data imported from the excel filled by the respondent""" + jsonData: JSON + + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime +} + +""" +All input for the `updateApplicationMilestoneExcelDataByRowId` mutation. """ -input UpdateApplicationInternalDescriptionByRowIdInput { +input UpdateApplicationMilestoneExcelDataByRowIdInput { """ An arbitrary string value with no semantic meaning. Will be included in the payload verbatim. May be used to track mutations by the client. @@ -71720,24 +73769,24 @@ input UpdateApplicationInternalDescriptionByRowIdInput { clientMutationId: String """ - An object where the defined keys will be set on the `ApplicationInternalDescription` being updated. + An object where the defined keys will be set on the `ApplicationMilestoneExcelData` being updated. """ - applicationInternalDescriptionPatch: ApplicationInternalDescriptionPatch! + applicationMilestoneExcelDataPatch: ApplicationMilestoneExcelDataPatch! - """Unique id for the row""" + """Unique ID for the milestone excel data""" rowId: Int! } -"""The output of our update `ApplicationMilestoneData` mutation.""" -type UpdateApplicationMilestoneDataPayload { +"""The output of our update `ApplicationPackage` mutation.""" +type UpdateApplicationPackagePayload { """ The exact same `clientMutationId` that was provided in the mutation input, unchanged and unused. May be used by a client to track mutations. """ clientMutationId: String - """The `ApplicationMilestoneData` that was updated by this mutation.""" - applicationMilestoneData: ApplicationMilestoneData + """The `ApplicationPackage` that was updated by this mutation.""" + applicationPackage: ApplicationPackage """ Our root query field type. Allows us to run any query from our mutation payload. @@ -71745,34 +73794,34 @@ type UpdateApplicationMilestoneDataPayload { query: Query """ - Reads a single `Application` that is related to this `ApplicationMilestoneData`. + Reads a single `Application` that is related to this `ApplicationPackage`. """ applicationByApplicationId: Application """ - Reads a single `CcbcUser` that is related to this `ApplicationMilestoneData`. + Reads a single `CcbcUser` that is related to this `ApplicationPackage`. """ ccbcUserByCreatedBy: CcbcUser """ - Reads a single `CcbcUser` that is related to this `ApplicationMilestoneData`. + Reads a single `CcbcUser` that is related to this `ApplicationPackage`. """ ccbcUserByUpdatedBy: CcbcUser """ - Reads a single `CcbcUser` that is related to this `ApplicationMilestoneData`. + Reads a single `CcbcUser` that is related to this `ApplicationPackage`. """ ccbcUserByArchivedBy: CcbcUser - """An edge for our `ApplicationMilestoneData`. May be used by Relay 1.""" - applicationMilestoneDataEdge( - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] - ): ApplicationMilestoneDataEdge + """An edge for our `ApplicationPackage`. May be used by Relay 1.""" + applicationPackageEdge( + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + ): ApplicationPackagesEdge } -"""All input for the `updateApplicationMilestoneData` mutation.""" -input UpdateApplicationMilestoneDataInput { +"""All input for the `updateApplicationPackage` mutation.""" +input UpdateApplicationPackageInput { """ An arbitrary string value with no semantic meaning. Will be included in the payload verbatim. May be used to track mutations by the client. @@ -71780,28 +73829,25 @@ input UpdateApplicationMilestoneDataInput { clientMutationId: String """ - The globally unique `ID` which will identify a single `ApplicationMilestoneData` to be updated. + The globally unique `ID` which will identify a single `ApplicationPackage` to be updated. """ id: ID! """ - An object where the defined keys will be set on the `ApplicationMilestoneData` being updated. + An object where the defined keys will be set on the `ApplicationPackage` being updated. """ - applicationMilestoneDataPatch: ApplicationMilestoneDataPatch! + applicationPackagePatch: ApplicationPackagePatch! } """ -Represents an update to a `ApplicationMilestoneData`. Fields that are set will be updated. +Represents an update to a `ApplicationPackage`. Fields that are set will be updated. """ -input ApplicationMilestoneDataPatch { - """Id of the application the milestone belongs to""" +input ApplicationPackagePatch { + """The application_id of the application this record is associated with""" applicationId: Int - """The milestone form json data""" - jsonData: JSON - - """The id of the excel data that this record is associated with""" - excelDataId: Int + """The package number the application is assigned to""" + package: Int """created by user id""" createdBy: Int @@ -71820,13 +73866,10 @@ input ApplicationMilestoneDataPatch { """archived at timestamp""" archivedAt: Datetime - - """History operation""" - historyOperation: String } -"""All input for the `updateApplicationMilestoneDataByRowId` mutation.""" -input UpdateApplicationMilestoneDataByRowIdInput { +"""All input for the `updateApplicationPackageByRowId` mutation.""" +input UpdateApplicationPackageByRowIdInput { """ An arbitrary string value with no semantic meaning. Will be included in the payload verbatim. May be used to track mutations by the client. @@ -71834,24 +73877,26 @@ input UpdateApplicationMilestoneDataByRowIdInput { clientMutationId: String """ - An object where the defined keys will be set on the `ApplicationMilestoneData` being updated. + An object where the defined keys will be set on the `ApplicationPackage` being updated. """ - applicationMilestoneDataPatch: ApplicationMilestoneDataPatch! + applicationPackagePatch: ApplicationPackagePatch! - """Unique id for the milestone""" + """Unique ID for the application_package""" rowId: Int! } -"""The output of our update `ApplicationMilestoneExcelData` mutation.""" -type UpdateApplicationMilestoneExcelDataPayload { +"""The output of our update `ApplicationPendingChangeRequest` mutation.""" +type UpdateApplicationPendingChangeRequestPayload { """ The exact same `clientMutationId` that was provided in the mutation input, unchanged and unused. May be used by a client to track mutations. """ clientMutationId: String - """The `ApplicationMilestoneExcelData` that was updated by this mutation.""" - applicationMilestoneExcelData: ApplicationMilestoneExcelData + """ + The `ApplicationPendingChangeRequest` that was updated by this mutation. + """ + applicationPendingChangeRequest: ApplicationPendingChangeRequest """ Our root query field type. Allows us to run any query from our mutation payload. @@ -71859,36 +73904,36 @@ type UpdateApplicationMilestoneExcelDataPayload { query: Query """ - Reads a single `Application` that is related to this `ApplicationMilestoneExcelData`. + Reads a single `Application` that is related to this `ApplicationPendingChangeRequest`. """ applicationByApplicationId: Application """ - Reads a single `CcbcUser` that is related to this `ApplicationMilestoneExcelData`. + Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. """ ccbcUserByCreatedBy: CcbcUser """ - Reads a single `CcbcUser` that is related to this `ApplicationMilestoneExcelData`. + Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. """ ccbcUserByUpdatedBy: CcbcUser """ - Reads a single `CcbcUser` that is related to this `ApplicationMilestoneExcelData`. + Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. """ ccbcUserByArchivedBy: CcbcUser """ - An edge for our `ApplicationMilestoneExcelData`. May be used by Relay 1. + An edge for our `ApplicationPendingChangeRequest`. May be used by Relay 1. """ - applicationMilestoneExcelDataEdge( - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] - ): ApplicationMilestoneExcelDataEdge + applicationPendingChangeRequestEdge( + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + ): ApplicationPendingChangeRequestsEdge } -"""All input for the `updateApplicationMilestoneExcelData` mutation.""" -input UpdateApplicationMilestoneExcelDataInput { +"""All input for the `updateApplicationPendingChangeRequest` mutation.""" +input UpdateApplicationPendingChangeRequestInput { """ An arbitrary string value with no semantic meaning. Will be included in the payload verbatim. May be used to track mutations by the client. @@ -71896,135 +73941,32 @@ input UpdateApplicationMilestoneExcelDataInput { clientMutationId: String """ - The globally unique `ID` which will identify a single `ApplicationMilestoneExcelData` to be updated. + The globally unique `ID` which will identify a single `ApplicationPendingChangeRequest` to be updated. """ id: ID! """ - An object where the defined keys will be set on the `ApplicationMilestoneExcelData` being updated. + An object where the defined keys will be set on the `ApplicationPendingChangeRequest` being updated. """ - applicationMilestoneExcelDataPatch: ApplicationMilestoneExcelDataPatch! + applicationPendingChangeRequestPatch: ApplicationPendingChangeRequestPatch! } """ -Represents an update to a `ApplicationMilestoneExcelData`. Fields that are set will be updated. +Represents an update to a `ApplicationPendingChangeRequest`. Fields that are set will be updated. """ -input ApplicationMilestoneExcelDataPatch { - """ID of the application this data belongs to""" - applicationId: Int - - """The data imported from the excel filled by the respondent""" - jsonData: JSON - - """created by user id""" - createdBy: Int - - """created at timestamp""" - createdAt: Datetime - - """updated by user id""" - updatedBy: Int - - """updated at timestamp""" - updatedAt: Datetime - - """archived by user id""" - archivedBy: Int - - """archived at timestamp""" - archivedAt: Datetime -} - -""" -All input for the `updateApplicationMilestoneExcelDataByRowId` mutation. -""" -input UpdateApplicationMilestoneExcelDataByRowIdInput { - """ - An arbitrary string value with no semantic meaning. Will be included in the - payload verbatim. May be used to track mutations by the client. +input ApplicationPendingChangeRequestPatch { """ - clientMutationId: String - - """ - An object where the defined keys will be set on the `ApplicationMilestoneExcelData` being updated. + ID of the application this application_pending_change_request belongs to """ - applicationMilestoneExcelDataPatch: ApplicationMilestoneExcelDataPatch! - - """Unique ID for the milestone excel data""" - rowId: Int! -} - -"""The output of our update `ApplicationPackage` mutation.""" -type UpdateApplicationPackagePayload { - """ - The exact same `clientMutationId` that was provided in the mutation input, - unchanged and unused. May be used by a client to track mutations. - """ - clientMutationId: String - - """The `ApplicationPackage` that was updated by this mutation.""" - applicationPackage: ApplicationPackage - - """ - Our root query field type. Allows us to run any query from our mutation payload. - """ - query: Query - - """ - Reads a single `Application` that is related to this `ApplicationPackage`. - """ - applicationByApplicationId: Application - - """ - Reads a single `CcbcUser` that is related to this `ApplicationPackage`. - """ - ccbcUserByCreatedBy: CcbcUser - - """ - Reads a single `CcbcUser` that is related to this `ApplicationPackage`. - """ - ccbcUserByUpdatedBy: CcbcUser - - """ - Reads a single `CcbcUser` that is related to this `ApplicationPackage`. - """ - ccbcUserByArchivedBy: CcbcUser - - """An edge for our `ApplicationPackage`. May be used by Relay 1.""" - applicationPackageEdge( - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] - ): ApplicationPackagesEdge -} - -"""All input for the `updateApplicationPackage` mutation.""" -input UpdateApplicationPackageInput { - """ - An arbitrary string value with no semantic meaning. Will be included in the - payload verbatim. May be used to track mutations by the client. - """ - clientMutationId: String + applicationId: Int - """ - The globally unique `ID` which will identify a single `ApplicationPackage` to be updated. - """ - id: ID! + """Column defining if the change request pending or not""" + isPending: Boolean """ - An object where the defined keys will be set on the `ApplicationPackage` being updated. + Column containing the comment for the change request or completion of the change request """ - applicationPackagePatch: ApplicationPackagePatch! -} - -""" -Represents an update to a `ApplicationPackage`. Fields that are set will be updated. -""" -input ApplicationPackagePatch { - """The application_id of the application this record is associated with""" - applicationId: Int - - """The package number the application is assigned to""" - package: Int + comment: String """created by user id""" createdBy: Int @@ -72045,8 +73987,10 @@ input ApplicationPackagePatch { archivedAt: Datetime } -"""All input for the `updateApplicationPackageByRowId` mutation.""" -input UpdateApplicationPackageByRowIdInput { +""" +All input for the `updateApplicationPendingChangeRequestByRowId` mutation. +""" +input UpdateApplicationPendingChangeRequestByRowIdInput { """ An arbitrary string value with no semantic meaning. Will be included in the payload verbatim. May be used to track mutations by the client. @@ -72054,11 +73998,11 @@ input UpdateApplicationPackageByRowIdInput { clientMutationId: String """ - An object where the defined keys will be set on the `ApplicationPackage` being updated. + An object where the defined keys will be set on the `ApplicationPendingChangeRequest` being updated. """ - applicationPackagePatch: ApplicationPackagePatch! + applicationPendingChangeRequestPatch: ApplicationPendingChangeRequestPatch! - """Unique ID for the application_package""" + """Unique ID for the application_pending_change_request""" rowId: Int! } @@ -75513,6 +77457,82 @@ input DeleteApplicationPackageByRowIdInput { rowId: Int! } +"""The output of our delete `ApplicationPendingChangeRequest` mutation.""" +type DeleteApplicationPendingChangeRequestPayload { + """ + The exact same `clientMutationId` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + """ + clientMutationId: String + + """ + The `ApplicationPendingChangeRequest` that was deleted by this mutation. + """ + applicationPendingChangeRequest: ApplicationPendingChangeRequest + deletedApplicationPendingChangeRequestId: ID + + """ + Our root query field type. Allows us to run any query from our mutation payload. + """ + query: Query + + """ + Reads a single `Application` that is related to this `ApplicationPendingChangeRequest`. + """ + applicationByApplicationId: Application + + """ + Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. + """ + ccbcUserByCreatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. + """ + ccbcUserByUpdatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. + """ + ccbcUserByArchivedBy: CcbcUser + + """ + An edge for our `ApplicationPendingChangeRequest`. May be used by Relay 1. + """ + applicationPendingChangeRequestEdge( + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + ): ApplicationPendingChangeRequestsEdge +} + +"""All input for the `deleteApplicationPendingChangeRequest` mutation.""" +input DeleteApplicationPendingChangeRequestInput { + """ + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + """ + clientMutationId: String + + """ + The globally unique `ID` which will identify a single `ApplicationPendingChangeRequest` to be deleted. + """ + id: ID! +} + +""" +All input for the `deleteApplicationPendingChangeRequestByRowId` mutation. +""" +input DeleteApplicationPendingChangeRequestByRowIdInput { + """ + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + """ + clientMutationId: String + + """Unique ID for the application_pending_change_request""" + rowId: Int! +} + """The output of our delete `ApplicationProjectType` mutation.""" type DeleteApplicationProjectTypePayload { """ From 74471ee7a36b8c5427746f1e3dd7d57c36ffae1f Mon Sep 17 00:00:00 2001 From: Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> Date: Wed, 15 May 2024 13:40:18 -0700 Subject: [PATCH 25/34] chore: revert local dev commit --- app/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/package.json b/app/package.json index 6cc49fe073..74c5fc434b 100644 --- a/app/package.json +++ b/app/package.json @@ -8,7 +8,7 @@ "build:next": "next build", "build:relay": "touch schema/queryMap.json && mkdir -p __generated__ && relay-compiler && yarn run build:persisted-operations", "build:server": "tsc --project tsconfig.server.json", - "build:schema": "postgraphile -X -c postgres://postgres:mysecretpassword@localhost/ccbc -s ccbc_public --export-schema-graphql schema/schema.graphql --classic-ids", + "build:schema": "postgraphile -X -c postgres://localhost/ccbc -s ccbc_public --export-schema-graphql schema/schema.graphql --classic-ids", "build:persisted-operations": "mkdir -p .persisted_operations && node utils/addToPersistedOperations.js", "start": "NODE_ENV=production node --unhandled-rejections=strict --enable-network-family-autoselection dist/server.js", "lint": "next lint", From e4b3186a8478ab732ee6f3c182c2b05eaddad94e Mon Sep 17 00:00:00 2001 From: Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> Date: Wed, 15 May 2024 14:53:25 -0700 Subject: [PATCH 26/34] test: initial cbc page tests --- app/components/Analyst/CBC/CbcHeader.tsx | 2 +- app/tests/pages/analyst/cbc/[cbcId].test.tsx | 147 +++++++++++++++++++ 2 files changed, 148 insertions(+), 1 deletion(-) create mode 100644 app/tests/pages/analyst/cbc/[cbcId].test.tsx diff --git a/app/components/Analyst/CBC/CbcHeader.tsx b/app/components/Analyst/CBC/CbcHeader.tsx index 00a0a05bb9..73fa5f9a60 100644 --- a/app/components/Analyst/CBC/CbcHeader.tsx +++ b/app/components/Analyst/CBC/CbcHeader.tsx @@ -124,7 +124,7 @@ const CbcHeader: React.FC = ({ query }) => { /> - Intake + Intake = { + value: true, + source: 'defaultValue', + on: null, + off: null, + ruleId: 'show_cbc_edit', +}; + +const mockQueryPayload = { + Query() { + return { + cbcByRowId: { + projectNumber: 5555, + rowId: 1, + sharepointTimestamp: '2024-10-01T00:00:00.000Z', + cbcDataByCbcId: { + edges: [ + { + node: { + jsonData: { + phase: 2, + intake: 1, + errorLog: [], + highwayKm: null, + projectType: 'Transport', + reviewNotes: 'Qtrly Report: Progress 0.39 -> 0.38', + transportKm: 124, + lastReviewed: '2023-07-11T00:00:00.000Z', + otherFunding: 265000, + projectTitle: 'Project 1', + dateAnnounced: '2019-07-02T00:00:00.000Z', + projectNumber: 5555, + projectStatus: 'Reporting Complete', + federalFunding: 555555, + householdCount: null, + applicantAmount: 555555, + bcFundingRequest: 5555555, + projectLocations: 'Location 1', + milestoneComments: 'Requested extension to March 31, 2024', + proposedStartDate: '2020-07-01T00:00:00.000Z', + primaryNewsRelease: + 'https://www.canada.ca/en/innovation-science-economic-development/news/2019/07/rural-communities-in-british-columbia-will-benefit-from-faster-internet.html', + projectDescription: 'Description 1', + totalProjectBudget: 5555555, + announcedByProvince: 'YES', + dateAgreementSigned: '2021-02-24T00:00:00.000Z', + changeRequestPending: 'No', + currentOperatingName: 'Internet company 1', + federalFundingSource: 'ISED-CTI', + transportProjectType: 'Fibre', + indigenousCommunities: 5, + proposedCompletionDate: '2023-03-31T00:00:00.000Z', + constructionCompletedOn: null, + dateApplicationReceived: null, + reportingCompletionDate: null, + applicantContractualName: 'Internet company 1', + dateConditionallyApproved: '2019-06-26T00:00:00.000Z', + eightThirtyMillionFunding: 'No', + projectMilestoneCompleted: 0.5, + communitiesAndLocalesCount: 5, + connectedCoastNetworkDependant: 'NO', + nditConditionalApprovalLetterSent: 'YES', + bindingAgreementSignedNditRecipient: 'YES', + }, + sharepointTimestamp: '2024-10-01T00:00:00.000Z', + rowId: 1, + projectNumber: 5555, + updatedAt: '2024-10-01T00:00:00.000Z', + updatedBy: 'test', + }, + }, + ], + }, + }, + session: { + sub: '4e0ac88c-bf05-49ac-948f-7fd53c7a9fd6', + }, + }; + }, +}; + +const pageTestingHelper = new PageTestingHelper({ + pageComponent: Cbc, + compiledQuery: compiledCbcIdQuery, + defaultQueryResolver: mockQueryPayload, + defaultQueryVariables: { + rowId: 1, + }, +}); + +describe('Cbc', () => { + beforeEach(() => { + pageTestingHelper.reinit(); + pageTestingHelper.setMockRouterValues({ + query: { cbcId: '1' }, + }); + }); + it('should have the correct accordions', async () => { + pageTestingHelper.loadQuery(); + pageTestingHelper.renderPage(); + + expect(screen.getByText('Tombstone')).toBeInTheDocument(); + expect(screen.getByText('Project type')).toBeInTheDocument(); + expect(screen.getByText('Locations and counts')).toBeInTheDocument(); + expect(screen.getByText('Funding')).toBeInTheDocument(); + expect(screen.getByText('Events and dates')).toBeInTheDocument(); + expect(screen.getByText('Miscellaneous')).toBeInTheDocument(); + expect(screen.getByText('Project data reviews')).toBeInTheDocument(); + }); + it('should have the correct header data', async () => { + pageTestingHelper.loadQuery(); + pageTestingHelper.renderPage(); + + // left side of header + expect(screen.getByRole('heading', { name: '5555' })).toBeInTheDocument(); + expect( + screen.getByRole('heading', { name: 'Project 1' }) + ).toBeInTheDocument(); + expect( + screen.getByRole('heading', { name: 'Internet company 1' }) + ).toBeInTheDocument(); + // right side (editable) of header + expect(screen.getByLabelText('Status')).toBeInTheDocument(); + expect(screen.getByLabelText('Status')).toHaveValue('complete'); + expect(screen.getByLabelText('Phase')).toBeInTheDocument(); + expect(screen.getByLabelText('Phase')).toHaveValue('2'); + expect(screen.getByLabelText('Intake')).toBeInTheDocument(); + expect(screen.getByLabelText('Intake')).toHaveValue('1'); + }); + it('should have the correct actions when edit enabled', async () => { + jest.spyOn(moduleApi, 'useFeature').mockReturnValue(mockShowCbcEdit); + pageTestingHelper.loadQuery(); + pageTestingHelper.renderPage(); + + expect(screen.getByText('Expand all')).toBeInTheDocument(); + expect(screen.getByText('Collapse all')).toBeInTheDocument(); + expect(screen.getByText('Quick edit')).toBeInTheDocument(); + }); +}); From 921afd130f94c3492566b39340ec5252bbb59a55 Mon Sep 17 00:00:00 2001 From: Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> Date: Wed, 15 May 2024 15:08:48 -0700 Subject: [PATCH 27/34] test: add base history page test --- .../analyst/cbc/[cbcId]/cbcHistory.test.tsx | 103 ++++++++++++++++++ 1 file changed, 103 insertions(+) create mode 100644 app/tests/pages/analyst/cbc/[cbcId]/cbcHistory.test.tsx diff --git a/app/tests/pages/analyst/cbc/[cbcId]/cbcHistory.test.tsx b/app/tests/pages/analyst/cbc/[cbcId]/cbcHistory.test.tsx new file mode 100644 index 0000000000..f9266bcbe5 --- /dev/null +++ b/app/tests/pages/analyst/cbc/[cbcId]/cbcHistory.test.tsx @@ -0,0 +1,103 @@ +import CbcHistory from 'pages/analyst/cbc/[cbcId]/cbcHistory'; +import { screen } from '@testing-library/react'; +import compiledCbcHistoryQuery, { + cbcHistoryQuery, +} from '../../../../../__generated__/cbcHistoryQuery.graphql'; +import PageTestingHelper from '../../../../utils/pageTestingHelper'; + +const mockQueryPayload = { + Query() { + return { + cbcByRowId: { + projectNumber: 5555, + rowId: 1, + sharepointTimestamp: '2024-10-01T00:00:00.000Z', + cbcDataByCbcId: { + edges: [ + { + node: { + jsonData: { + phase: 2, + intake: 1, + errorLog: [], + highwayKm: null, + projectType: 'Transport', + reviewNotes: 'Qtrly Report: Progress 0.39 -> 0.38', + transportKm: 124, + lastReviewed: '2023-07-11T00:00:00.000Z', + otherFunding: 265000, + projectTitle: 'Project 1', + dateAnnounced: '2019-07-02T00:00:00.000Z', + projectNumber: 5555, + projectStatus: 'Reporting Complete', + federalFunding: 555555, + householdCount: null, + applicantAmount: 555555, + bcFundingRequest: 5555555, + projectLocations: 'Location 1', + milestoneComments: 'Requested extension to March 31, 2024', + proposedStartDate: '2020-07-01T00:00:00.000Z', + primaryNewsRelease: + 'https://www.canada.ca/en/innovation-science-economic-development/news/2019/07/rural-communities-in-british-columbia-will-benefit-from-faster-internet.html', + projectDescription: 'Description 1', + totalProjectBudget: 5555555, + announcedByProvince: 'YES', + dateAgreementSigned: '2021-02-24T00:00:00.000Z', + changeRequestPending: 'No', + currentOperatingName: 'Internet company 1', + federalFundingSource: 'ISED-CTI', + transportProjectType: 'Fibre', + indigenousCommunities: 5, + proposedCompletionDate: '2023-03-31T00:00:00.000Z', + constructionCompletedOn: null, + dateApplicationReceived: null, + reportingCompletionDate: null, + applicantContractualName: 'Internet company 1', + dateConditionallyApproved: '2019-06-26T00:00:00.000Z', + eightThirtyMillionFunding: 'No', + projectMilestoneCompleted: 0.5, + communitiesAndLocalesCount: 5, + connectedCoastNetworkDependant: 'NO', + nditConditionalApprovalLetterSent: 'YES', + bindingAgreementSignedNditRecipient: 'YES', + }, + sharepointTimestamp: '2024-10-01T00:00:00.000Z', + rowId: 1, + projectNumber: 5555, + updatedAt: '2024-10-01T00:00:00.000Z', + updatedBy: 'test', + }, + }, + ], + }, + }, + session: { + sub: '4e0ac88c-bf05-49ac-948f-7fd53c7a9fd6', + }, + }; + }, +}; + +const pageTestingHelper = new PageTestingHelper({ + pageComponent: CbcHistory, + compiledQuery: compiledCbcHistoryQuery, + defaultQueryResolver: mockQueryPayload, + defaultQueryVariables: { + rowId: 1, + }, +}); + +describe('Cbc History', () => { + beforeEach(() => { + pageTestingHelper.reinit(); + pageTestingHelper.setMockRouterValues({ + query: { cbcId: '1' }, + }); + }); + it('should have the placeholder text', async () => { + pageTestingHelper.loadQuery(); + pageTestingHelper.renderPage(); + + expect(screen.getByText('Under construction...')).toBeInTheDocument(); + }); +}); From 36f84a19199042b60cf74db96b3615d1e2a3322d Mon Sep 17 00:00:00 2001 From: Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> Date: Wed, 15 May 2024 15:24:24 -0700 Subject: [PATCH 28/34] test: add expand and collapse test --- app/tests/pages/analyst/cbc/[cbcId].test.tsx | 34 +++++++++++++++++++- 1 file changed, 33 insertions(+), 1 deletion(-) diff --git a/app/tests/pages/analyst/cbc/[cbcId].test.tsx b/app/tests/pages/analyst/cbc/[cbcId].test.tsx index 4792991892..920c79fd9f 100644 --- a/app/tests/pages/analyst/cbc/[cbcId].test.tsx +++ b/app/tests/pages/analyst/cbc/[cbcId].test.tsx @@ -1,5 +1,5 @@ import Cbc from 'pages/analyst/cbc/[cbcId]'; -import { screen } from '@testing-library/react'; +import { act, fireEvent, screen } from '@testing-library/react'; import * as moduleApi from '@growthbook/growthbook-react'; import compiledCbcIdQuery, { CbcIdQuery, @@ -144,4 +144,36 @@ describe('Cbc', () => { expect(screen.getByText('Collapse all')).toBeInTheDocument(); expect(screen.getByText('Quick edit')).toBeInTheDocument(); }); + + it('expand and collapse all work as expected', () => { + pageTestingHelper.loadQuery(); + pageTestingHelper.renderPage(); + + const expandButton = screen.getByRole('button', { + name: 'Expand all', + }); + act(() => { + fireEvent.click(expandButton); + }); + + const collapseButton = screen.getByRole('button', { + name: 'Collapse all', + }); + act(() => { + fireEvent.click(collapseButton); + }); + // All accordions contain a table, so to find every collapsed portion we select them all + const allHiddenDivs = screen + .getAllByRole('table', { + hidden: true, + }) + .map((tableElement) => tableElement.parentElement); + + // attempt to find a div that would not be hidden + const isAllHidden = allHiddenDivs.find((section) => { + return section.style.display !== 'none'; + }); + // expect not to find one + expect(isAllHidden).toBeUndefined(); + }); }); From 79a0887dead6d8148999b9555f141cdc8acfeb86 Mon Sep 17 00:00:00 2001 From: Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> Date: Wed, 15 May 2024 16:04:48 -0700 Subject: [PATCH 29/34] test: add cbc change status tests --- .../Analyst/CBC/CbcChangeStatus.tsx | 4 +- .../Analyst/CBC/CbcChangeStatus.test.tsx | 293 ++++++++++++++++++ 2 files changed, 295 insertions(+), 2 deletions(-) create mode 100644 app/tests/components/Analyst/CBC/CbcChangeStatus.test.tsx diff --git a/app/components/Analyst/CBC/CbcChangeStatus.tsx b/app/components/Analyst/CBC/CbcChangeStatus.tsx index aabd191ca6..df9eac9259 100644 --- a/app/components/Analyst/CBC/CbcChangeStatus.tsx +++ b/app/components/Analyst/CBC/CbcChangeStatus.tsx @@ -98,14 +98,14 @@ const CbcChangeStatus: React.FC = ({ cbc, status, statusList }) => { const handleChange = (e) => { const newStatus = e.target.value; - const cbcDataId = queryFragment.cbcDataByCbcId.edges[0].node.rowId; + const cbcDataId = queryFragment?.cbcDataByCbcId?.edges[0].node.rowId; updateStatus({ variables: { input: { rowId: cbcDataId, cbcDataPatch: { jsonData: { - ...queryFragment.cbcDataByCbcId.edges[0].node.jsonData, + ...queryFragment?.cbcDataByCbcId?.edges[0].node.jsonData, projectStatus: convertToCbcStatus(newStatus), }, }, diff --git a/app/tests/components/Analyst/CBC/CbcChangeStatus.test.tsx b/app/tests/components/Analyst/CBC/CbcChangeStatus.test.tsx new file mode 100644 index 0000000000..16d7ad91ae --- /dev/null +++ b/app/tests/components/Analyst/CBC/CbcChangeStatus.test.tsx @@ -0,0 +1,293 @@ +import { graphql } from 'react-relay'; +import compiledQuery, { + CbcChangeStatusTestQuery, +} from '__generated__/CbcChangeStatusTestQuery.graphql'; +import { act, screen, fireEvent } from '@testing-library/react'; +import CbcChangeStatus from 'components/Analyst/CBC/CbcChangeStatus'; +import ComponentTestingHelper from '../../../utils/componentTestingHelper'; + +const testQuery = graphql` + query CbcChangeStatusTestQuery($rowId: Int!) { + cbcByRowId(rowId: $rowId) { + projectNumber + rowId + sharepointTimestamp + cbcDataByCbcId { + edges { + node { + jsonData + sharepointTimestamp + rowId + projectNumber + updatedAt + updatedBy + } + } + } + ...CbcChangeStatus_query + } + } +`; + +const mockQueryPayload = { + Query() { + return { + cbcByRowId: { + projectNumber: 5555, + rowId: 1, + sharepointTimestamp: '2024-10-01T00:00:00.000Z', + cbcDataByCbcId: { + edges: [ + { + node: { + jsonData: { + phase: 2, + intake: 1, + errorLog: [], + highwayKm: null, + projectType: 'Transport', + reviewNotes: 'Qtrly Report: Progress 0.39 -> 0.38', + transportKm: 124, + lastReviewed: '2023-07-11T00:00:00.000Z', + otherFunding: 265000, + projectTitle: 'Project 1', + dateAnnounced: '2019-07-02T00:00:00.000Z', + projectNumber: 5555, + projectStatus: 'Reporting Complete', + federalFunding: 555555, + householdCount: null, + applicantAmount: 555555, + bcFundingRequest: 5555555, + projectLocations: 'Location 1', + milestoneComments: 'Requested extension to March 31, 2024', + proposedStartDate: '2020-07-01T00:00:00.000Z', + primaryNewsRelease: + 'https://www.canada.ca/en/innovation-science-economic-development/news/2019/07/rural-communities-in-british-columbia-will-benefit-from-faster-internet.html', + projectDescription: 'Description 1', + totalProjectBudget: 5555555, + announcedByProvince: 'YES', + dateAgreementSigned: '2021-02-24T00:00:00.000Z', + changeRequestPending: 'No', + currentOperatingName: 'Internet company 1', + federalFundingSource: 'ISED-CTI', + transportProjectType: 'Fibre', + indigenousCommunities: 5, + proposedCompletionDate: '2023-03-31T00:00:00.000Z', + constructionCompletedOn: null, + dateApplicationReceived: null, + reportingCompletionDate: null, + applicantContractualName: 'Internet company 1', + dateConditionallyApproved: '2019-06-26T00:00:00.000Z', + eightThirtyMillionFunding: 'No', + projectMilestoneCompleted: 0.5, + communitiesAndLocalesCount: 5, + connectedCoastNetworkDependant: 'NO', + nditConditionalApprovalLetterSent: 'YES', + bindingAgreementSignedNditRecipient: 'YES', + }, + sharepointTimestamp: '2024-10-01T00:00:00.000Z', + rowId: 1, + projectNumber: 5555, + updatedAt: '2024-10-01T00:00:00.000Z', + updatedBy: 'test', + }, + }, + ], + }, + }, + cbcDataByCbcId: { + edges: [ + { + node: { + jsonData: { + phase: 2, + intake: 1, + errorLog: [], + highwayKm: null, + projectType: 'Transport', + reviewNotes: 'Qtrly Report: Progress 0.39 -> 0.38', + transportKm: 124, + lastReviewed: '2023-07-11T00:00:00.000Z', + otherFunding: 265000, + projectTitle: 'Project 1', + dateAnnounced: '2019-07-02T00:00:00.000Z', + projectNumber: 5555, + projectStatus: 'Reporting Complete', + federalFunding: 555555, + householdCount: null, + applicantAmount: 555555, + bcFundingRequest: 5555555, + projectLocations: 'Location 1', + milestoneComments: 'Requested extension to March 31, 2024', + proposedStartDate: '2020-07-01T00:00:00.000Z', + primaryNewsRelease: + 'https://www.canada.ca/en/innovation-science-economic-development/news/2019/07/rural-communities-in-british-columbia-will-benefit-from-faster-internet.html', + projectDescription: 'Description 1', + totalProjectBudget: 5555555, + announcedByProvince: 'YES', + dateAgreementSigned: '2021-02-24T00:00:00.000Z', + changeRequestPending: 'No', + currentOperatingName: 'Internet company 1', + federalFundingSource: 'ISED-CTI', + transportProjectType: 'Fibre', + indigenousCommunities: 5, + proposedCompletionDate: '2023-03-31T00:00:00.000Z', + constructionCompletedOn: null, + dateApplicationReceived: null, + reportingCompletionDate: null, + applicantContractualName: 'Internet company 1', + dateConditionallyApproved: '2019-06-26T00:00:00.000Z', + eightThirtyMillionFunding: 'No', + projectMilestoneCompleted: 0.5, + communitiesAndLocalesCount: 5, + connectedCoastNetworkDependant: 'NO', + nditConditionalApprovalLetterSent: 'YES', + bindingAgreementSignedNditRecipient: 'YES', + }, + sharepointTimestamp: '2024-10-01T00:00:00.000Z', + rowId: 1, + projectNumber: 5555, + updatedAt: '2024-10-01T00:00:00.000Z', + updatedBy: 'test', + }, + }, + ], + }, + }; + }, +}; + +const componentTestingHelper = + new ComponentTestingHelper({ + component: CbcChangeStatus as any, + testQuery, + compiledQuery, + defaultQueryResolver: mockQueryPayload, + getPropsFromTestQuery: (data) => ({ + cbcData: data, + status: + data.cbcByRowId.cbcDataByCbcId.edges[0].node.jsonData.projectStatus, + statusList: [ + { + description: 'Conditionally Approved', + name: 'conditionally_approved', + id: 1, + }, + { description: 'Reporting Complete', name: 'complete', id: 2 }, + { description: 'Agreement Signed', name: 'approved', id: 3 }, + ], + }), + }); + +describe('The application header component', () => { + beforeEach(() => { + componentTestingHelper.reinit(); + // externalComponentTestingHelper.reinit(); + }); + + it('displays the current cbc project status', () => { + componentTestingHelper.loadQuery(); + componentTestingHelper.renderComponent(); + + expect(screen.getByText('Reporting Complete')).toBeVisible(); + expect(screen.getByTestId('change-status')).toHaveValue('complete'); + }); + + it('has the correct style for the current status', () => { + componentTestingHelper.loadQuery(); + componentTestingHelper.renderComponent(); + + const select = screen.getByTestId('change-status'); + + expect(select).toHaveStyle(`color: #003366;`); + }); + + it('has the list of statuses', () => { + componentTestingHelper.loadQuery(); + componentTestingHelper.renderComponent(); + + expect(screen.getByText('Agreement Signed')).toBeInTheDocument(); + expect(screen.getByText('Reporting Complete')).toBeInTheDocument(); + expect(screen.getByText('Conditionally Approved')).toBeInTheDocument(); + }); + + it('Changes status depending on which status is selected', async () => { + componentTestingHelper.loadQuery(); + componentTestingHelper.renderComponent(); + + const select = screen.getByTestId('change-status'); + + await act(async () => { + fireEvent.change(select, { target: { value: 'approved' } }); + }); + await act(async () => { + componentTestingHelper.environment.mock.resolveMostRecentOperation({ + data: { + cbcDataByCbcId: { + jsonData: { + projectStatus: 'Agreement Signed', + }, + }, + }, + }); + }); + expect(screen.getByTestId('change-status')).toHaveValue('approved'); + + await act(async () => { + fireEvent.change(select, { target: { value: 'conditionally_approved' } }); + }); + await act(async () => { + componentTestingHelper.environment.mock.resolveMostRecentOperation({ + data: { + cbcDataByCbcId: { + jsonData: { + projectStatus: 'Conditionally Approved', + }, + }, + }, + }); + }); + expect(screen.getByTestId('change-status')).toHaveValue( + 'conditionally_approved' + ); + }); + + it('displays the confirmation modal and calls the mutation on save', async () => { + componentTestingHelper.loadQuery(); + componentTestingHelper.renderComponent(); + + const select = screen.getByTestId('change-status'); + + await act(async () => { + fireEvent.change(select, { target: { value: 'approved' } }); + }); + + componentTestingHelper.expectMutationToBeCalled( + 'updateCbcDataByRowIdMutation', + { + input: { + cbcDataPatch: { + jsonData: { + projectStatus: 'Agreement Signed', + }, + }, + }, + } + ); + + act(() => { + componentTestingHelper.environment.mock.resolveMostRecentOperation({ + data: { + cbcDataByCbcId: { + jsonData: { + projectStatus: 'Agreement Signed', + }, + }, + }, + }); + }); + + expect(screen.getByText('Agreement Signed')).toBeVisible(); + expect(screen.getByTestId('change-status')).toHaveValue('approved'); + }); +}); From f9224956282a294697b224ddcdea9ecce9b402e8 Mon Sep 17 00:00:00 2001 From: Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> Date: Thu, 16 May 2024 10:27:19 -0700 Subject: [PATCH 30/34] test(e2e): cbc single view --- app/cypress/e2e/analyst/cbc/[cbcId].cy.js | 26 ++++++++++++ db/data/e2e/001_cbc_project.sql | 51 +++++++++++++++++++++++ 2 files changed, 77 insertions(+) create mode 100644 app/cypress/e2e/analyst/cbc/[cbcId].cy.js diff --git a/app/cypress/e2e/analyst/cbc/[cbcId].cy.js b/app/cypress/e2e/analyst/cbc/[cbcId].cy.js new file mode 100644 index 0000000000..08ead52efc --- /dev/null +++ b/app/cypress/e2e/analyst/cbc/[cbcId].cy.js @@ -0,0 +1,26 @@ +describe('The cbc project view', () => { + beforeEach(() => { + cy.mockLogin('ccbc_admin'); + const mockedDateString = '2024-01-03'; + const mockedDate = new Date(mockedDateString); + cy.useMockedTime(mockedDate); + cy.sqlFixture('e2e/reset_db'); + cy.sqlFixture('e2e/001_intake'); + cy.sqlFixture('e2e/001_application'); + cy.sqlFixture('e2e/001_application_received'); + cy.sqlFixture('e2e/001_analyst'); + }); + + it('loads', () => { + cy.visit('/analyst/cbc/1'); + cy.contains('h1', 'Project 1'); + cy.contains('h2', 'Tombstone'); + cy.contains('h2', 'Project type'); + cy.contains('h2', 'Locations and counts'); + cy.contains('h2', 'Funding'); + cy.contains('h2', 'Events and dates'); + cy.contains('h2', 'Miscellaneous'); + cy.contains('h2', 'Project data reviews'); + cy.get('body').happoScreenshot({ component: 'CBC project view' }); + }); +}); diff --git a/db/data/e2e/001_cbc_project.sql b/db/data/e2e/001_cbc_project.sql index 68c67cd5e3..cf95fd90af 100644 --- a/db/data/e2e/001_cbc_project.sql +++ b/db/data/e2e/001_cbc_project.sql @@ -144,4 +144,55 @@ insert into ccbc_public.cbc_project( ]$$, '2024-01-01 16:28:11.006719-07', '2024-01-02 16:28:11.006719-07', '2024-01-02 16:28:11.006719-07'); +insert into ccbc_public.cbc(id, project_number, sharepoint_timestamp, created_at, updated_at) + overriding system value values (1, 5555, '2024-01-01 16:28:11.006719-07', '2024-01-02 16:28:11.006719-07', '2024-01-02 16:28:11.006719-07'); + +insert into cbc_data(id, cbc_id, project_number, json_data, sharepoint_timestamp, created_at, updated_at) + overriding system value values (1, 1, 5555, + $${ + "phase": 2, + "intake": 1, + "errorLog": [], + "highwayKm": null, + "projectType": "Transport", + "reviewNotes": "Qtrly Report: Progress 0.39 -> 0.38", + "transportKm": 124, + "lastReviewed": "2023-07-11T00:00:00.000Z", + "otherFunding": 265000, + "projectTitle": "Project 1", + "dateAnnounced": "2019-07-02T00:00:00.000Z", + "projectNumber": 5555, + "projectStatus": "Reporting Complete", + "federalFunding": 555555, + "householdCount": null, + "applicantAmount": 555555, + "bcFundingRequest": 5555555, + "projectLocations": "Location 1", + "milestoneComments": "Requested extension to March 31, 2024", + "proposedStartDate": "2020-07-01T00:00:00.000Z", + "primaryNewsRelease": + "https://www.canada.ca/en/innovation-science-economic-development/news/2019/07/rural-communities-in-british-columbia-will-benefit-from-faster-internet.html", + "projectDescription": "Description 1", + "totalProjectBudget": 5555555, + "announcedByProvince": "YES", + "dateAgreementSigned": "2021-02-24T00:00:00.000Z", + "changeRequestPending": "No", + "currentOperatingName": "Internet company 1", + "federalFundingSource": "ISED-CTI", + "transportProjectType": "Fibre", + "indigenousCommunities": 5, + "proposedCompletionDate": "2023-03-31T00:00:00.000Z", + "constructionCompletedOn": null, + "dateApplicationReceived": null, + "reportingCompletionDate": null, + "applicantContractualName": "Internet company 1", + "dateConditionallyApproved": "2019-06-26T00:00:00.000Z", + "eightThirtyMillionFunding": "No", + "projectMilestoneCompleted": 0.5, + "communitiesAndLocalesCount": 5, + "connectedCoastNetworkDependant": "NO", + "nditConditionalApprovalLetterSent": "YES", + "bindingAgreementSignedNditRecipient": "YES" + }$$, '2024-01-01 16:28:11.006719-07', '2024-01-02 16:28:11.006719-07', '2024-01-02 16:28:11.006719-07'); + commit; From 9283300b3f9efb0d4f951b01a12db3c16018be53 Mon Sep 17 00:00:00 2001 From: Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> Date: Thu, 16 May 2024 10:37:14 -0700 Subject: [PATCH 31/34] chore: remove analyst insert and update to cbc --- db/deploy/tables/cbc.sql | 4 ++-- db/deploy/tables/cbc_data.sql | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/db/deploy/tables/cbc.sql b/db/deploy/tables/cbc.sql index 3b9d526cb1..045b9eee04 100644 --- a/db/deploy/tables/cbc.sql +++ b/db/deploy/tables/cbc.sql @@ -26,8 +26,8 @@ perform ccbc_private.grant_permissions('update', 'cbc', 'ccbc_admin'); -- Grant ccbc_analyst permissions perform ccbc_private.grant_permissions('select', 'cbc', 'ccbc_analyst'); -perform ccbc_private.grant_permissions('insert', 'cbc', 'ccbc_analyst'); -perform ccbc_private.grant_permissions('update', 'cbc', 'ccbc_analyst'); +-- perform ccbc_private.grant_permissions('insert', 'cbc', 'ccbc_analyst'); +-- perform ccbc_private.grant_permissions('update', 'cbc', 'ccbc_analyst'); -- Grant ccbc_service_account permissions perform ccbc_private.grant_permissions('select', 'cbc', 'ccbc_service_account'); diff --git a/db/deploy/tables/cbc_data.sql b/db/deploy/tables/cbc_data.sql index 82eac2b55b..e5e58c9c97 100644 --- a/db/deploy/tables/cbc_data.sql +++ b/db/deploy/tables/cbc_data.sql @@ -23,8 +23,8 @@ perform ccbc_private.grant_permissions('update', 'cbc_data', 'ccbc_admin'); -- Grant ccbc_analyst permissions perform ccbc_private.grant_permissions('select', 'cbc_data', 'ccbc_analyst'); -perform ccbc_private.grant_permissions('insert', 'cbc_data', 'ccbc_analyst'); -perform ccbc_private.grant_permissions('update', 'cbc_data', 'ccbc_analyst'); +-- perform ccbc_private.grant_permissions('insert', 'cbc_data', 'ccbc_analyst'); +-- perform ccbc_private.grant_permissions('update', 'cbc_data', 'ccbc_analyst'); -- Grant ccbc_service_account permissions perform ccbc_private.grant_permissions('select', 'cbc_data', 'ccbc_service_account'); From a4776378b9dc7eef5298c1e167ec7a31c2e53db1 Mon Sep 17 00:00:00 2001 From: Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> Date: Thu, 16 May 2024 10:38:46 -0700 Subject: [PATCH 32/34] test(db): add cbc new tables tests --- db/test/unit/tables/cbc_data_test.sql | 40 +++++++++++++++++++++++++++ db/test/unit/tables/cbc_test.sql | 38 +++++++++++++++++++++++++ 2 files changed, 78 insertions(+) create mode 100644 db/test/unit/tables/cbc_data_test.sql create mode 100644 db/test/unit/tables/cbc_test.sql diff --git a/db/test/unit/tables/cbc_data_test.sql b/db/test/unit/tables/cbc_data_test.sql new file mode 100644 index 0000000000..1a26ef5c3b --- /dev/null +++ b/db/test/unit/tables/cbc_data_test.sql @@ -0,0 +1,40 @@ +begin; + +select plan(8); + +-- Table exists +select has_table( + 'ccbc_public', 'cbc_data', + 'ccbc_public.cbc should exist and be a table' +); + +-- Columns +select has_column('ccbc_public', 'cbc_data', 'id','The table cbc_data has column id'); +select has_column('ccbc_public', 'cbc_data', 'json_data','The table cbc_data has column json_data'); +select has_column('ccbc_public', 'cbc_data', 'project_number','The table cbc_data has column project_number'); +select has_column('ccbc_public', 'cbc_data', 'cbc_id','The table cbc_data has column cbc_id'); +select has_column('ccbc_public', 'cbc_data', 'sharepoint_timestamp','The table cbc_data has column sharepoint_timestamp'); + +-- Privileges +select table_privs_are( + 'ccbc_public', 'cbc_data', 'ccbc_guest', ARRAY[]::text[], + 'ccbc_guest has no privileges from cbc_data table' +); + +select table_privs_are( + 'ccbc_public', 'cbc_data', 'ccbc_auth_user', ARRAY[]::text[], + 'ccbc_auth_user has no privileges from cbc_data table' +); + +select table_privs_are( + 'ccbc_public', 'cbc_data', 'ccbc_admin', ARRAY['SELECT', 'INSERT', 'UPDATE'], + 'ccbc_admin can select, insert and update from cbc_data table' +); + +select table_privs_are( + 'ccbc_public', 'cbc_data', 'ccbc_analyst', ARRAY['SELECT', 'INSERT', 'UPDATE'], + 'ccbc_analyst can select from cbc_data table' +); + +select finish(); +rollback; diff --git a/db/test/unit/tables/cbc_test.sql b/db/test/unit/tables/cbc_test.sql new file mode 100644 index 0000000000..d2abad6c98 --- /dev/null +++ b/db/test/unit/tables/cbc_test.sql @@ -0,0 +1,38 @@ +begin; + +select plan(8); + +-- Table exists +select has_table( + 'ccbc_public', 'cbc', + 'ccbc_public.cbc should exist and be a table' +); + +-- Columns +select has_column('ccbc_public', 'cbc', 'id','The table cbc has column id'); +select has_column('ccbc_public', 'cbc', 'project_number','The table cbc has column project_number'); +select has_column('ccbc_public', 'cbc', 'sharepoint_timestamp','The table cbc has column sharepoint_timestamp'); + +-- Privileges +select table_privs_are( + 'ccbc_public', 'cbc', 'ccbc_guest', ARRAY[]::text[], + 'ccbc_guest has no privileges from cbc table' +); + +select table_privs_are( + 'ccbc_public', 'cbc', 'ccbc_auth_user', ARRAY[]::text[], + 'ccbc_auth_user has no privileges from cbc table' +); + +select table_privs_are( + 'ccbc_public', 'cbc', 'ccbc_admin', ARRAY['SELECT', 'INSERT', 'UPDATE'], + 'ccbc_admin can select, insert and update from cbc table' +); + +select table_privs_are( + 'ccbc_public', 'cbc', 'ccbc_analyst', ARRAY['SELECT', 'INSERT', 'UPDATE'], + 'ccbc_analyst can select from cbc table' +); + +select finish(); +rollback; From 257c1224f8b91f1a9693be2b2a288c3b4939f1b3 Mon Sep 17 00:00:00 2001 From: Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> Date: Thu, 16 May 2024 10:38:57 -0700 Subject: [PATCH 33/34] test(e2e): add missing schema to insert --- db/data/e2e/001_cbc_project.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/data/e2e/001_cbc_project.sql b/db/data/e2e/001_cbc_project.sql index cf95fd90af..d3beea66ed 100644 --- a/db/data/e2e/001_cbc_project.sql +++ b/db/data/e2e/001_cbc_project.sql @@ -147,7 +147,7 @@ insert into ccbc_public.cbc_project( insert into ccbc_public.cbc(id, project_number, sharepoint_timestamp, created_at, updated_at) overriding system value values (1, 5555, '2024-01-01 16:28:11.006719-07', '2024-01-02 16:28:11.006719-07', '2024-01-02 16:28:11.006719-07'); -insert into cbc_data(id, cbc_id, project_number, json_data, sharepoint_timestamp, created_at, updated_at) +insert into ccbc_public.cbc_data(id, cbc_id, project_number, json_data, sharepoint_timestamp, created_at, updated_at) overriding system value values (1, 1, 5555, $${ "phase": 2, From 49ed0e40754309c9bb12fb480ff20130a008577d Mon Sep 17 00:00:00 2001 From: Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> Date: Thu, 16 May 2024 10:52:53 -0700 Subject: [PATCH 34/34] test(db): correct db unit tests --- db/test/unit/tables/cbc_data_test.sql | 4 ++-- db/test/unit/tables/cbc_test.sql | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/db/test/unit/tables/cbc_data_test.sql b/db/test/unit/tables/cbc_data_test.sql index 1a26ef5c3b..db8fb73bb8 100644 --- a/db/test/unit/tables/cbc_data_test.sql +++ b/db/test/unit/tables/cbc_data_test.sql @@ -1,6 +1,6 @@ begin; -select plan(8); +select plan(10); -- Table exists select has_table( @@ -32,7 +32,7 @@ select table_privs_are( ); select table_privs_are( - 'ccbc_public', 'cbc_data', 'ccbc_analyst', ARRAY['SELECT', 'INSERT', 'UPDATE'], + 'ccbc_public', 'cbc_data', 'ccbc_analyst', ARRAY['SELECT'], 'ccbc_analyst can select from cbc_data table' ); diff --git a/db/test/unit/tables/cbc_test.sql b/db/test/unit/tables/cbc_test.sql index d2abad6c98..de79759ff3 100644 --- a/db/test/unit/tables/cbc_test.sql +++ b/db/test/unit/tables/cbc_test.sql @@ -30,7 +30,7 @@ select table_privs_are( ); select table_privs_are( - 'ccbc_public', 'cbc', 'ccbc_analyst', ARRAY['SELECT', 'INSERT', 'UPDATE'], + 'ccbc_public', 'cbc', 'ccbc_analyst', ARRAY['SELECT'], 'ccbc_analyst can select from cbc table' );