From a71c9d39c7b0fde5a22893612234ce305611b59e Mon Sep 17 00:00:00 2001 From: Pierre Bastianelli Date: Fri, 13 Dec 2024 11:31:57 -0800 Subject: [PATCH 1/5] chore: changing unused column type to allow db version migration --- schema/deploy/tables/form_002.sql | 8 ++++++++ schema/revert/tables/form_002.sql | 8 ++++++++ schema/sqitch.plan | 2 ++ schema/verify/tables/form_002.sql | 15 +++++++++++++++ 4 files changed, 33 insertions(+) create mode 100644 schema/deploy/tables/form_002.sql create mode 100644 schema/revert/tables/form_002.sql create mode 100644 schema/verify/tables/form_002.sql diff --git a/schema/deploy/tables/form_002.sql b/schema/deploy/tables/form_002.sql new file mode 100644 index 0000000000..705821f446 --- /dev/null +++ b/schema/deploy/tables/form_002.sql @@ -0,0 +1,8 @@ +-- Deploy cif:tables/form_002 to pg + +begin; + +alter table cif.form +alter column json_schema_generator type varchar(10000); + +commit; diff --git a/schema/revert/tables/form_002.sql b/schema/revert/tables/form_002.sql new file mode 100644 index 0000000000..00b0b8df98 --- /dev/null +++ b/schema/revert/tables/form_002.sql @@ -0,0 +1,8 @@ +-- Revert cif:tables/form_002 from pg + +begin; + +-- No reverting json_schema_generator back to regprocedure. Cannot change varchar back to regprocedure without error. +-- Table will be dropped in original revert file. + +commit; diff --git a/schema/sqitch.plan b/schema/sqitch.plan index cf0c43bf96..b07d4a78a0 100644 --- a/schema/sqitch.plan +++ b/schema/sqitch.plan @@ -378,3 +378,5 @@ mutations/commit_form_change [mutations/commit_form_change@1.15.0] 2023-11-22T19 tables/funding_stream_rfp_002 2024-05-28T22:41:57Z Brianna Cerkiewicz # Add 2024 funding streams values to funding_stream_rfp table @1.17.1 2024-06-03T23:17:40Z Pierre Bastianelli # release v1.17.1 @1.17.2 2024-08-08T20:46:52Z Sepehr Sobhani # release v1.17.2 + +tables/form_002 [tables/form_001] 2024-12-13T19:25:15Z Pierre Bastianelli # dropping regprocedure type for column in favour of varchar to allow postgres version upgrade diff --git a/schema/verify/tables/form_002.sql b/schema/verify/tables/form_002.sql new file mode 100644 index 0000000000..e4999006d2 --- /dev/null +++ b/schema/verify/tables/form_002.sql @@ -0,0 +1,15 @@ +-- Verify cif:tables/form_002 on pg + +begin; + +-- Assess that the table exists with the right privileges + +select pg_catalog.has_table_privilege('cif.form', 'select'); + +-- cif_internal Grants +select cif_private.verify_grant('select', 'form', 'cif_internal'); + +-- cif_admin Grants +select cif_private.verify_grant('select', 'form', 'cif_admin'); + +rollback; From 924b2418663da58380abf85cd72f22e1479260e3 Mon Sep 17 00:00:00 2001 From: Pierre Bastianelli Date: Fri, 13 Dec 2024 11:33:18 -0800 Subject: [PATCH 2/5] chore: release v1.17.3 --- CHANGELOG.md | 6 ++++++ package.json | 2 +- schema/sqitch.plan | 1 + 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 272205c9da..70ff05f472 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## [1.17.3](https://github.com/bcgov/cas-cif/compare/1.17.1...1.17.3) (2024-12-13) + +### Bug Fixes + +- don't show archived attachments on the project attachment list ([5f14e11](https://github.com/bcgov/cas-cif/commit/5f14e112838d1d88127ba8dafa597cee37dd8c3d)) + ## [1.17.2](https://github.com/bcgov/cas-cif/compare/1.17.1...1.17.2) (2024-08-08) ### Bug Fixes diff --git a/package.json b/package.json index 80adf16473..4066fc4ad9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cas-cif", - "version": "1.17.2", + "version": "1.17.3", "main": "index.js", "repository": "https://github.com/bcgov/cas-cif.git", "author": "ggircs@gov.bc.ca", diff --git a/schema/sqitch.plan b/schema/sqitch.plan index b07d4a78a0..4ff4db7674 100644 --- a/schema/sqitch.plan +++ b/schema/sqitch.plan @@ -380,3 +380,4 @@ tables/funding_stream_rfp_002 2024-05-28T22:41:57Z Brianna Cerkiewicz # release v1.17.2 tables/form_002 [tables/form_001] 2024-12-13T19:25:15Z Pierre Bastianelli # dropping regprocedure type for column in favour of varchar to allow postgres version upgrade +@1.17.3 2024-12-13T19:33:09Z Pierre Bastianelli # release v1.17.3 From bf927698ab8e2ded095a22e3714b6348f5db0ca1 Mon Sep 17 00:00:00 2001 From: Pierre Bastianelli Date: Fri, 13 Dec 2024 11:54:54 -0800 Subject: [PATCH 3/5] chore: updated appschema files --- app/schema/schema.graphql | 5960 +++----- app/schema/schema.json | 27283 +++++++++++++++--------------------- 2 files changed, 13239 insertions(+), 20004 deletions(-) diff --git a/app/schema/schema.graphql b/app/schema/schema.graphql index 9ad7819c92..072fab02ce 100644 --- a/app/schema/schema.graphql +++ b/app/schema/schema.graphql @@ -1,17 +1,16 @@ -"""All input for the `addContactToRevision` mutation.""" -input AddContactToRevisionInput { +"""All input for the `addAdditionalFundingSourceToRevision` mutation.""" +input AddAdditionalFundingSourceToRevisionInput { """ 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 - contactId: Int - contactIndex: Int! revisionId: Int! + sourceIndex: Int! } -"""The output of our `addContactToRevision` mutation.""" -type AddContactToRevisionPayload { +"""The output of our `addAdditionalFundingSourceToRevision` mutation.""" +type AddAdditionalFundingSourceToRevisionPayload { """Reads a single `ChangeStatus` that is related to this `FormChange`.""" changeStatusByChangeStatus: ChangeStatus @@ -49,20 +48,20 @@ type AddContactToRevisionPayload { query: Query } -"""All input for the `addProjectAttachmentToRevision` mutation.""" -input AddProjectAttachmentToRevisionInput { - attachmentId: Int! - +"""All input for the `addContactToRevision` mutation.""" +input AddContactToRevisionInput { """ 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 + contactId: Int + contactIndex: Int! revisionId: Int! } -"""The output of our `addProjectAttachmentToRevision` mutation.""" -type AddProjectAttachmentToRevisionPayload { +"""The output of our `addContactToRevision` mutation.""" +type AddContactToRevisionPayload { """Reads a single `ChangeStatus` that is related to this `FormChange`.""" changeStatusByChangeStatus: ChangeStatus @@ -100,6 +99,31 @@ type AddProjectAttachmentToRevisionPayload { query: Query } +"""All input for the `addEmissionIntensityReportToRevision` mutation.""" +input AddEmissionIntensityReportToRevisionInput { + """ + 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 + revisionId: Int! +} + +"""The output of our `addEmissionIntensityReportToRevision` mutation.""" +type AddEmissionIntensityReportToRevisionPayload { + """ + 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 + formChanges: [FormChange] + + """ + Our root query field type. Allows us to run any query from our mutation payload. + """ + query: Query +} + """ Table containing information about funding provided through sources other than CIF and the proponent; often needed for program review and data request purposes. """ @@ -2193,123 +2217,6 @@ type Attachment implements Node { """Reads a single `CifUser` that is related to this `Attachment`.""" cifUserByUpdatedBy: CifUser - """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectAttachmentAttachmentIdAndArchivedBy( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CifUserCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CifUserFilter - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = NO - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `CifUser`.""" - orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): AttachmentCifUsersByProjectAttachmentAttachmentIdAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectAttachmentAttachmentIdAndCreatedBy( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CifUserCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CifUserFilter - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = NO - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `CifUser`.""" - orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): AttachmentCifUsersByProjectAttachmentAttachmentIdAndCreatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectAttachmentAttachmentIdAndUpdatedBy( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CifUserCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CifUserFilter - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = NO - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `CifUser`.""" - orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): AttachmentCifUsersByProjectAttachmentAttachmentIdAndUpdatedByManyToManyConnection! - """created at timestamp""" createdAt: Datetime! @@ -2338,83 +2245,13 @@ type Attachment implements Node { """ id: ID! - """Reads and enables pagination through a set of `ProjectAttachment`.""" - projectAttachmentsByAttachmentId( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ProjectAttachmentCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ProjectAttachmentFilter - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = INHERIT - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `ProjectAttachment`.""" - orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectAttachmentsConnection! - - """Reads and enables pagination through a set of `Project`.""" - projectsByProjectAttachmentAttachmentIdAndProjectId( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ProjectCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ProjectFilter - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = NO - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Reads a single `Project` that is related to this `Attachment`.""" + projectByProjectId: Project + projectId: Int - """The method to use when ordering `Project`.""" - orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): AttachmentProjectsByProjectAttachmentAttachmentIdAndProjectIdManyToManyConnection! + """Reads a single `ProjectStatus` that is related to this `Attachment`.""" + projectStatusByProjectStatusId: ProjectStatus + projectStatusId: Int """Unique ID for the attachment""" rowId: Int! @@ -2426,213 +2263,6 @@ type Attachment implements Node { updatedBy: Int } -""" -A connection to a list of `CifUser` values, with data from `ProjectAttachment`. -""" -type AttachmentCifUsersByProjectAttachmentAttachmentIdAndArchivedByManyToManyConnection { - """ - A list of edges which contains the `CifUser`, info from the `ProjectAttachment`, and the cursor to aid in pagination. - """ - edges: [AttachmentCifUsersByProjectAttachmentAttachmentIdAndArchivedByManyToManyEdge!]! - - """A list of `CifUser` objects.""" - nodes: [CifUser]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CifUser` you could get from the connection.""" - totalCount: Int! -} - -""" -A `CifUser` edge in the connection, with data from `ProjectAttachment`. -""" -type AttachmentCifUsersByProjectAttachmentAttachmentIdAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CifUser` at the end of the edge.""" - node: CifUser - - """Reads and enables pagination through a set of `ProjectAttachment`.""" - projectAttachmentsByArchivedBy( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ProjectAttachmentCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ProjectAttachmentFilter - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = NO - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `ProjectAttachment`.""" - orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectAttachmentsConnection! -} - -""" -A connection to a list of `CifUser` values, with data from `ProjectAttachment`. -""" -type AttachmentCifUsersByProjectAttachmentAttachmentIdAndCreatedByManyToManyConnection { - """ - A list of edges which contains the `CifUser`, info from the `ProjectAttachment`, and the cursor to aid in pagination. - """ - edges: [AttachmentCifUsersByProjectAttachmentAttachmentIdAndCreatedByManyToManyEdge!]! - - """A list of `CifUser` objects.""" - nodes: [CifUser]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CifUser` you could get from the connection.""" - totalCount: Int! -} - -""" -A `CifUser` edge in the connection, with data from `ProjectAttachment`. -""" -type AttachmentCifUsersByProjectAttachmentAttachmentIdAndCreatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CifUser` at the end of the edge.""" - node: CifUser - - """Reads and enables pagination through a set of `ProjectAttachment`.""" - projectAttachmentsByCreatedBy( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ProjectAttachmentCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ProjectAttachmentFilter - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = NO - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `ProjectAttachment`.""" - orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectAttachmentsConnection! -} - -""" -A connection to a list of `CifUser` values, with data from `ProjectAttachment`. -""" -type AttachmentCifUsersByProjectAttachmentAttachmentIdAndUpdatedByManyToManyConnection { - """ - A list of edges which contains the `CifUser`, info from the `ProjectAttachment`, and the cursor to aid in pagination. - """ - edges: [AttachmentCifUsersByProjectAttachmentAttachmentIdAndUpdatedByManyToManyEdge!]! - - """A list of `CifUser` objects.""" - nodes: [CifUser]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CifUser` you could get from the connection.""" - totalCount: Int! -} - -""" -A `CifUser` edge in the connection, with data from `ProjectAttachment`. -""" -type AttachmentCifUsersByProjectAttachmentAttachmentIdAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CifUser` at the end of the edge.""" - node: CifUser - - """Reads and enables pagination through a set of `ProjectAttachment`.""" - projectAttachmentsByUpdatedBy( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ProjectAttachmentCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ProjectAttachmentFilter - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = NO - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `ProjectAttachment`.""" - orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectAttachmentsConnection! -} - """ A condition to be used against `Attachment` object types. All fields are tested for equality and combined with a logical ‘and.’ @@ -2665,6 +2295,12 @@ input AttachmentCondition { """Checks for equality with the object’s `fileType` field.""" fileType: String + """Checks for equality with the object’s `projectId` field.""" + projectId: Int + + """Checks for equality with the object’s `projectStatusId` field.""" + projectStatusId: Int + """Checks for equality with the object’s `rowId` field.""" rowId: Int @@ -2733,11 +2369,23 @@ input AttachmentFilter { """Checks for any expressions in this list.""" or: [AttachmentFilter!] - """Filter by the object’s `projectAttachmentsByAttachmentId` relation.""" - projectAttachmentsByAttachmentId: AttachmentToManyProjectAttachmentFilter + """Filter by the object’s `projectByProjectId` relation.""" + projectByProjectId: ProjectFilter + + """A related `projectByProjectId` exists.""" + projectByProjectIdExists: Boolean + + """Filter by the object’s `projectId` field.""" + projectId: IntFilter + + """Filter by the object’s `projectStatusByProjectStatusId` relation.""" + projectStatusByProjectStatusId: ProjectStatusFilter - """Some related `projectAttachmentsByAttachmentId` exist.""" - projectAttachmentsByAttachmentIdExist: Boolean + """A related `projectStatusByProjectStatusId` exists.""" + projectStatusByProjectStatusIdExists: Boolean + + """Filter by the object’s `projectStatusId` field.""" + projectStatusId: IntFilter """Filter by the object’s `rowId` field.""" rowId: IntFilter @@ -2779,6 +2427,8 @@ input AttachmentInput { """Original uploaded file type""" fileType: String + projectId: Int + projectStatusId: Int """updated at timestamp""" updatedAt: Datetime @@ -2819,6 +2469,8 @@ input AttachmentPatch { """Original uploaded file type""" fileType: String + projectId: Int + projectStatusId: Int """updated at timestamp""" updatedAt: Datetime @@ -2827,95 +2479,6 @@ input AttachmentPatch { updatedBy: Int } -""" -A connection to a list of `Project` values, with data from `ProjectAttachment`. -""" -type AttachmentProjectsByProjectAttachmentAttachmentIdAndProjectIdManyToManyConnection { - """ - A list of edges which contains the `Project`, info from the `ProjectAttachment`, and the cursor to aid in pagination. - """ - edges: [AttachmentProjectsByProjectAttachmentAttachmentIdAndProjectIdManyToManyEdge!]! - - """A list of `Project` objects.""" - nodes: [Project]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `Project` you could get from the connection.""" - totalCount: Int! -} - -""" -A `Project` edge in the connection, with data from `ProjectAttachment`. -""" -type AttachmentProjectsByProjectAttachmentAttachmentIdAndProjectIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `Project` at the end of the edge.""" - node: Project - - """Reads and enables pagination through a set of `ProjectAttachment`.""" - projectAttachmentsByProjectId( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ProjectAttachmentCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ProjectAttachmentFilter - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = NO - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `ProjectAttachment`.""" - orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectAttachmentsConnection! -} - -""" -A filter to be used against many `ProjectAttachment` object types. All fields are combined with a logical ‘and.’ -""" -input AttachmentToManyProjectAttachmentFilter { - """ - Every related `ProjectAttachment` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ProjectAttachmentFilter - - """ - No related `ProjectAttachment` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ProjectAttachmentFilter - - """ - Some related `ProjectAttachment` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ProjectAttachmentFilter -} - """A connection to a list of `Attachment` values.""" type AttachmentsConnection { """ @@ -3045,8 +2608,70 @@ enum AttachmentsOrderBy { NATURAL PRIMARY_KEY_ASC PRIMARY_KEY_DESC - PROJECT_ATTACHMENTS_BY_ATTACHMENT_ID__COUNT_ASC - PROJECT_ATTACHMENTS_BY_ATTACHMENT_ID__COUNT_DESC + PROJECT_BY_PROJECT_ID__ADDITIONAL_SECTOR_INFORMATION_ASC + PROJECT_BY_PROJECT_ID__ADDITIONAL_SECTOR_INFORMATION_DESC + PROJECT_BY_PROJECT_ID__ARCHIVED_AT_ASC + PROJECT_BY_PROJECT_ID__ARCHIVED_AT_DESC + PROJECT_BY_PROJECT_ID__ARCHIVED_BY_ASC + PROJECT_BY_PROJECT_ID__ARCHIVED_BY_DESC + PROJECT_BY_PROJECT_ID__COMMENTS_ASC + PROJECT_BY_PROJECT_ID__COMMENTS_DESC + PROJECT_BY_PROJECT_ID__CONTRACT_NUMBER_ASC + PROJECT_BY_PROJECT_ID__CONTRACT_NUMBER_DESC + PROJECT_BY_PROJECT_ID__CREATED_AT_ASC + PROJECT_BY_PROJECT_ID__CREATED_AT_DESC + PROJECT_BY_PROJECT_ID__CREATED_BY_ASC + PROJECT_BY_PROJECT_ID__CREATED_BY_DESC + PROJECT_BY_PROJECT_ID__FUNDING_STREAM_RFP_ID_ASC + PROJECT_BY_PROJECT_ID__FUNDING_STREAM_RFP_ID_DESC + PROJECT_BY_PROJECT_ID__ID_ASC + PROJECT_BY_PROJECT_ID__ID_DESC + PROJECT_BY_PROJECT_ID__NEXT_MILESTONE_DUE_DATE_ASC + PROJECT_BY_PROJECT_ID__NEXT_MILESTONE_DUE_DATE_DESC + PROJECT_BY_PROJECT_ID__OPERATOR_ID_ASC + PROJECT_BY_PROJECT_ID__OPERATOR_ID_DESC + PROJECT_BY_PROJECT_ID__PROJECT_NAME_ASC + PROJECT_BY_PROJECT_ID__PROJECT_NAME_DESC + PROJECT_BY_PROJECT_ID__PROJECT_STATUS_ID_ASC + PROJECT_BY_PROJECT_ID__PROJECT_STATUS_ID_DESC + PROJECT_BY_PROJECT_ID__PROJECT_TYPE_ASC + PROJECT_BY_PROJECT_ID__PROJECT_TYPE_DESC + PROJECT_BY_PROJECT_ID__PROPOSAL_REFERENCE_ASC + PROJECT_BY_PROJECT_ID__PROPOSAL_REFERENCE_DESC + PROJECT_BY_PROJECT_ID__SCORE_ASC + PROJECT_BY_PROJECT_ID__SCORE_DESC + PROJECT_BY_PROJECT_ID__SECTOR_NAME_ASC + PROJECT_BY_PROJECT_ID__SECTOR_NAME_DESC + PROJECT_BY_PROJECT_ID__SUMMARY_ASC + PROJECT_BY_PROJECT_ID__SUMMARY_DESC + PROJECT_BY_PROJECT_ID__TOTAL_FUNDING_REQUEST_ASC + PROJECT_BY_PROJECT_ID__TOTAL_FUNDING_REQUEST_DESC + PROJECT_BY_PROJECT_ID__UPDATED_AT_ASC + PROJECT_BY_PROJECT_ID__UPDATED_AT_DESC + PROJECT_BY_PROJECT_ID__UPDATED_BY_ASC + PROJECT_BY_PROJECT_ID__UPDATED_BY_DESC + PROJECT_ID_ASC + PROJECT_ID_DESC + PROJECT_STATUS_BY_PROJECT_STATUS_ID__ARCHIVED_AT_ASC + PROJECT_STATUS_BY_PROJECT_STATUS_ID__ARCHIVED_AT_DESC + PROJECT_STATUS_BY_PROJECT_STATUS_ID__ARCHIVED_BY_ASC + PROJECT_STATUS_BY_PROJECT_STATUS_ID__ARCHIVED_BY_DESC + PROJECT_STATUS_BY_PROJECT_STATUS_ID__CREATED_AT_ASC + PROJECT_STATUS_BY_PROJECT_STATUS_ID__CREATED_AT_DESC + PROJECT_STATUS_BY_PROJECT_STATUS_ID__CREATED_BY_ASC + PROJECT_STATUS_BY_PROJECT_STATUS_ID__CREATED_BY_DESC + PROJECT_STATUS_BY_PROJECT_STATUS_ID__DESCRIPTION_ASC + PROJECT_STATUS_BY_PROJECT_STATUS_ID__DESCRIPTION_DESC + PROJECT_STATUS_BY_PROJECT_STATUS_ID__ID_ASC + PROJECT_STATUS_BY_PROJECT_STATUS_ID__ID_DESC + PROJECT_STATUS_BY_PROJECT_STATUS_ID__NAME_ASC + PROJECT_STATUS_BY_PROJECT_STATUS_ID__NAME_DESC + PROJECT_STATUS_BY_PROJECT_STATUS_ID__UPDATED_AT_ASC + PROJECT_STATUS_BY_PROJECT_STATUS_ID__UPDATED_AT_DESC + PROJECT_STATUS_BY_PROJECT_STATUS_ID__UPDATED_BY_ASC + PROJECT_STATUS_BY_PROJECT_STATUS_ID__UPDATED_BY_DESC + PROJECT_STATUS_ID_ASC + PROJECT_STATUS_ID_DESC UPDATED_AT_ASC UPDATED_AT_DESC UPDATED_BY_ASC @@ -5300,85 +4925,7 @@ type CifUser implements Node { ): AttachmentsConnection! """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByProjectAttachmentArchivedByAndAttachmentId( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - 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 - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = NO - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserAttachmentsByProjectAttachmentArchivedByAndAttachmentIdManyToManyConnection! - - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByProjectAttachmentCreatedByAndAttachmentId( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - 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 - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = NO - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserAttachmentsByProjectAttachmentCreatedByAndAttachmentIdManyToManyConnection! - - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByProjectAttachmentUpdatedByAndAttachmentId( + attachmentsByUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -5401,7 +4948,7 @@ type CifUser implements Node { """ Indicates whether archived items should be included in the results or not. """ - includeArchived: IncludeArchivedOption = NO + includeArchived: IncludeArchivedOption = INHERIT """Only read the last `n` values of the set.""" last: Int @@ -5414,10 +4961,10 @@ type CifUser implements Node { """The method to use when ordering `Attachment`.""" orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserAttachmentsByProjectAttachmentUpdatedByAndAttachmentIdManyToManyConnection! + ): AttachmentsConnection! - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByUpdatedBy( + """Reads and enables pagination through a set of `ChangeStatus`.""" + changeStatusesByArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -5427,12 +4974,12 @@ type CifUser implements Node { """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: ChangeStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter + filter: ChangeStatusFilter """Only read the first `n` values of the set.""" first: Int @@ -5451,12 +4998,12 @@ type CifUser implements Node { """ offset: Int - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - ): AttachmentsConnection! + """The method to use when ordering `ChangeStatus`.""" + orderBy: [ChangeStatusesOrderBy!] = [PRIMARY_KEY_ASC] + ): ChangeStatusesConnection! """Reads and enables pagination through a set of `ChangeStatus`.""" - changeStatusesByArchivedBy( + changeStatusesByCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -5495,7 +5042,7 @@ type CifUser implements Node { ): ChangeStatusesConnection! """Reads and enables pagination through a set of `ChangeStatus`.""" - changeStatusesByCreatedBy( + changeStatusesByFormChangeCreatedByAndChangeStatus( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -5518,7 +5065,7 @@ type CifUser implements Node { """ Indicates whether archived items should be included in the results or not. """ - includeArchived: IncludeArchivedOption = INHERIT + includeArchived: IncludeArchivedOption = NO """Only read the last `n` values of the set.""" last: Int @@ -5531,49 +5078,10 @@ type CifUser implements Node { """The method to use when ordering `ChangeStatus`.""" orderBy: [ChangeStatusesOrderBy!] = [PRIMARY_KEY_ASC] - ): ChangeStatusesConnection! + ): CifUserChangeStatusesByFormChangeCreatedByAndChangeStatusManyToManyConnection! """Reads and enables pagination through a set of `ChangeStatus`.""" - changeStatusesByFormChangeCreatedByAndChangeStatus( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ChangeStatusCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ChangeStatusFilter - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = NO - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `ChangeStatus`.""" - orderBy: [ChangeStatusesOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserChangeStatusesByFormChangeCreatedByAndChangeStatusManyToManyConnection! - - """Reads and enables pagination through a set of `ChangeStatus`.""" - changeStatusesByFormChangeUpdatedByAndChangeStatus( + changeStatusesByFormChangeUpdatedByAndChangeStatus( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -9950,7 +9458,7 @@ type CifUser implements Node { ): CifUserCifUsersByProjectArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectAttachmentArchivedByAndCreatedBy( + cifUsersByProjectContactArchivedByAndCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -9986,10 +9494,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectAttachmentArchivedByAndCreatedByManyToManyConnection! + ): CifUserCifUsersByProjectContactArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectAttachmentArchivedByAndUpdatedBy( + cifUsersByProjectContactArchivedByAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -10025,10 +9533,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectAttachmentArchivedByAndUpdatedByManyToManyConnection! + ): CifUserCifUsersByProjectContactArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectAttachmentCreatedByAndArchivedBy( + cifUsersByProjectContactCreatedByAndArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -10064,10 +9572,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectAttachmentCreatedByAndArchivedByManyToManyConnection! + ): CifUserCifUsersByProjectContactCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectAttachmentCreatedByAndUpdatedBy( + cifUsersByProjectContactCreatedByAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -10103,10 +9611,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectAttachmentCreatedByAndUpdatedByManyToManyConnection! + ): CifUserCifUsersByProjectContactCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectAttachmentUpdatedByAndArchivedBy( + cifUsersByProjectContactUpdatedByAndArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -10142,10 +9650,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectAttachmentUpdatedByAndArchivedByManyToManyConnection! + ): CifUserCifUsersByProjectContactUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectAttachmentUpdatedByAndCreatedBy( + cifUsersByProjectContactUpdatedByAndCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -10181,10 +9689,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectAttachmentUpdatedByAndCreatedByManyToManyConnection! + ): CifUserCifUsersByProjectContactUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectContactArchivedByAndCreatedBy( + cifUsersByProjectCreatedByAndArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -10220,10 +9728,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectContactArchivedByAndCreatedByManyToManyConnection! + ): CifUserCifUsersByProjectCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectContactArchivedByAndUpdatedBy( + cifUsersByProjectCreatedByAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -10259,10 +9767,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectContactArchivedByAndUpdatedByManyToManyConnection! + ): CifUserCifUsersByProjectCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectContactCreatedByAndArchivedBy( + cifUsersByProjectManagerArchivedByAndCifUserId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -10298,10 +9806,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectContactCreatedByAndArchivedByManyToManyConnection! + ): CifUserCifUsersByProjectManagerArchivedByAndCifUserIdManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectContactCreatedByAndUpdatedBy( + cifUsersByProjectManagerArchivedByAndCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -10337,10 +9845,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectContactCreatedByAndUpdatedByManyToManyConnection! + ): CifUserCifUsersByProjectManagerArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectContactUpdatedByAndArchivedBy( + cifUsersByProjectManagerArchivedByAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -10376,10 +9884,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectContactUpdatedByAndArchivedByManyToManyConnection! + ): CifUserCifUsersByProjectManagerArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectContactUpdatedByAndCreatedBy( + cifUsersByProjectManagerCifUserIdAndArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -10415,10 +9923,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectContactUpdatedByAndCreatedByManyToManyConnection! + ): CifUserCifUsersByProjectManagerCifUserIdAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectCreatedByAndArchivedBy( + cifUsersByProjectManagerCifUserIdAndCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -10454,10 +9962,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectCreatedByAndArchivedByManyToManyConnection! + ): CifUserCifUsersByProjectManagerCifUserIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectCreatedByAndUpdatedBy( + cifUsersByProjectManagerCifUserIdAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -10493,10 +10001,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectCreatedByAndUpdatedByManyToManyConnection! + ): CifUserCifUsersByProjectManagerCifUserIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectManagerArchivedByAndCifUserId( + cifUsersByProjectManagerCreatedByAndArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -10532,10 +10040,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectManagerArchivedByAndCifUserIdManyToManyConnection! + ): CifUserCifUsersByProjectManagerCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectManagerArchivedByAndCreatedBy( + cifUsersByProjectManagerCreatedByAndCifUserId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -10571,10 +10079,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectManagerArchivedByAndCreatedByManyToManyConnection! + ): CifUserCifUsersByProjectManagerCreatedByAndCifUserIdManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectManagerArchivedByAndUpdatedBy( + cifUsersByProjectManagerCreatedByAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -10610,10 +10118,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectManagerArchivedByAndUpdatedByManyToManyConnection! + ): CifUserCifUsersByProjectManagerCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectManagerCifUserIdAndArchivedBy( + cifUsersByProjectManagerLabelArchivedByAndCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -10649,10 +10157,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectManagerCifUserIdAndArchivedByManyToManyConnection! + ): CifUserCifUsersByProjectManagerLabelArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectManagerCifUserIdAndCreatedBy( + cifUsersByProjectManagerLabelArchivedByAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -10688,10 +10196,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectManagerCifUserIdAndCreatedByManyToManyConnection! + ): CifUserCifUsersByProjectManagerLabelArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectManagerCifUserIdAndUpdatedBy( + cifUsersByProjectManagerLabelCreatedByAndArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -10727,10 +10235,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectManagerCifUserIdAndUpdatedByManyToManyConnection! + ): CifUserCifUsersByProjectManagerLabelCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectManagerCreatedByAndArchivedBy( + cifUsersByProjectManagerLabelCreatedByAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -10766,10 +10274,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectManagerCreatedByAndArchivedByManyToManyConnection! + ): CifUserCifUsersByProjectManagerLabelCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectManagerCreatedByAndCifUserId( + cifUsersByProjectManagerLabelUpdatedByAndArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -10805,10 +10313,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectManagerCreatedByAndCifUserIdManyToManyConnection! + ): CifUserCifUsersByProjectManagerLabelUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectManagerCreatedByAndUpdatedBy( + cifUsersByProjectManagerLabelUpdatedByAndCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -10844,10 +10352,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectManagerCreatedByAndUpdatedByManyToManyConnection! + ): CifUserCifUsersByProjectManagerLabelUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectManagerLabelArchivedByAndCreatedBy( + cifUsersByProjectManagerUpdatedByAndArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -10883,10 +10391,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectManagerLabelArchivedByAndCreatedByManyToManyConnection! + ): CifUserCifUsersByProjectManagerUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectManagerLabelArchivedByAndUpdatedBy( + cifUsersByProjectManagerUpdatedByAndCifUserId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -10922,10 +10430,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectManagerLabelArchivedByAndUpdatedByManyToManyConnection! + ): CifUserCifUsersByProjectManagerUpdatedByAndCifUserIdManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectManagerLabelCreatedByAndArchivedBy( + cifUsersByProjectManagerUpdatedByAndCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -10961,10 +10469,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectManagerLabelCreatedByAndArchivedByManyToManyConnection! + ): CifUserCifUsersByProjectManagerUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectManagerLabelCreatedByAndUpdatedBy( + cifUsersByProjectRevisionAmendmentTypeArchivedByAndCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -11000,10 +10508,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectManagerLabelCreatedByAndUpdatedByManyToManyConnection! + ): CifUserCifUsersByProjectRevisionAmendmentTypeArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectManagerLabelUpdatedByAndArchivedBy( + cifUsersByProjectRevisionAmendmentTypeArchivedByAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -11039,10 +10547,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectManagerLabelUpdatedByAndArchivedByManyToManyConnection! + ): CifUserCifUsersByProjectRevisionAmendmentTypeArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectManagerLabelUpdatedByAndCreatedBy( + cifUsersByProjectRevisionAmendmentTypeCreatedByAndArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -11078,10 +10586,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectManagerLabelUpdatedByAndCreatedByManyToManyConnection! + ): CifUserCifUsersByProjectRevisionAmendmentTypeCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectManagerUpdatedByAndArchivedBy( + cifUsersByProjectRevisionAmendmentTypeCreatedByAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -11117,10 +10625,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectManagerUpdatedByAndArchivedByManyToManyConnection! + ): CifUserCifUsersByProjectRevisionAmendmentTypeCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectManagerUpdatedByAndCifUserId( + cifUsersByProjectRevisionAmendmentTypeUpdatedByAndArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -11156,10 +10664,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectManagerUpdatedByAndCifUserIdManyToManyConnection! + ): CifUserCifUsersByProjectRevisionAmendmentTypeUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectManagerUpdatedByAndCreatedBy( + cifUsersByProjectRevisionAmendmentTypeUpdatedByAndCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -11195,10 +10703,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectManagerUpdatedByAndCreatedByManyToManyConnection! + ): CifUserCifUsersByProjectRevisionAmendmentTypeUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectRevisionAmendmentTypeArchivedByAndCreatedBy( + cifUsersByProjectRevisionCreatedByAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -11234,10 +10742,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectRevisionAmendmentTypeArchivedByAndCreatedByManyToManyConnection! + ): CifUserCifUsersByProjectRevisionCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectRevisionAmendmentTypeArchivedByAndUpdatedBy( + cifUsersByProjectRevisionUpdatedByAndCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -11273,10 +10781,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectRevisionAmendmentTypeArchivedByAndUpdatedByManyToManyConnection! + ): CifUserCifUsersByProjectRevisionUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectRevisionAmendmentTypeCreatedByAndArchivedBy( + cifUsersByProjectStatusArchivedByAndCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -11312,10 +10820,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectRevisionAmendmentTypeCreatedByAndArchivedByManyToManyConnection! + ): CifUserCifUsersByProjectStatusArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectRevisionAmendmentTypeCreatedByAndUpdatedBy( + cifUsersByProjectStatusArchivedByAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -11351,10 +10859,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectRevisionAmendmentTypeCreatedByAndUpdatedByManyToManyConnection! + ): CifUserCifUsersByProjectStatusArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectRevisionAmendmentTypeUpdatedByAndArchivedBy( + cifUsersByProjectStatusCreatedByAndArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -11390,10 +10898,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectRevisionAmendmentTypeUpdatedByAndArchivedByManyToManyConnection! + ): CifUserCifUsersByProjectStatusCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectRevisionAmendmentTypeUpdatedByAndCreatedBy( + cifUsersByProjectStatusCreatedByAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -11429,10 +10937,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectRevisionAmendmentTypeUpdatedByAndCreatedByManyToManyConnection! + ): CifUserCifUsersByProjectStatusCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectRevisionCreatedByAndUpdatedBy( + cifUsersByProjectStatusUpdatedByAndArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -11468,10 +10976,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectRevisionCreatedByAndUpdatedByManyToManyConnection! + ): CifUserCifUsersByProjectStatusUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectRevisionUpdatedByAndCreatedBy( + cifUsersByProjectStatusUpdatedByAndCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -11507,10 +11015,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectRevisionUpdatedByAndCreatedByManyToManyConnection! + ): CifUserCifUsersByProjectStatusUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectStatusArchivedByAndCreatedBy( + cifUsersByProjectTypeArchivedByAndCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -11546,10 +11054,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectStatusArchivedByAndCreatedByManyToManyConnection! + ): CifUserCifUsersByProjectTypeArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectStatusArchivedByAndUpdatedBy( + cifUsersByProjectTypeArchivedByAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -11585,10 +11093,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectStatusArchivedByAndUpdatedByManyToManyConnection! + ): CifUserCifUsersByProjectTypeArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectStatusCreatedByAndArchivedBy( + cifUsersByProjectTypeCreatedByAndArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -11624,10 +11132,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectStatusCreatedByAndArchivedByManyToManyConnection! + ): CifUserCifUsersByProjectTypeCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectStatusCreatedByAndUpdatedBy( + cifUsersByProjectTypeCreatedByAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -11663,10 +11171,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectStatusCreatedByAndUpdatedByManyToManyConnection! + ): CifUserCifUsersByProjectTypeCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectStatusUpdatedByAndArchivedBy( + cifUsersByProjectTypeUpdatedByAndArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -11702,10 +11210,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectStatusUpdatedByAndArchivedByManyToManyConnection! + ): CifUserCifUsersByProjectTypeUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectStatusUpdatedByAndCreatedBy( + cifUsersByProjectTypeUpdatedByAndCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -11741,10 +11249,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectStatusUpdatedByAndCreatedByManyToManyConnection! + ): CifUserCifUsersByProjectTypeUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectTypeArchivedByAndCreatedBy( + cifUsersByProjectUpdatedByAndArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -11780,10 +11288,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectTypeArchivedByAndCreatedByManyToManyConnection! + ): CifUserCifUsersByProjectUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectTypeArchivedByAndUpdatedBy( + cifUsersByProjectUpdatedByAndCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -11819,10 +11327,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectTypeArchivedByAndUpdatedByManyToManyConnection! + ): CifUserCifUsersByProjectUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectTypeCreatedByAndArchivedBy( + cifUsersByReportTypeArchivedByAndCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -11858,10 +11366,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectTypeCreatedByAndArchivedByManyToManyConnection! + ): CifUserCifUsersByReportTypeArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectTypeCreatedByAndUpdatedBy( + cifUsersByReportTypeArchivedByAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -11897,10 +11405,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectTypeCreatedByAndUpdatedByManyToManyConnection! + ): CifUserCifUsersByReportTypeArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectTypeUpdatedByAndArchivedBy( + cifUsersByReportTypeCreatedByAndArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -11936,10 +11444,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectTypeUpdatedByAndArchivedByManyToManyConnection! + ): CifUserCifUsersByReportTypeCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectTypeUpdatedByAndCreatedBy( + cifUsersByReportTypeCreatedByAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -11975,10 +11483,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectTypeUpdatedByAndCreatedByManyToManyConnection! + ): CifUserCifUsersByReportTypeCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectUpdatedByAndArchivedBy( + cifUsersByReportTypeUpdatedByAndArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -12014,10 +11522,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectUpdatedByAndArchivedByManyToManyConnection! + ): CifUserCifUsersByReportTypeUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectUpdatedByAndCreatedBy( + cifUsersByReportTypeUpdatedByAndCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -12053,10 +11561,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectUpdatedByAndCreatedByManyToManyConnection! + ): CifUserCifUsersByReportTypeUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByReportTypeArchivedByAndCreatedBy( + cifUsersByReportingRequirementArchivedByAndCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -12092,10 +11600,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByReportTypeArchivedByAndCreatedByManyToManyConnection! + ): CifUserCifUsersByReportingRequirementArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByReportTypeArchivedByAndUpdatedBy( + cifUsersByReportingRequirementArchivedByAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -12131,10 +11639,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByReportTypeArchivedByAndUpdatedByManyToManyConnection! + ): CifUserCifUsersByReportingRequirementArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByReportTypeCreatedByAndArchivedBy( + cifUsersByReportingRequirementCreatedByAndArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -12170,10 +11678,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByReportTypeCreatedByAndArchivedByManyToManyConnection! + ): CifUserCifUsersByReportingRequirementCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByReportTypeCreatedByAndUpdatedBy( + cifUsersByReportingRequirementCreatedByAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -12209,88 +11717,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByReportTypeCreatedByAndUpdatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByReportTypeUpdatedByAndArchivedBy( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CifUserCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CifUserFilter - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = NO - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `CifUser`.""" - orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByReportTypeUpdatedByAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByReportTypeUpdatedByAndCreatedBy( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CifUserCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CifUserFilter - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = NO - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `CifUser`.""" - orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByReportTypeUpdatedByAndCreatedByManyToManyConnection! + ): CifUserCifUsersByReportingRequirementCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByReportingRequirementArchivedByAndCreatedBy( + cifUsersByReportingRequirementUpdatedByAndArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -12326,10 +11756,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByReportingRequirementArchivedByAndCreatedByManyToManyConnection! + ): CifUserCifUsersByReportingRequirementUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByReportingRequirementArchivedByAndUpdatedBy( + cifUsersByReportingRequirementUpdatedByAndCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -12365,10 +11795,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByReportingRequirementArchivedByAndUpdatedByManyToManyConnection! + ): CifUserCifUsersByReportingRequirementUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByReportingRequirementCreatedByAndArchivedBy( + cifUsersByRevisionStatusArchivedByAndCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -12404,10 +11834,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByReportingRequirementCreatedByAndArchivedByManyToManyConnection! + ): CifUserCifUsersByRevisionStatusArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByReportingRequirementCreatedByAndUpdatedBy( + cifUsersByRevisionStatusArchivedByAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -12443,10 +11873,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByReportingRequirementCreatedByAndUpdatedByManyToManyConnection! + ): CifUserCifUsersByRevisionStatusArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByReportingRequirementUpdatedByAndArchivedBy( + cifUsersByRevisionStatusCreatedByAndArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -12482,10 +11912,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByReportingRequirementUpdatedByAndArchivedByManyToManyConnection! + ): CifUserCifUsersByRevisionStatusCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByReportingRequirementUpdatedByAndCreatedBy( + cifUsersByRevisionStatusCreatedByAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -12521,10 +11951,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByReportingRequirementUpdatedByAndCreatedByManyToManyConnection! + ): CifUserCifUsersByRevisionStatusCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByRevisionStatusArchivedByAndCreatedBy( + cifUsersByRevisionStatusUpdatedByAndArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -12560,10 +11990,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByRevisionStatusArchivedByAndCreatedByManyToManyConnection! + ): CifUserCifUsersByRevisionStatusUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByRevisionStatusArchivedByAndUpdatedBy( + cifUsersByRevisionStatusUpdatedByAndCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -12599,10 +12029,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByRevisionStatusArchivedByAndUpdatedByManyToManyConnection! + ): CifUserCifUsersByRevisionStatusUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByRevisionStatusCreatedByAndArchivedBy( + cifUsersByRevisionTypeArchivedByAndCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -12638,10 +12068,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByRevisionStatusCreatedByAndArchivedByManyToManyConnection! + ): CifUserCifUsersByRevisionTypeArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByRevisionStatusCreatedByAndUpdatedBy( + cifUsersByRevisionTypeArchivedByAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -12677,10 +12107,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByRevisionStatusCreatedByAndUpdatedByManyToManyConnection! + ): CifUserCifUsersByRevisionTypeArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByRevisionStatusUpdatedByAndArchivedBy( + cifUsersByRevisionTypeCreatedByAndArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -12716,10 +12146,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByRevisionStatusUpdatedByAndArchivedByManyToManyConnection! + ): CifUserCifUsersByRevisionTypeCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByRevisionStatusUpdatedByAndCreatedBy( + cifUsersByRevisionTypeCreatedByAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -12755,10 +12185,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByRevisionStatusUpdatedByAndCreatedByManyToManyConnection! + ): CifUserCifUsersByRevisionTypeCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByRevisionTypeArchivedByAndCreatedBy( + cifUsersByRevisionTypeUpdatedByAndArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -12794,10 +12224,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByRevisionTypeArchivedByAndCreatedByManyToManyConnection! + ): CifUserCifUsersByRevisionTypeUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByRevisionTypeArchivedByAndUpdatedBy( + cifUsersByRevisionTypeUpdatedByAndCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -12833,10 +12263,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByRevisionTypeArchivedByAndUpdatedByManyToManyConnection! + ): CifUserCifUsersByRevisionTypeUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByRevisionTypeCreatedByAndArchivedBy( + cifUsersBySectorArchivedByAndCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -12872,10 +12302,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByRevisionTypeCreatedByAndArchivedByManyToManyConnection! + ): CifUserCifUsersBySectorArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByRevisionTypeCreatedByAndUpdatedBy( + cifUsersBySectorArchivedByAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -12911,10 +12341,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByRevisionTypeCreatedByAndUpdatedByManyToManyConnection! + ): CifUserCifUsersBySectorArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByRevisionTypeUpdatedByAndArchivedBy( + cifUsersBySectorCreatedByAndArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -12950,10 +12380,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByRevisionTypeUpdatedByAndArchivedByManyToManyConnection! + ): CifUserCifUsersBySectorCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByRevisionTypeUpdatedByAndCreatedBy( + cifUsersBySectorCreatedByAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -12989,10 +12419,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByRevisionTypeUpdatedByAndCreatedByManyToManyConnection! + ): CifUserCifUsersBySectorCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersBySectorArchivedByAndCreatedBy( + cifUsersBySectorUpdatedByAndArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -13028,10 +12458,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersBySectorArchivedByAndCreatedByManyToManyConnection! + ): CifUserCifUsersBySectorUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersBySectorArchivedByAndUpdatedBy( + cifUsersBySectorUpdatedByAndCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -13067,10 +12497,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersBySectorArchivedByAndUpdatedByManyToManyConnection! + ): CifUserCifUsersBySectorUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersBySectorCreatedByAndArchivedBy( + cifUsersByUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -13093,7 +12523,7 @@ type CifUser implements Node { """ Indicates whether archived items should be included in the results or not. """ - includeArchived: IncludeArchivedOption = NO + includeArchived: IncludeArchivedOption = INHERIT """Only read the last `n` values of the set.""" last: Int @@ -13106,10 +12536,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersBySectorCreatedByAndArchivedByManyToManyConnection! + ): CifUsersConnection! - """Reads and enables pagination through a set of `CifUser`.""" - cifUsersBySectorCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `Contact`.""" + contactsByArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -13119,12 +12549,12 @@ type CifUser implements Node { """ A condition to be used in determining which values should be returned by the collection. """ - condition: CifUserCondition + condition: ContactCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CifUserFilter + filter: ContactFilter """Only read the first `n` values of the set.""" first: Int @@ -13132,7 +12562,7 @@ type CifUser implements Node { """ Indicates whether archived items should be included in the results or not. """ - includeArchived: IncludeArchivedOption = NO + includeArchived: IncludeArchivedOption = INHERIT """Only read the last `n` values of the set.""" last: Int @@ -13143,12 +12573,12 @@ type CifUser implements Node { """ offset: Int - """The method to use when ordering `CifUser`.""" - orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersBySectorCreatedByAndUpdatedByManyToManyConnection! + """The method to use when ordering `Contact`.""" + orderBy: [ContactsOrderBy!] = [PRIMARY_KEY_ASC] + ): ContactsConnection! - """Reads and enables pagination through a set of `CifUser`.""" - cifUsersBySectorUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `Contact`.""" + contactsByCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -13158,12 +12588,12 @@ type CifUser implements Node { """ A condition to be used in determining which values should be returned by the collection. """ - condition: CifUserCondition + condition: ContactCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CifUserFilter + filter: ContactFilter """Only read the first `n` values of the set.""" first: Int @@ -13171,7 +12601,7 @@ type CifUser implements Node { """ Indicates whether archived items should be included in the results or not. """ - includeArchived: IncludeArchivedOption = NO + includeArchived: IncludeArchivedOption = INHERIT """Only read the last `n` values of the set.""" last: Int @@ -13182,12 +12612,12 @@ type CifUser implements Node { """ offset: Int - """The method to use when ordering `CifUser`.""" - orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersBySectorUpdatedByAndArchivedByManyToManyConnection! + """The method to use when ordering `Contact`.""" + orderBy: [ContactsOrderBy!] = [PRIMARY_KEY_ASC] + ): ContactsConnection! - """Reads and enables pagination through a set of `CifUser`.""" - cifUsersBySectorUpdatedByAndCreatedBy( + """Reads and enables pagination through a set of `Contact`.""" + contactsByProjectContactArchivedByAndContactId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -13197,12 +12627,12 @@ type CifUser implements Node { """ A condition to be used in determining which values should be returned by the collection. """ - condition: CifUserCondition + condition: ContactCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CifUserFilter + filter: ContactFilter """Only read the first `n` values of the set.""" first: Int @@ -13221,51 +12651,12 @@ type CifUser implements Node { """ offset: Int - """The method to use when ordering `CifUser`.""" - orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersBySectorUpdatedByAndCreatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByUpdatedBy( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CifUserCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CifUserFilter - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = INHERIT - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `CifUser`.""" - orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUsersConnection! + """The method to use when ordering `Contact`.""" + orderBy: [ContactsOrderBy!] = [PRIMARY_KEY_ASC] + ): CifUserContactsByProjectContactArchivedByAndContactIdManyToManyConnection! """Reads and enables pagination through a set of `Contact`.""" - contactsByArchivedBy( + contactsByProjectContactCreatedByAndContactId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -13288,7 +12679,7 @@ type CifUser implements Node { """ Indicates whether archived items should be included in the results or not. """ - includeArchived: IncludeArchivedOption = INHERIT + includeArchived: IncludeArchivedOption = NO """Only read the last `n` values of the set.""" last: Int @@ -13301,127 +12692,10 @@ type CifUser implements Node { """The method to use when ordering `Contact`.""" orderBy: [ContactsOrderBy!] = [PRIMARY_KEY_ASC] - ): ContactsConnection! + ): CifUserContactsByProjectContactCreatedByAndContactIdManyToManyConnection! """Reads and enables pagination through a set of `Contact`.""" - contactsByCreatedBy( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ContactCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ContactFilter - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = INHERIT - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `Contact`.""" - orderBy: [ContactsOrderBy!] = [PRIMARY_KEY_ASC] - ): ContactsConnection! - - """Reads and enables pagination through a set of `Contact`.""" - contactsByProjectContactArchivedByAndContactId( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ContactCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ContactFilter - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = NO - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `Contact`.""" - orderBy: [ContactsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserContactsByProjectContactArchivedByAndContactIdManyToManyConnection! - - """Reads and enables pagination through a set of `Contact`.""" - contactsByProjectContactCreatedByAndContactId( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ContactCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ContactFilter - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = NO - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `Contact`.""" - orderBy: [ContactsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserContactsByProjectContactCreatedByAndContactIdManyToManyConnection! - - """Reads and enables pagination through a set of `Contact`.""" - contactsByProjectContactUpdatedByAndContactId( + contactsByProjectContactUpdatedByAndContactId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -15391,123 +14665,6 @@ type CifUser implements Node { orderBy: [PaymentsOrderBy!] = [PRIMARY_KEY_ASC] ): PaymentsConnection! - """Reads and enables pagination through a set of `ProjectAttachment`.""" - projectAttachmentsByArchivedBy( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ProjectAttachmentCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ProjectAttachmentFilter - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = INHERIT - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `ProjectAttachment`.""" - orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectAttachmentsConnection! - - """Reads and enables pagination through a set of `ProjectAttachment`.""" - projectAttachmentsByCreatedBy( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ProjectAttachmentCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ProjectAttachmentFilter - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = INHERIT - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `ProjectAttachment`.""" - orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectAttachmentsConnection! - - """Reads and enables pagination through a set of `ProjectAttachment`.""" - projectAttachmentsByUpdatedBy( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ProjectAttachmentCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ProjectAttachmentFilter - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = INHERIT - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `ProjectAttachment`.""" - orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectAttachmentsConnection! - """Reads and enables pagination through a set of `ProjectContact`.""" projectContactsByArchivedBy( """Read all values in the set after (below) this cursor.""" @@ -16455,46 +15612,7 @@ type CifUser implements Node { ): ProjectStatusesConnection! """Reads and enables pagination through a set of `ProjectStatus`.""" - projectStatusesByCreatedBy( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ProjectStatusCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ProjectStatusFilter - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = INHERIT - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `ProjectStatus`.""" - orderBy: [ProjectStatusesOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectStatusesConnection! - - """Reads and enables pagination through a set of `ProjectStatus`.""" - projectStatusesByFundingStreamProjectStatusArchivedByAndProjectStatusId( + projectStatusesByAttachmentArchivedByAndProjectStatusId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -16530,10 +15648,10 @@ type CifUser implements Node { """The method to use when ordering `ProjectStatus`.""" orderBy: [ProjectStatusesOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectStatusesByFundingStreamProjectStatusArchivedByAndProjectStatusIdManyToManyConnection! + ): CifUserProjectStatusesByAttachmentArchivedByAndProjectStatusIdManyToManyConnection! """Reads and enables pagination through a set of `ProjectStatus`.""" - projectStatusesByFundingStreamProjectStatusCreatedByAndProjectStatusId( + projectStatusesByAttachmentCreatedByAndProjectStatusId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -16569,10 +15687,10 @@ type CifUser implements Node { """The method to use when ordering `ProjectStatus`.""" orderBy: [ProjectStatusesOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectStatusesByFundingStreamProjectStatusCreatedByAndProjectStatusIdManyToManyConnection! + ): CifUserProjectStatusesByAttachmentCreatedByAndProjectStatusIdManyToManyConnection! """Reads and enables pagination through a set of `ProjectStatus`.""" - projectStatusesByFundingStreamProjectStatusUpdatedByAndProjectStatusId( + projectStatusesByAttachmentUpdatedByAndProjectStatusId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -16608,10 +15726,10 @@ type CifUser implements Node { """The method to use when ordering `ProjectStatus`.""" orderBy: [ProjectStatusesOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectStatusesByFundingStreamProjectStatusUpdatedByAndProjectStatusIdManyToManyConnection! + ): CifUserProjectStatusesByAttachmentUpdatedByAndProjectStatusIdManyToManyConnection! """Reads and enables pagination through a set of `ProjectStatus`.""" - projectStatusesByProjectArchivedByAndProjectStatusId( + projectStatusesByCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -16634,7 +15752,7 @@ type CifUser implements Node { """ Indicates whether archived items should be included in the results or not. """ - includeArchived: IncludeArchivedOption = NO + includeArchived: IncludeArchivedOption = INHERIT """Only read the last `n` values of the set.""" last: Int @@ -16647,10 +15765,10 @@ type CifUser implements Node { """The method to use when ordering `ProjectStatus`.""" orderBy: [ProjectStatusesOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectStatusesByProjectArchivedByAndProjectStatusIdManyToManyConnection! + ): ProjectStatusesConnection! """Reads and enables pagination through a set of `ProjectStatus`.""" - projectStatusesByProjectCreatedByAndProjectStatusId( + projectStatusesByFundingStreamProjectStatusArchivedByAndProjectStatusId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -16686,10 +15804,10 @@ type CifUser implements Node { """The method to use when ordering `ProjectStatus`.""" orderBy: [ProjectStatusesOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectStatusesByProjectCreatedByAndProjectStatusIdManyToManyConnection! + ): CifUserProjectStatusesByFundingStreamProjectStatusArchivedByAndProjectStatusIdManyToManyConnection! """Reads and enables pagination through a set of `ProjectStatus`.""" - projectStatusesByProjectUpdatedByAndProjectStatusId( + projectStatusesByFundingStreamProjectStatusCreatedByAndProjectStatusId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -16725,10 +15843,10 @@ type CifUser implements Node { """The method to use when ordering `ProjectStatus`.""" orderBy: [ProjectStatusesOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectStatusesByProjectUpdatedByAndProjectStatusIdManyToManyConnection! + ): CifUserProjectStatusesByFundingStreamProjectStatusCreatedByAndProjectStatusIdManyToManyConnection! """Reads and enables pagination through a set of `ProjectStatus`.""" - projectStatusesByUpdatedBy( + projectStatusesByFundingStreamProjectStatusUpdatedByAndProjectStatusId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -16751,7 +15869,7 @@ type CifUser implements Node { """ Indicates whether archived items should be included in the results or not. """ - includeArchived: IncludeArchivedOption = INHERIT + includeArchived: IncludeArchivedOption = NO """Only read the last `n` values of the set.""" last: Int @@ -16764,10 +15882,10 @@ type CifUser implements Node { """The method to use when ordering `ProjectStatus`.""" orderBy: [ProjectStatusesOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectStatusesConnection! + ): CifUserProjectStatusesByFundingStreamProjectStatusUpdatedByAndProjectStatusIdManyToManyConnection! - """Reads and enables pagination through a set of `ProjectType`.""" - projectTypesByArchivedBy( + """Reads and enables pagination through a set of `ProjectStatus`.""" + projectStatusesByProjectArchivedByAndProjectStatusId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -16777,12 +15895,12 @@ type CifUser implements Node { """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectTypeCondition + condition: ProjectStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectTypeFilter + filter: ProjectStatusFilter """Only read the first `n` values of the set.""" first: Int @@ -16790,7 +15908,7 @@ type CifUser implements Node { """ Indicates whether archived items should be included in the results or not. """ - includeArchived: IncludeArchivedOption = INHERIT + includeArchived: IncludeArchivedOption = NO """Only read the last `n` values of the set.""" last: Int @@ -16801,12 +15919,12 @@ type CifUser implements Node { """ offset: Int - """The method to use when ordering `ProjectType`.""" - orderBy: [ProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectTypesConnection! + """The method to use when ordering `ProjectStatus`.""" + orderBy: [ProjectStatusesOrderBy!] = [PRIMARY_KEY_ASC] + ): CifUserProjectStatusesByProjectArchivedByAndProjectStatusIdManyToManyConnection! - """Reads and enables pagination through a set of `ProjectType`.""" - projectTypesByCreatedBy( + """Reads and enables pagination through a set of `ProjectStatus`.""" + projectStatusesByProjectCreatedByAndProjectStatusId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -16816,12 +15934,12 @@ type CifUser implements Node { """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectTypeCondition + condition: ProjectStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectTypeFilter + filter: ProjectStatusFilter """Only read the first `n` values of the set.""" first: Int @@ -16829,7 +15947,7 @@ type CifUser implements Node { """ Indicates whether archived items should be included in the results or not. """ - includeArchived: IncludeArchivedOption = INHERIT + includeArchived: IncludeArchivedOption = NO """Only read the last `n` values of the set.""" last: Int @@ -16840,12 +15958,12 @@ type CifUser implements Node { """ offset: Int - """The method to use when ordering `ProjectType`.""" - orderBy: [ProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectTypesConnection! + """The method to use when ordering `ProjectStatus`.""" + orderBy: [ProjectStatusesOrderBy!] = [PRIMARY_KEY_ASC] + ): CifUserProjectStatusesByProjectCreatedByAndProjectStatusIdManyToManyConnection! - """Reads and enables pagination through a set of `ProjectType`.""" - projectTypesByProjectArchivedByAndProjectType( + """Reads and enables pagination through a set of `ProjectStatus`.""" + projectStatusesByProjectUpdatedByAndProjectStatusId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -16855,12 +15973,12 @@ type CifUser implements Node { """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectTypeCondition + condition: ProjectStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectTypeFilter + filter: ProjectStatusFilter """Only read the first `n` values of the set.""" first: Int @@ -16879,12 +15997,12 @@ type CifUser implements Node { """ offset: Int - """The method to use when ordering `ProjectType`.""" - orderBy: [ProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectTypesByProjectArchivedByAndProjectTypeManyToManyConnection! + """The method to use when ordering `ProjectStatus`.""" + orderBy: [ProjectStatusesOrderBy!] = [PRIMARY_KEY_ASC] + ): CifUserProjectStatusesByProjectUpdatedByAndProjectStatusIdManyToManyConnection! - """Reads and enables pagination through a set of `ProjectType`.""" - projectTypesByProjectCreatedByAndProjectType( + """Reads and enables pagination through a set of `ProjectStatus`.""" + projectStatusesByUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -16894,12 +16012,12 @@ type CifUser implements Node { """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectTypeCondition + condition: ProjectStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectTypeFilter + filter: ProjectStatusFilter """Only read the first `n` values of the set.""" first: Int @@ -16907,7 +16025,7 @@ type CifUser implements Node { """ Indicates whether archived items should be included in the results or not. """ - includeArchived: IncludeArchivedOption = NO + includeArchived: IncludeArchivedOption = INHERIT """Only read the last `n` values of the set.""" last: Int @@ -16918,12 +16036,12 @@ type CifUser implements Node { """ offset: Int - """The method to use when ordering `ProjectType`.""" - orderBy: [ProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectTypesByProjectCreatedByAndProjectTypeManyToManyConnection! + """The method to use when ordering `ProjectStatus`.""" + orderBy: [ProjectStatusesOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectStatusesConnection! """Reads and enables pagination through a set of `ProjectType`.""" - projectTypesByProjectUpdatedByAndProjectType( + projectTypesByArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -16946,7 +16064,7 @@ type CifUser implements Node { """ Indicates whether archived items should be included in the results or not. """ - includeArchived: IncludeArchivedOption = NO + includeArchived: IncludeArchivedOption = INHERIT """Only read the last `n` values of the set.""" last: Int @@ -16959,10 +16077,10 @@ type CifUser implements Node { """The method to use when ordering `ProjectType`.""" orderBy: [ProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectTypesByProjectUpdatedByAndProjectTypeManyToManyConnection! + ): ProjectTypesConnection! """Reads and enables pagination through a set of `ProjectType`.""" - projectTypesByUpdatedBy( + projectTypesByCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -17000,8 +16118,8 @@ type CifUser implements Node { orderBy: [ProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] ): ProjectTypesConnection! - """Reads and enables pagination through a set of `Project`.""" - projectsByAdditionalFundingSourceArchivedByAndProjectId( + """Reads and enables pagination through a set of `ProjectType`.""" + projectTypesByProjectArchivedByAndProjectType( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -17011,12 +16129,12 @@ type CifUser implements Node { """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectCondition + condition: ProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectFilter + filter: ProjectTypeFilter """Only read the first `n` values of the set.""" first: Int @@ -17035,12 +16153,12 @@ type CifUser implements Node { """ offset: Int - """The method to use when ordering `Project`.""" - orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectsByAdditionalFundingSourceArchivedByAndProjectIdManyToManyConnection! + """The method to use when ordering `ProjectType`.""" + orderBy: [ProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + ): CifUserProjectTypesByProjectArchivedByAndProjectTypeManyToManyConnection! - """Reads and enables pagination through a set of `Project`.""" - projectsByAdditionalFundingSourceCreatedByAndProjectId( + """Reads and enables pagination through a set of `ProjectType`.""" + projectTypesByProjectCreatedByAndProjectType( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -17050,12 +16168,12 @@ type CifUser implements Node { """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectCondition + condition: ProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectFilter + filter: ProjectTypeFilter """Only read the first `n` values of the set.""" first: Int @@ -17074,12 +16192,12 @@ type CifUser implements Node { """ offset: Int - """The method to use when ordering `Project`.""" - orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectsByAdditionalFundingSourceCreatedByAndProjectIdManyToManyConnection! + """The method to use when ordering `ProjectType`.""" + orderBy: [ProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + ): CifUserProjectTypesByProjectCreatedByAndProjectTypeManyToManyConnection! - """Reads and enables pagination through a set of `Project`.""" - projectsByAdditionalFundingSourceUpdatedByAndProjectId( + """Reads and enables pagination through a set of `ProjectType`.""" + projectTypesByProjectUpdatedByAndProjectType( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -17089,12 +16207,12 @@ type CifUser implements Node { """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectCondition + condition: ProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectFilter + filter: ProjectTypeFilter """Only read the first `n` values of the set.""" first: Int @@ -17113,51 +16231,12 @@ type CifUser implements Node { """ offset: Int - """The method to use when ordering `Project`.""" - orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectsByAdditionalFundingSourceUpdatedByAndProjectIdManyToManyConnection! - - """Reads and enables pagination through a set of `Project`.""" - projectsByArchivedBy( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ProjectCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ProjectFilter - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = INHERIT - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `Project`.""" - orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectsConnection! + """The method to use when ordering `ProjectType`.""" + orderBy: [ProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + ): CifUserProjectTypesByProjectUpdatedByAndProjectTypeManyToManyConnection! - """Reads and enables pagination through a set of `Project`.""" - projectsByCreatedBy( + """Reads and enables pagination through a set of `ProjectType`.""" + projectTypesByUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -17167,12 +16246,12 @@ type CifUser implements Node { """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectCondition + condition: ProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectFilter + filter: ProjectTypeFilter """Only read the first `n` values of the set.""" first: Int @@ -17191,51 +16270,12 @@ type CifUser implements Node { """ offset: Int - """The method to use when ordering `Project`.""" - orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectsConnection! - - """Reads and enables pagination through a set of `Project`.""" - projectsByFundingParameterArchivedByAndProjectId( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ProjectCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ProjectFilter - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = NO - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `Project`.""" - orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectsByFundingParameterArchivedByAndProjectIdManyToManyConnection! + """The method to use when ordering `ProjectType`.""" + orderBy: [ProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectTypesConnection! """Reads and enables pagination through a set of `Project`.""" - projectsByFundingParameterCreatedByAndProjectId( + projectsByAdditionalFundingSourceArchivedByAndProjectId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -17271,10 +16311,10 @@ type CifUser implements Node { """The method to use when ordering `Project`.""" orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectsByFundingParameterCreatedByAndProjectIdManyToManyConnection! + ): CifUserProjectsByAdditionalFundingSourceArchivedByAndProjectIdManyToManyConnection! """Reads and enables pagination through a set of `Project`.""" - projectsByFundingParameterUpdatedByAndProjectId( + projectsByAdditionalFundingSourceCreatedByAndProjectId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -17310,10 +16350,10 @@ type CifUser implements Node { """The method to use when ordering `Project`.""" orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectsByFundingParameterUpdatedByAndProjectIdManyToManyConnection! + ): CifUserProjectsByAdditionalFundingSourceCreatedByAndProjectIdManyToManyConnection! """Reads and enables pagination through a set of `Project`.""" - projectsByProjectAttachmentArchivedByAndProjectId( + projectsByAdditionalFundingSourceUpdatedByAndProjectId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -17349,10 +16389,10 @@ type CifUser implements Node { """The method to use when ordering `Project`.""" orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectsByProjectAttachmentArchivedByAndProjectIdManyToManyConnection! + ): CifUserProjectsByAdditionalFundingSourceUpdatedByAndProjectIdManyToManyConnection! """Reads and enables pagination through a set of `Project`.""" - projectsByProjectAttachmentCreatedByAndProjectId( + projectsByArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -17375,7 +16415,7 @@ type CifUser implements Node { """ Indicates whether archived items should be included in the results or not. """ - includeArchived: IncludeArchivedOption = NO + includeArchived: IncludeArchivedOption = INHERIT """Only read the last `n` values of the set.""" last: Int @@ -17388,10 +16428,10 @@ type CifUser implements Node { """The method to use when ordering `Project`.""" orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectsByProjectAttachmentCreatedByAndProjectIdManyToManyConnection! + ): ProjectsConnection! """Reads and enables pagination through a set of `Project`.""" - projectsByProjectAttachmentUpdatedByAndProjectId( + projectsByAttachmentArchivedByAndProjectId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -17427,10 +16467,10 @@ type CifUser implements Node { """The method to use when ordering `Project`.""" orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectsByProjectAttachmentUpdatedByAndProjectIdManyToManyConnection! + ): CifUserProjectsByAttachmentArchivedByAndProjectIdManyToManyConnection! """Reads and enables pagination through a set of `Project`.""" - projectsByProjectContactArchivedByAndProjectId( + projectsByAttachmentCreatedByAndProjectId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -17466,10 +16506,10 @@ type CifUser implements Node { """The method to use when ordering `Project`.""" orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectsByProjectContactArchivedByAndProjectIdManyToManyConnection! + ): CifUserProjectsByAttachmentCreatedByAndProjectIdManyToManyConnection! """Reads and enables pagination through a set of `Project`.""" - projectsByProjectContactCreatedByAndProjectId( + projectsByAttachmentUpdatedByAndProjectId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -17505,10 +16545,10 @@ type CifUser implements Node { """The method to use when ordering `Project`.""" orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectsByProjectContactCreatedByAndProjectIdManyToManyConnection! + ): CifUserProjectsByAttachmentUpdatedByAndProjectIdManyToManyConnection! """Reads and enables pagination through a set of `Project`.""" - projectsByProjectContactUpdatedByAndProjectId( + projectsByCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -17531,7 +16571,7 @@ type CifUser implements Node { """ Indicates whether archived items should be included in the results or not. """ - includeArchived: IncludeArchivedOption = NO + includeArchived: IncludeArchivedOption = INHERIT """Only read the last `n` values of the set.""" last: Int @@ -17544,10 +16584,10 @@ type CifUser implements Node { """The method to use when ordering `Project`.""" orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectsByProjectContactUpdatedByAndProjectIdManyToManyConnection! + ): ProjectsConnection! """Reads and enables pagination through a set of `Project`.""" - projectsByProjectManagerArchivedByAndProjectId( + projectsByFundingParameterArchivedByAndProjectId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -17583,10 +16623,10 @@ type CifUser implements Node { """The method to use when ordering `Project`.""" orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectsByProjectManagerArchivedByAndProjectIdManyToManyConnection! + ): CifUserProjectsByFundingParameterArchivedByAndProjectIdManyToManyConnection! """Reads and enables pagination through a set of `Project`.""" - projectsByProjectManagerCifUserIdAndProjectId( + projectsByFundingParameterCreatedByAndProjectId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -17622,10 +16662,10 @@ type CifUser implements Node { """The method to use when ordering `Project`.""" orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectsByProjectManagerCifUserIdAndProjectIdManyToManyConnection! + ): CifUserProjectsByFundingParameterCreatedByAndProjectIdManyToManyConnection! """Reads and enables pagination through a set of `Project`.""" - projectsByProjectManagerCreatedByAndProjectId( + projectsByFundingParameterUpdatedByAndProjectId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -17661,10 +16701,10 @@ type CifUser implements Node { """The method to use when ordering `Project`.""" orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectsByProjectManagerCreatedByAndProjectIdManyToManyConnection! + ): CifUserProjectsByFundingParameterUpdatedByAndProjectIdManyToManyConnection! """Reads and enables pagination through a set of `Project`.""" - projectsByProjectManagerUpdatedByAndProjectId( + projectsByProjectContactArchivedByAndProjectId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -17700,10 +16740,10 @@ type CifUser implements Node { """The method to use when ordering `Project`.""" orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectsByProjectManagerUpdatedByAndProjectIdManyToManyConnection! + ): CifUserProjectsByProjectContactArchivedByAndProjectIdManyToManyConnection! """Reads and enables pagination through a set of `Project`.""" - projectsByProjectRevisionCreatedByAndProjectId( + projectsByProjectContactCreatedByAndProjectId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -17739,10 +16779,10 @@ type CifUser implements Node { """The method to use when ordering `Project`.""" orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectsByProjectRevisionCreatedByAndProjectIdManyToManyConnection! + ): CifUserProjectsByProjectContactCreatedByAndProjectIdManyToManyConnection! """Reads and enables pagination through a set of `Project`.""" - projectsByProjectRevisionUpdatedByAndProjectId( + projectsByProjectContactUpdatedByAndProjectId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -17778,10 +16818,10 @@ type CifUser implements Node { """The method to use when ordering `Project`.""" orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectsByProjectRevisionUpdatedByAndProjectIdManyToManyConnection! + ): CifUserProjectsByProjectContactUpdatedByAndProjectIdManyToManyConnection! """Reads and enables pagination through a set of `Project`.""" - projectsByReportingRequirementArchivedByAndProjectId( + projectsByProjectManagerArchivedByAndProjectId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -17817,10 +16857,10 @@ type CifUser implements Node { """The method to use when ordering `Project`.""" orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectsByReportingRequirementArchivedByAndProjectIdManyToManyConnection! + ): CifUserProjectsByProjectManagerArchivedByAndProjectIdManyToManyConnection! """Reads and enables pagination through a set of `Project`.""" - projectsByReportingRequirementCreatedByAndProjectId( + projectsByProjectManagerCifUserIdAndProjectId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -17856,10 +16896,10 @@ type CifUser implements Node { """The method to use when ordering `Project`.""" orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectsByReportingRequirementCreatedByAndProjectIdManyToManyConnection! + ): CifUserProjectsByProjectManagerCifUserIdAndProjectIdManyToManyConnection! """Reads and enables pagination through a set of `Project`.""" - projectsByReportingRequirementUpdatedByAndProjectId( + projectsByProjectManagerCreatedByAndProjectId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -17895,10 +16935,10 @@ type CifUser implements Node { """The method to use when ordering `Project`.""" orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectsByReportingRequirementUpdatedByAndProjectIdManyToManyConnection! + ): CifUserProjectsByProjectManagerCreatedByAndProjectIdManyToManyConnection! """Reads and enables pagination through a set of `Project`.""" - projectsByUpdatedBy( + projectsByProjectManagerUpdatedByAndProjectId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -17921,7 +16961,7 @@ type CifUser implements Node { """ Indicates whether archived items should be included in the results or not. """ - includeArchived: IncludeArchivedOption = INHERIT + includeArchived: IncludeArchivedOption = NO """Only read the last `n` values of the set.""" last: Int @@ -17934,10 +16974,10 @@ type CifUser implements Node { """The method to use when ordering `Project`.""" orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectsConnection! + ): CifUserProjectsByProjectManagerUpdatedByAndProjectIdManyToManyConnection! - """Reads and enables pagination through a set of `ReportType`.""" - reportTypesByArchivedBy( + """Reads and enables pagination through a set of `Project`.""" + projectsByProjectRevisionCreatedByAndProjectId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -17947,12 +16987,12 @@ type CifUser implements Node { """ A condition to be used in determining which values should be returned by the collection. """ - condition: ReportTypeCondition + condition: ProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ReportTypeFilter + filter: ProjectFilter """Only read the first `n` values of the set.""" first: Int @@ -17960,7 +17000,7 @@ type CifUser implements Node { """ Indicates whether archived items should be included in the results or not. """ - includeArchived: IncludeArchivedOption = INHERIT + includeArchived: IncludeArchivedOption = NO """Only read the last `n` values of the set.""" last: Int @@ -17971,12 +17011,12 @@ type CifUser implements Node { """ offset: Int - """The method to use when ordering `ReportType`.""" - orderBy: [ReportTypesOrderBy!] = [PRIMARY_KEY_ASC] - ): ReportTypesConnection! + """The method to use when ordering `Project`.""" + orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] + ): CifUserProjectsByProjectRevisionCreatedByAndProjectIdManyToManyConnection! - """Reads and enables pagination through a set of `ReportType`.""" - reportTypesByCreatedBy( + """Reads and enables pagination through a set of `Project`.""" + projectsByProjectRevisionUpdatedByAndProjectId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -17986,12 +17026,12 @@ type CifUser implements Node { """ A condition to be used in determining which values should be returned by the collection. """ - condition: ReportTypeCondition + condition: ProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ReportTypeFilter + filter: ProjectFilter """Only read the first `n` values of the set.""" first: Int @@ -17999,7 +17039,7 @@ type CifUser implements Node { """ Indicates whether archived items should be included in the results or not. """ - includeArchived: IncludeArchivedOption = INHERIT + includeArchived: IncludeArchivedOption = NO """Only read the last `n` values of the set.""" last: Int @@ -18010,12 +17050,12 @@ type CifUser implements Node { """ offset: Int - """The method to use when ordering `ReportType`.""" - orderBy: [ReportTypesOrderBy!] = [PRIMARY_KEY_ASC] - ): ReportTypesConnection! + """The method to use when ordering `Project`.""" + orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] + ): CifUserProjectsByProjectRevisionUpdatedByAndProjectIdManyToManyConnection! - """Reads and enables pagination through a set of `ReportType`.""" - reportTypesByReportingRequirementArchivedByAndReportType( + """Reads and enables pagination through a set of `Project`.""" + projectsByReportingRequirementArchivedByAndProjectId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -18025,12 +17065,12 @@ type CifUser implements Node { """ A condition to be used in determining which values should be returned by the collection. """ - condition: ReportTypeCondition + condition: ProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ReportTypeFilter + filter: ProjectFilter """Only read the first `n` values of the set.""" first: Int @@ -18049,12 +17089,12 @@ type CifUser implements Node { """ offset: Int - """The method to use when ordering `ReportType`.""" - orderBy: [ReportTypesOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserReportTypesByReportingRequirementArchivedByAndReportTypeManyToManyConnection! + """The method to use when ordering `Project`.""" + orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] + ): CifUserProjectsByReportingRequirementArchivedByAndProjectIdManyToManyConnection! - """Reads and enables pagination through a set of `ReportType`.""" - reportTypesByReportingRequirementCreatedByAndReportType( + """Reads and enables pagination through a set of `Project`.""" + projectsByReportingRequirementCreatedByAndProjectId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -18064,12 +17104,12 @@ type CifUser implements Node { """ A condition to be used in determining which values should be returned by the collection. """ - condition: ReportTypeCondition + condition: ProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ReportTypeFilter + filter: ProjectFilter """Only read the first `n` values of the set.""" first: Int @@ -18088,12 +17128,90 @@ type CifUser implements Node { """ offset: Int - """The method to use when ordering `ReportType`.""" - orderBy: [ReportTypesOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserReportTypesByReportingRequirementCreatedByAndReportTypeManyToManyConnection! + """The method to use when ordering `Project`.""" + orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] + ): CifUserProjectsByReportingRequirementCreatedByAndProjectIdManyToManyConnection! + + """Reads and enables pagination through a set of `Project`.""" + projectsByReportingRequirementUpdatedByAndProjectId( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ProjectCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ProjectFilter + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = NO + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `Project`.""" + orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] + ): CifUserProjectsByReportingRequirementUpdatedByAndProjectIdManyToManyConnection! + + """Reads and enables pagination through a set of `Project`.""" + projectsByUpdatedBy( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ProjectCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ProjectFilter + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = INHERIT + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `Project`.""" + orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectsConnection! """Reads and enables pagination through a set of `ReportType`.""" - reportTypesByReportingRequirementUpdatedByAndReportType( + reportTypesByArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -18116,7 +17234,7 @@ type CifUser implements Node { """ Indicates whether archived items should be included in the results or not. """ - includeArchived: IncludeArchivedOption = NO + includeArchived: IncludeArchivedOption = INHERIT """Only read the last `n` values of the set.""" last: Int @@ -18129,10 +17247,10 @@ type CifUser implements Node { """The method to use when ordering `ReportType`.""" orderBy: [ReportTypesOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserReportTypesByReportingRequirementUpdatedByAndReportTypeManyToManyConnection! + ): ReportTypesConnection! """Reads and enables pagination through a set of `ReportType`.""" - reportTypesByUpdatedBy( + reportTypesByCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -18170,8 +17288,8 @@ type CifUser implements Node { orderBy: [ReportTypesOrderBy!] = [PRIMARY_KEY_ASC] ): ReportTypesConnection! - """Reads and enables pagination through a set of `ReportingRequirement`.""" - reportingRequirementsByArchivedBy( + """Reads and enables pagination through a set of `ReportType`.""" + reportTypesByReportingRequirementArchivedByAndReportType( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -18181,12 +17299,12 @@ type CifUser implements Node { """ A condition to be used in determining which values should be returned by the collection. """ - condition: ReportingRequirementCondition + condition: ReportTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ReportingRequirementFilter + filter: ReportTypeFilter """Only read the first `n` values of the set.""" first: Int @@ -18194,7 +17312,7 @@ type CifUser implements Node { """ Indicates whether archived items should be included in the results or not. """ - includeArchived: IncludeArchivedOption = INHERIT + includeArchived: IncludeArchivedOption = NO """Only read the last `n` values of the set.""" last: Int @@ -18205,12 +17323,12 @@ type CifUser implements Node { """ offset: Int - """The method to use when ordering `ReportingRequirement`.""" - orderBy: [ReportingRequirementsOrderBy!] = [PRIMARY_KEY_ASC] - ): ReportingRequirementsConnection! + """The method to use when ordering `ReportType`.""" + orderBy: [ReportTypesOrderBy!] = [PRIMARY_KEY_ASC] + ): CifUserReportTypesByReportingRequirementArchivedByAndReportTypeManyToManyConnection! - """Reads and enables pagination through a set of `ReportingRequirement`.""" - reportingRequirementsByCreatedBy( + """Reads and enables pagination through a set of `ReportType`.""" + reportTypesByReportingRequirementCreatedByAndReportType( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -18220,12 +17338,12 @@ type CifUser implements Node { """ A condition to be used in determining which values should be returned by the collection. """ - condition: ReportingRequirementCondition + condition: ReportTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ReportingRequirementFilter + filter: ReportTypeFilter """Only read the first `n` values of the set.""" first: Int @@ -18233,7 +17351,7 @@ type CifUser implements Node { """ Indicates whether archived items should be included in the results or not. """ - includeArchived: IncludeArchivedOption = INHERIT + includeArchived: IncludeArchivedOption = NO """Only read the last `n` values of the set.""" last: Int @@ -18244,12 +17362,12 @@ type CifUser implements Node { """ offset: Int - """The method to use when ordering `ReportingRequirement`.""" - orderBy: [ReportingRequirementsOrderBy!] = [PRIMARY_KEY_ASC] - ): ReportingRequirementsConnection! + """The method to use when ordering `ReportType`.""" + orderBy: [ReportTypesOrderBy!] = [PRIMARY_KEY_ASC] + ): CifUserReportTypesByReportingRequirementCreatedByAndReportTypeManyToManyConnection! - """Reads and enables pagination through a set of `ReportingRequirement`.""" - reportingRequirementsByEmissionIntensityReportArchivedByAndReportingRequirementId( + """Reads and enables pagination through a set of `ReportType`.""" + reportTypesByReportingRequirementUpdatedByAndReportType( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -18259,12 +17377,12 @@ type CifUser implements Node { """ A condition to be used in determining which values should be returned by the collection. """ - condition: ReportingRequirementCondition + condition: ReportTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ReportingRequirementFilter + filter: ReportTypeFilter """Only read the first `n` values of the set.""" first: Int @@ -18283,12 +17401,12 @@ type CifUser implements Node { """ offset: Int - """The method to use when ordering `ReportingRequirement`.""" - orderBy: [ReportingRequirementsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserReportingRequirementsByEmissionIntensityReportArchivedByAndReportingRequirementIdManyToManyConnection! + """The method to use when ordering `ReportType`.""" + orderBy: [ReportTypesOrderBy!] = [PRIMARY_KEY_ASC] + ): CifUserReportTypesByReportingRequirementUpdatedByAndReportTypeManyToManyConnection! - """Reads and enables pagination through a set of `ReportingRequirement`.""" - reportingRequirementsByEmissionIntensityReportCreatedByAndReportingRequirementId( + """Reads and enables pagination through a set of `ReportType`.""" + reportTypesByUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -18298,12 +17416,12 @@ type CifUser implements Node { """ A condition to be used in determining which values should be returned by the collection. """ - condition: ReportingRequirementCondition + condition: ReportTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ReportingRequirementFilter + filter: ReportTypeFilter """Only read the first `n` values of the set.""" first: Int @@ -18311,7 +17429,7 @@ type CifUser implements Node { """ Indicates whether archived items should be included in the results or not. """ - includeArchived: IncludeArchivedOption = NO + includeArchived: IncludeArchivedOption = INHERIT """Only read the last `n` values of the set.""" last: Int @@ -18322,12 +17440,12 @@ type CifUser implements Node { """ offset: Int - """The method to use when ordering `ReportingRequirement`.""" - orderBy: [ReportingRequirementsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserReportingRequirementsByEmissionIntensityReportCreatedByAndReportingRequirementIdManyToManyConnection! + """The method to use when ordering `ReportType`.""" + orderBy: [ReportTypesOrderBy!] = [PRIMARY_KEY_ASC] + ): ReportTypesConnection! """Reads and enables pagination through a set of `ReportingRequirement`.""" - reportingRequirementsByEmissionIntensityReportUpdatedByAndReportingRequirementId( + reportingRequirementsByArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -18350,7 +17468,7 @@ type CifUser implements Node { """ Indicates whether archived items should be included in the results or not. """ - includeArchived: IncludeArchivedOption = NO + includeArchived: IncludeArchivedOption = INHERIT """Only read the last `n` values of the set.""" last: Int @@ -18363,10 +17481,10 @@ type CifUser implements Node { """The method to use when ordering `ReportingRequirement`.""" orderBy: [ReportingRequirementsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserReportingRequirementsByEmissionIntensityReportUpdatedByAndReportingRequirementIdManyToManyConnection! + ): ReportingRequirementsConnection! """Reads and enables pagination through a set of `ReportingRequirement`.""" - reportingRequirementsByMilestoneReportArchivedByAndReportingRequirementId( + reportingRequirementsByCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -18389,7 +17507,7 @@ type CifUser implements Node { """ Indicates whether archived items should be included in the results or not. """ - includeArchived: IncludeArchivedOption = NO + includeArchived: IncludeArchivedOption = INHERIT """Only read the last `n` values of the set.""" last: Int @@ -18402,10 +17520,10 @@ type CifUser implements Node { """The method to use when ordering `ReportingRequirement`.""" orderBy: [ReportingRequirementsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserReportingRequirementsByMilestoneReportArchivedByAndReportingRequirementIdManyToManyConnection! + ): ReportingRequirementsConnection! """Reads and enables pagination through a set of `ReportingRequirement`.""" - reportingRequirementsByMilestoneReportCreatedByAndReportingRequirementId( + reportingRequirementsByEmissionIntensityReportArchivedByAndReportingRequirementId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -18441,10 +17559,166 @@ type CifUser implements Node { """The method to use when ordering `ReportingRequirement`.""" orderBy: [ReportingRequirementsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserReportingRequirementsByMilestoneReportCreatedByAndReportingRequirementIdManyToManyConnection! + ): CifUserReportingRequirementsByEmissionIntensityReportArchivedByAndReportingRequirementIdManyToManyConnection! """Reads and enables pagination through a set of `ReportingRequirement`.""" - reportingRequirementsByMilestoneReportUpdatedByAndReportingRequirementId( + reportingRequirementsByEmissionIntensityReportCreatedByAndReportingRequirementId( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ReportingRequirementCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ReportingRequirementFilter + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = NO + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `ReportingRequirement`.""" + orderBy: [ReportingRequirementsOrderBy!] = [PRIMARY_KEY_ASC] + ): CifUserReportingRequirementsByEmissionIntensityReportCreatedByAndReportingRequirementIdManyToManyConnection! + + """Reads and enables pagination through a set of `ReportingRequirement`.""" + reportingRequirementsByEmissionIntensityReportUpdatedByAndReportingRequirementId( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ReportingRequirementCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ReportingRequirementFilter + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = NO + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `ReportingRequirement`.""" + orderBy: [ReportingRequirementsOrderBy!] = [PRIMARY_KEY_ASC] + ): CifUserReportingRequirementsByEmissionIntensityReportUpdatedByAndReportingRequirementIdManyToManyConnection! + + """Reads and enables pagination through a set of `ReportingRequirement`.""" + reportingRequirementsByMilestoneReportArchivedByAndReportingRequirementId( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ReportingRequirementCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ReportingRequirementFilter + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = NO + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `ReportingRequirement`.""" + orderBy: [ReportingRequirementsOrderBy!] = [PRIMARY_KEY_ASC] + ): CifUserReportingRequirementsByMilestoneReportArchivedByAndReportingRequirementIdManyToManyConnection! + + """Reads and enables pagination through a set of `ReportingRequirement`.""" + reportingRequirementsByMilestoneReportCreatedByAndReportingRequirementId( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ReportingRequirementCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ReportingRequirementFilter + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = NO + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `ReportingRequirement`.""" + orderBy: [ReportingRequirementsOrderBy!] = [PRIMARY_KEY_ASC] + ): CifUserReportingRequirementsByMilestoneReportCreatedByAndReportingRequirementIdManyToManyConnection! + + """Reads and enables pagination through a set of `ReportingRequirement`.""" + reportingRequirementsByMilestoneReportUpdatedByAndReportingRequirementId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -19710,105 +18984,31 @@ type CifUserAmendmentTypesByProjectRevisionAmendmentTypeUpdatedByAndAmendmentTyp } """ -A connection to a list of `Attachment` values, with data from `ProjectAttachment`. -""" -type CifUserAttachmentsByProjectAttachmentArchivedByAndAttachmentIdManyToManyConnection { - """ - A list of edges which contains the `Attachment`, info from the `ProjectAttachment`, and the cursor to aid in pagination. - """ - edges: [CifUserAttachmentsByProjectAttachmentArchivedByAndAttachmentIdManyToManyEdge!]! - - """A list of `Attachment` objects.""" - nodes: [Attachment]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `Attachment` you could get from the connection.""" - totalCount: Int! -} - -""" -A `Attachment` edge in the connection, with data from `ProjectAttachment`. -""" -type CifUserAttachmentsByProjectAttachmentArchivedByAndAttachmentIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `Attachment` at the end of the edge.""" - node: Attachment - - """Reads and enables pagination through a set of `ProjectAttachment`.""" - projectAttachmentsByAttachmentId( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ProjectAttachmentCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ProjectAttachmentFilter - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = NO - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `ProjectAttachment`.""" - orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectAttachmentsConnection! -} - -""" -A connection to a list of `Attachment` values, with data from `ProjectAttachment`. +A connection to a list of `ChangeStatus` values, with data from `FormChange`. """ -type CifUserAttachmentsByProjectAttachmentCreatedByAndAttachmentIdManyToManyConnection { +type CifUserChangeStatusesByFormChangeCreatedByAndChangeStatusManyToManyConnection { """ - A list of edges which contains the `Attachment`, info from the `ProjectAttachment`, and the cursor to aid in pagination. + A list of edges which contains the `ChangeStatus`, info from the `FormChange`, and the cursor to aid in pagination. """ - edges: [CifUserAttachmentsByProjectAttachmentCreatedByAndAttachmentIdManyToManyEdge!]! + edges: [CifUserChangeStatusesByFormChangeCreatedByAndChangeStatusManyToManyEdge!]! - """A list of `Attachment` objects.""" - nodes: [Attachment]! + """A list of `ChangeStatus` objects.""" + nodes: [ChangeStatus]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Attachment` you could get from the connection.""" + """The count of *all* `ChangeStatus` you could get from the connection.""" totalCount: Int! } -""" -A `Attachment` edge in the connection, with data from `ProjectAttachment`. -""" -type CifUserAttachmentsByProjectAttachmentCreatedByAndAttachmentIdManyToManyEdge { +"""A `ChangeStatus` edge in the connection, with data from `FormChange`.""" +type CifUserChangeStatusesByFormChangeCreatedByAndChangeStatusManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Attachment` at the end of the edge.""" - node: Attachment - - """Reads and enables pagination through a set of `ProjectAttachment`.""" - projectAttachmentsByAttachmentId( + """Reads and enables pagination through a set of `FormChange`.""" + formChangesByChangeStatus( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -19818,21 +19018,16 @@ type CifUserAttachmentsByProjectAttachmentCreatedByAndAttachmentIdManyToManyEdge """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectAttachmentCondition + condition: FormChangeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectAttachmentFilter + filter: FormChangeFilter """Only read the first `n` values of the set.""" first: Int - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = NO - """Only read the last `n` values of the set.""" last: Int @@ -19842,88 +19037,22 @@ type CifUserAttachmentsByProjectAttachmentCreatedByAndAttachmentIdManyToManyEdge """ offset: Int - """The method to use when ordering `ProjectAttachment`.""" - orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectAttachmentsConnection! -} - -""" -A connection to a list of `Attachment` values, with data from `ProjectAttachment`. -""" -type CifUserAttachmentsByProjectAttachmentUpdatedByAndAttachmentIdManyToManyConnection { - """ - A list of edges which contains the `Attachment`, info from the `ProjectAttachment`, and the cursor to aid in pagination. - """ - edges: [CifUserAttachmentsByProjectAttachmentUpdatedByAndAttachmentIdManyToManyEdge!]! - - """A list of `Attachment` objects.""" - nodes: [Attachment]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `Attachment` you could get from the connection.""" - totalCount: Int! -} - -""" -A `Attachment` edge in the connection, with data from `ProjectAttachment`. -""" -type CifUserAttachmentsByProjectAttachmentUpdatedByAndAttachmentIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `Attachment` at the end of the edge.""" - node: Attachment - - """Reads and enables pagination through a set of `ProjectAttachment`.""" - projectAttachmentsByAttachmentId( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ProjectAttachmentCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ProjectAttachmentFilter - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = NO - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """The method to use when ordering `FormChange`.""" + orderBy: [FormChangesOrderBy!] = [PRIMARY_KEY_ASC] + ): FormChangesConnection! - """The method to use when ordering `ProjectAttachment`.""" - orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectAttachmentsConnection! + """The `ChangeStatus` at the end of the edge.""" + node: ChangeStatus } """ A connection to a list of `ChangeStatus` values, with data from `FormChange`. """ -type CifUserChangeStatusesByFormChangeCreatedByAndChangeStatusManyToManyConnection { +type CifUserChangeStatusesByFormChangeUpdatedByAndChangeStatusManyToManyConnection { """ A list of edges which contains the `ChangeStatus`, info from the `FormChange`, and the cursor to aid in pagination. """ - edges: [CifUserChangeStatusesByFormChangeCreatedByAndChangeStatusManyToManyEdge!]! + edges: [CifUserChangeStatusesByFormChangeUpdatedByAndChangeStatusManyToManyEdge!]! """A list of `ChangeStatus` objects.""" nodes: [ChangeStatus]! @@ -19936,69 +19065,7 @@ type CifUserChangeStatusesByFormChangeCreatedByAndChangeStatusManyToManyConnecti } """A `ChangeStatus` edge in the connection, with data from `FormChange`.""" -type CifUserChangeStatusesByFormChangeCreatedByAndChangeStatusManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """Reads and enables pagination through a set of `FormChange`.""" - formChangesByChangeStatus( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: FormChangeCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormChangeFilter - - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `FormChange`.""" - orderBy: [FormChangesOrderBy!] = [PRIMARY_KEY_ASC] - ): FormChangesConnection! - - """The `ChangeStatus` at the end of the edge.""" - node: ChangeStatus -} - -""" -A connection to a list of `ChangeStatus` values, with data from `FormChange`. -""" -type CifUserChangeStatusesByFormChangeUpdatedByAndChangeStatusManyToManyConnection { - """ - A list of edges which contains the `ChangeStatus`, info from the `FormChange`, and the cursor to aid in pagination. - """ - edges: [CifUserChangeStatusesByFormChangeUpdatedByAndChangeStatusManyToManyEdge!]! - - """A list of `ChangeStatus` objects.""" - nodes: [ChangeStatus]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `ChangeStatus` you could get from the connection.""" - totalCount: Int! -} - -"""A `ChangeStatus` edge in the connection, with data from `FormChange`.""" -type CifUserChangeStatusesByFormChangeUpdatedByAndChangeStatusManyToManyEdge { +type CifUserChangeStatusesByFormChangeUpdatedByAndChangeStatusManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -27317,220 +26384,13 @@ type CifUserCifUsersByProjectArchivedByAndUpdatedByManyToManyEdge { } """ -A connection to a list of `CifUser` values, with data from `ProjectAttachment`. -""" -type CifUserCifUsersByProjectAttachmentArchivedByAndCreatedByManyToManyConnection { - """ - A list of edges which contains the `CifUser`, info from the `ProjectAttachment`, and the cursor to aid in pagination. - """ - edges: [CifUserCifUsersByProjectAttachmentArchivedByAndCreatedByManyToManyEdge!]! - - """A list of `CifUser` objects.""" - nodes: [CifUser]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CifUser` you could get from the connection.""" - totalCount: Int! -} - -""" -A `CifUser` edge in the connection, with data from `ProjectAttachment`. -""" -type CifUserCifUsersByProjectAttachmentArchivedByAndCreatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CifUser` at the end of the edge.""" - node: CifUser - - """Reads and enables pagination through a set of `ProjectAttachment`.""" - projectAttachmentsByCreatedBy( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ProjectAttachmentCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ProjectAttachmentFilter - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = NO - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `ProjectAttachment`.""" - orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectAttachmentsConnection! -} - -""" -A connection to a list of `CifUser` values, with data from `ProjectAttachment`. -""" -type CifUserCifUsersByProjectAttachmentArchivedByAndUpdatedByManyToManyConnection { - """ - A list of edges which contains the `CifUser`, info from the `ProjectAttachment`, and the cursor to aid in pagination. - """ - edges: [CifUserCifUsersByProjectAttachmentArchivedByAndUpdatedByManyToManyEdge!]! - - """A list of `CifUser` objects.""" - nodes: [CifUser]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CifUser` you could get from the connection.""" - totalCount: Int! -} - -""" -A `CifUser` edge in the connection, with data from `ProjectAttachment`. -""" -type CifUserCifUsersByProjectAttachmentArchivedByAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CifUser` at the end of the edge.""" - node: CifUser - - """Reads and enables pagination through a set of `ProjectAttachment`.""" - projectAttachmentsByUpdatedBy( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ProjectAttachmentCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ProjectAttachmentFilter - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = NO - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `ProjectAttachment`.""" - orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectAttachmentsConnection! -} - -""" -A connection to a list of `CifUser` values, with data from `ProjectAttachment`. -""" -type CifUserCifUsersByProjectAttachmentCreatedByAndArchivedByManyToManyConnection { - """ - A list of edges which contains the `CifUser`, info from the `ProjectAttachment`, and the cursor to aid in pagination. - """ - edges: [CifUserCifUsersByProjectAttachmentCreatedByAndArchivedByManyToManyEdge!]! - - """A list of `CifUser` objects.""" - nodes: [CifUser]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CifUser` you could get from the connection.""" - totalCount: Int! -} - -""" -A `CifUser` edge in the connection, with data from `ProjectAttachment`. -""" -type CifUserCifUsersByProjectAttachmentCreatedByAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CifUser` at the end of the edge.""" - node: CifUser - - """Reads and enables pagination through a set of `ProjectAttachment`.""" - projectAttachmentsByArchivedBy( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ProjectAttachmentCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ProjectAttachmentFilter - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = NO - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `ProjectAttachment`.""" - orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectAttachmentsConnection! -} - -""" -A connection to a list of `CifUser` values, with data from `ProjectAttachment`. +A connection to a list of `CifUser` values, with data from `ProjectContact`. """ -type CifUserCifUsersByProjectAttachmentCreatedByAndUpdatedByManyToManyConnection { +type CifUserCifUsersByProjectContactArchivedByAndCreatedByManyToManyConnection { """ - A list of edges which contains the `CifUser`, info from the `ProjectAttachment`, and the cursor to aid in pagination. + A list of edges which contains the `CifUser`, info from the `ProjectContact`, and the cursor to aid in pagination. """ - edges: [CifUserCifUsersByProjectAttachmentCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CifUserCifUsersByProjectContactArchivedByAndCreatedByManyToManyEdge!]! """A list of `CifUser` objects.""" nodes: [CifUser]! @@ -27542,18 +26402,16 @@ type CifUserCifUsersByProjectAttachmentCreatedByAndUpdatedByManyToManyConnection totalCount: Int! } -""" -A `CifUser` edge in the connection, with data from `ProjectAttachment`. -""" -type CifUserCifUsersByProjectAttachmentCreatedByAndUpdatedByManyToManyEdge { +"""A `CifUser` edge in the connection, with data from `ProjectContact`.""" +type CifUserCifUsersByProjectContactArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CifUser` at the end of the edge.""" node: CifUser - """Reads and enables pagination through a set of `ProjectAttachment`.""" - projectAttachmentsByUpdatedBy( + """Reads and enables pagination through a set of `ProjectContact`.""" + projectContactsByCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -27563,12 +26421,12 @@ type CifUserCifUsersByProjectAttachmentCreatedByAndUpdatedByManyToManyEdge { """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectAttachmentCondition + condition: ProjectContactCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectAttachmentFilter + filter: ProjectContactFilter """Only read the first `n` values of the set.""" first: Int @@ -27587,19 +26445,19 @@ type CifUserCifUsersByProjectAttachmentCreatedByAndUpdatedByManyToManyEdge { """ offset: Int - """The method to use when ordering `ProjectAttachment`.""" - orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectAttachmentsConnection! + """The method to use when ordering `ProjectContact`.""" + orderBy: [ProjectContactsOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectContactsConnection! } """ -A connection to a list of `CifUser` values, with data from `ProjectAttachment`. +A connection to a list of `CifUser` values, with data from `ProjectContact`. """ -type CifUserCifUsersByProjectAttachmentUpdatedByAndArchivedByManyToManyConnection { +type CifUserCifUsersByProjectContactArchivedByAndUpdatedByManyToManyConnection { """ - A list of edges which contains the `CifUser`, info from the `ProjectAttachment`, and the cursor to aid in pagination. + A list of edges which contains the `CifUser`, info from the `ProjectContact`, and the cursor to aid in pagination. """ - edges: [CifUserCifUsersByProjectAttachmentUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CifUserCifUsersByProjectContactArchivedByAndUpdatedByManyToManyEdge!]! """A list of `CifUser` objects.""" nodes: [CifUser]! @@ -27611,18 +26469,16 @@ type CifUserCifUsersByProjectAttachmentUpdatedByAndArchivedByManyToManyConnectio totalCount: Int! } -""" -A `CifUser` edge in the connection, with data from `ProjectAttachment`. -""" -type CifUserCifUsersByProjectAttachmentUpdatedByAndArchivedByManyToManyEdge { +"""A `CifUser` edge in the connection, with data from `ProjectContact`.""" +type CifUserCifUsersByProjectContactArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CifUser` at the end of the edge.""" node: CifUser - """Reads and enables pagination through a set of `ProjectAttachment`.""" - projectAttachmentsByArchivedBy( + """Reads and enables pagination through a set of `ProjectContact`.""" + projectContactsByUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -27632,12 +26488,12 @@ type CifUserCifUsersByProjectAttachmentUpdatedByAndArchivedByManyToManyEdge { """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectAttachmentCondition + condition: ProjectContactCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectAttachmentFilter + filter: ProjectContactFilter """Only read the first `n` values of the set.""" first: Int @@ -27656,19 +26512,19 @@ type CifUserCifUsersByProjectAttachmentUpdatedByAndArchivedByManyToManyEdge { """ offset: Int - """The method to use when ordering `ProjectAttachment`.""" - orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectAttachmentsConnection! + """The method to use when ordering `ProjectContact`.""" + orderBy: [ProjectContactsOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectContactsConnection! } """ -A connection to a list of `CifUser` values, with data from `ProjectAttachment`. +A connection to a list of `CifUser` values, with data from `ProjectContact`. """ -type CifUserCifUsersByProjectAttachmentUpdatedByAndCreatedByManyToManyConnection { +type CifUserCifUsersByProjectContactCreatedByAndArchivedByManyToManyConnection { """ - A list of edges which contains the `CifUser`, info from the `ProjectAttachment`, and the cursor to aid in pagination. + A list of edges which contains the `CifUser`, info from the `ProjectContact`, and the cursor to aid in pagination. """ - edges: [CifUserCifUsersByProjectAttachmentUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CifUserCifUsersByProjectContactCreatedByAndArchivedByManyToManyEdge!]! """A list of `CifUser` objects.""" nodes: [CifUser]! @@ -27680,18 +26536,16 @@ type CifUserCifUsersByProjectAttachmentUpdatedByAndCreatedByManyToManyConnection totalCount: Int! } -""" -A `CifUser` edge in the connection, with data from `ProjectAttachment`. -""" -type CifUserCifUsersByProjectAttachmentUpdatedByAndCreatedByManyToManyEdge { +"""A `CifUser` edge in the connection, with data from `ProjectContact`.""" +type CifUserCifUsersByProjectContactCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CifUser` at the end of the edge.""" node: CifUser - """Reads and enables pagination through a set of `ProjectAttachment`.""" - projectAttachmentsByCreatedBy( + """Reads and enables pagination through a set of `ProjectContact`.""" + projectContactsByArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -27701,12 +26555,12 @@ type CifUserCifUsersByProjectAttachmentUpdatedByAndCreatedByManyToManyEdge { """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectAttachmentCondition + condition: ProjectContactCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectAttachmentFilter + filter: ProjectContactFilter """Only read the first `n` values of the set.""" first: Int @@ -27725,19 +26579,19 @@ type CifUserCifUsersByProjectAttachmentUpdatedByAndCreatedByManyToManyEdge { """ offset: Int - """The method to use when ordering `ProjectAttachment`.""" - orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectAttachmentsConnection! + """The method to use when ordering `ProjectContact`.""" + orderBy: [ProjectContactsOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectContactsConnection! } """ A connection to a list of `CifUser` values, with data from `ProjectContact`. """ -type CifUserCifUsersByProjectContactArchivedByAndCreatedByManyToManyConnection { +type CifUserCifUsersByProjectContactCreatedByAndUpdatedByManyToManyConnection { """ A list of edges which contains the `CifUser`, info from the `ProjectContact`, and the cursor to aid in pagination. """ - edges: [CifUserCifUsersByProjectContactArchivedByAndCreatedByManyToManyEdge!]! + edges: [CifUserCifUsersByProjectContactCreatedByAndUpdatedByManyToManyEdge!]! """A list of `CifUser` objects.""" nodes: [CifUser]! @@ -27750,7 +26604,7 @@ type CifUserCifUsersByProjectContactArchivedByAndCreatedByManyToManyConnection { } """A `CifUser` edge in the connection, with data from `ProjectContact`.""" -type CifUserCifUsersByProjectContactArchivedByAndCreatedByManyToManyEdge { +type CifUserCifUsersByProjectContactCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -27758,7 +26612,7 @@ type CifUserCifUsersByProjectContactArchivedByAndCreatedByManyToManyEdge { node: CifUser """Reads and enables pagination through a set of `ProjectContact`.""" - projectContactsByCreatedBy( + projectContactsByUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -27800,78 +26654,11 @@ type CifUserCifUsersByProjectContactArchivedByAndCreatedByManyToManyEdge { """ A connection to a list of `CifUser` values, with data from `ProjectContact`. """ -type CifUserCifUsersByProjectContactArchivedByAndUpdatedByManyToManyConnection { - """ - A list of edges which contains the `CifUser`, info from the `ProjectContact`, and the cursor to aid in pagination. - """ - edges: [CifUserCifUsersByProjectContactArchivedByAndUpdatedByManyToManyEdge!]! - - """A list of `CifUser` objects.""" - nodes: [CifUser]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CifUser` you could get from the connection.""" - totalCount: Int! -} - -"""A `CifUser` edge in the connection, with data from `ProjectContact`.""" -type CifUserCifUsersByProjectContactArchivedByAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CifUser` at the end of the edge.""" - node: CifUser - - """Reads and enables pagination through a set of `ProjectContact`.""" - projectContactsByUpdatedBy( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ProjectContactCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ProjectContactFilter - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = NO - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `ProjectContact`.""" - orderBy: [ProjectContactsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectContactsConnection! -} - -""" -A connection to a list of `CifUser` values, with data from `ProjectContact`. -""" -type CifUserCifUsersByProjectContactCreatedByAndArchivedByManyToManyConnection { +type CifUserCifUsersByProjectContactUpdatedByAndArchivedByManyToManyConnection { """ A list of edges which contains the `CifUser`, info from the `ProjectContact`, and the cursor to aid in pagination. """ - edges: [CifUserCifUsersByProjectContactCreatedByAndArchivedByManyToManyEdge!]! + edges: [CifUserCifUsersByProjectContactUpdatedByAndArchivedByManyToManyEdge!]! """A list of `CifUser` objects.""" nodes: [CifUser]! @@ -27884,7 +26671,7 @@ type CifUserCifUsersByProjectContactCreatedByAndArchivedByManyToManyConnection { } """A `CifUser` edge in the connection, with data from `ProjectContact`.""" -type CifUserCifUsersByProjectContactCreatedByAndArchivedByManyToManyEdge { +type CifUserCifUsersByProjectContactUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -27934,78 +26721,11 @@ type CifUserCifUsersByProjectContactCreatedByAndArchivedByManyToManyEdge { """ A connection to a list of `CifUser` values, with data from `ProjectContact`. """ -type CifUserCifUsersByProjectContactCreatedByAndUpdatedByManyToManyConnection { - """ - A list of edges which contains the `CifUser`, info from the `ProjectContact`, and the cursor to aid in pagination. - """ - edges: [CifUserCifUsersByProjectContactCreatedByAndUpdatedByManyToManyEdge!]! - - """A list of `CifUser` objects.""" - nodes: [CifUser]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CifUser` you could get from the connection.""" - totalCount: Int! -} - -"""A `CifUser` edge in the connection, with data from `ProjectContact`.""" -type CifUserCifUsersByProjectContactCreatedByAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CifUser` at the end of the edge.""" - node: CifUser - - """Reads and enables pagination through a set of `ProjectContact`.""" - projectContactsByUpdatedBy( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ProjectContactCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ProjectContactFilter - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = NO - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `ProjectContact`.""" - orderBy: [ProjectContactsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectContactsConnection! -} - -""" -A connection to a list of `CifUser` values, with data from `ProjectContact`. -""" -type CifUserCifUsersByProjectContactUpdatedByAndArchivedByManyToManyConnection { +type CifUserCifUsersByProjectContactUpdatedByAndCreatedByManyToManyConnection { """ A list of edges which contains the `CifUser`, info from the `ProjectContact`, and the cursor to aid in pagination. """ - edges: [CifUserCifUsersByProjectContactUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CifUserCifUsersByProjectContactUpdatedByAndCreatedByManyToManyEdge!]! """A list of `CifUser` objects.""" nodes: [CifUser]! @@ -28018,7 +26738,7 @@ type CifUserCifUsersByProjectContactUpdatedByAndArchivedByManyToManyConnection { } """A `CifUser` edge in the connection, with data from `ProjectContact`.""" -type CifUserCifUsersByProjectContactUpdatedByAndArchivedByManyToManyEdge { +type CifUserCifUsersByProjectContactUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -28026,7 +26746,7 @@ type CifUserCifUsersByProjectContactUpdatedByAndArchivedByManyToManyEdge { node: CifUser """Reads and enables pagination through a set of `ProjectContact`.""" - projectContactsByArchivedBy( + projectContactsByCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -28065,14 +26785,12 @@ type CifUserCifUsersByProjectContactUpdatedByAndArchivedByManyToManyEdge { ): ProjectContactsConnection! } -""" -A connection to a list of `CifUser` values, with data from `ProjectContact`. -""" -type CifUserCifUsersByProjectContactUpdatedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CifUser` values, with data from `Project`.""" +type CifUserCifUsersByProjectCreatedByAndArchivedByManyToManyConnection { """ - A list of edges which contains the `CifUser`, info from the `ProjectContact`, and the cursor to aid in pagination. + A list of edges which contains the `CifUser`, info from the `Project`, and the cursor to aid in pagination. """ - edges: [CifUserCifUsersByProjectContactUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CifUserCifUsersByProjectCreatedByAndArchivedByManyToManyEdge!]! """A list of `CifUser` objects.""" nodes: [CifUser]! @@ -28084,16 +26802,16 @@ type CifUserCifUsersByProjectContactUpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CifUser` edge in the connection, with data from `ProjectContact`.""" -type CifUserCifUsersByProjectContactUpdatedByAndCreatedByManyToManyEdge { +"""A `CifUser` edge in the connection, with data from `Project`.""" +type CifUserCifUsersByProjectCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CifUser` at the end of the edge.""" node: CifUser - """Reads and enables pagination through a set of `ProjectContact`.""" - projectContactsByCreatedBy( + """Reads and enables pagination through a set of `Project`.""" + projectsByArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -28103,12 +26821,12 @@ type CifUserCifUsersByProjectContactUpdatedByAndCreatedByManyToManyEdge { """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectContactCondition + condition: ProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectContactFilter + filter: ProjectFilter """Only read the first `n` values of the set.""" first: Int @@ -28127,17 +26845,17 @@ type CifUserCifUsersByProjectContactUpdatedByAndCreatedByManyToManyEdge { """ offset: Int - """The method to use when ordering `ProjectContact`.""" - orderBy: [ProjectContactsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectContactsConnection! + """The method to use when ordering `Project`.""" + orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectsConnection! } """A connection to a list of `CifUser` values, with data from `Project`.""" -type CifUserCifUsersByProjectCreatedByAndArchivedByManyToManyConnection { +type CifUserCifUsersByProjectCreatedByAndUpdatedByManyToManyConnection { """ A list of edges which contains the `CifUser`, info from the `Project`, and the cursor to aid in pagination. """ - edges: [CifUserCifUsersByProjectCreatedByAndArchivedByManyToManyEdge!]! + edges: [CifUserCifUsersByProjectCreatedByAndUpdatedByManyToManyEdge!]! """A list of `CifUser` objects.""" nodes: [CifUser]! @@ -28150,7 +26868,7 @@ type CifUserCifUsersByProjectCreatedByAndArchivedByManyToManyConnection { } """A `CifUser` edge in the connection, with data from `Project`.""" -type CifUserCifUsersByProjectCreatedByAndArchivedByManyToManyEdge { +type CifUserCifUsersByProjectCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -28158,7 +26876,7 @@ type CifUserCifUsersByProjectCreatedByAndArchivedByManyToManyEdge { node: CifUser """Reads and enables pagination through a set of `Project`.""" - projectsByArchivedBy( + projectsByUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -28197,12 +26915,14 @@ type CifUserCifUsersByProjectCreatedByAndArchivedByManyToManyEdge { ): ProjectsConnection! } -"""A connection to a list of `CifUser` values, with data from `Project`.""" -type CifUserCifUsersByProjectCreatedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CifUser` values, with data from `ProjectManager`. +""" +type CifUserCifUsersByProjectManagerArchivedByAndCifUserIdManyToManyConnection { """ - A list of edges which contains the `CifUser`, info from the `Project`, and the cursor to aid in pagination. + A list of edges which contains the `CifUser`, info from the `ProjectManager`, and the cursor to aid in pagination. """ - edges: [CifUserCifUsersByProjectCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CifUserCifUsersByProjectManagerArchivedByAndCifUserIdManyToManyEdge!]! """A list of `CifUser` objects.""" nodes: [CifUser]! @@ -28214,16 +26934,16 @@ type CifUserCifUsersByProjectCreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CifUser` edge in the connection, with data from `Project`.""" -type CifUserCifUsersByProjectCreatedByAndUpdatedByManyToManyEdge { +"""A `CifUser` edge in the connection, with data from `ProjectManager`.""" +type CifUserCifUsersByProjectManagerArchivedByAndCifUserIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CifUser` at the end of the edge.""" node: CifUser - """Reads and enables pagination through a set of `Project`.""" - projectsByUpdatedBy( + """Reads and enables pagination through a set of `ProjectManager`.""" + projectManagersByCifUserId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -28233,12 +26953,12 @@ type CifUserCifUsersByProjectCreatedByAndUpdatedByManyToManyEdge { """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectCondition + condition: ProjectManagerCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectFilter + filter: ProjectManagerFilter """Only read the first `n` values of the set.""" first: Int @@ -28257,19 +26977,19 @@ type CifUserCifUsersByProjectCreatedByAndUpdatedByManyToManyEdge { """ offset: Int - """The method to use when ordering `Project`.""" - orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectsConnection! + """The method to use when ordering `ProjectManager`.""" + orderBy: [ProjectManagersOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectManagersConnection! } """ A connection to a list of `CifUser` values, with data from `ProjectManager`. """ -type CifUserCifUsersByProjectManagerArchivedByAndCifUserIdManyToManyConnection { +type CifUserCifUsersByProjectManagerArchivedByAndCreatedByManyToManyConnection { """ A list of edges which contains the `CifUser`, info from the `ProjectManager`, and the cursor to aid in pagination. """ - edges: [CifUserCifUsersByProjectManagerArchivedByAndCifUserIdManyToManyEdge!]! + edges: [CifUserCifUsersByProjectManagerArchivedByAndCreatedByManyToManyEdge!]! """A list of `CifUser` objects.""" nodes: [CifUser]! @@ -28282,7 +27002,7 @@ type CifUserCifUsersByProjectManagerArchivedByAndCifUserIdManyToManyConnection { } """A `CifUser` edge in the connection, with data from `ProjectManager`.""" -type CifUserCifUsersByProjectManagerArchivedByAndCifUserIdManyToManyEdge { +type CifUserCifUsersByProjectManagerArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -28290,7 +27010,7 @@ type CifUserCifUsersByProjectManagerArchivedByAndCifUserIdManyToManyEdge { node: CifUser """Reads and enables pagination through a set of `ProjectManager`.""" - projectManagersByCifUserId( + projectManagersByCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -28332,11 +27052,11 @@ type CifUserCifUsersByProjectManagerArchivedByAndCifUserIdManyToManyEdge { """ A connection to a list of `CifUser` values, with data from `ProjectManager`. """ -type CifUserCifUsersByProjectManagerArchivedByAndCreatedByManyToManyConnection { +type CifUserCifUsersByProjectManagerArchivedByAndUpdatedByManyToManyConnection { """ A list of edges which contains the `CifUser`, info from the `ProjectManager`, and the cursor to aid in pagination. """ - edges: [CifUserCifUsersByProjectManagerArchivedByAndCreatedByManyToManyEdge!]! + edges: [CifUserCifUsersByProjectManagerArchivedByAndUpdatedByManyToManyEdge!]! """A list of `CifUser` objects.""" nodes: [CifUser]! @@ -28349,7 +27069,7 @@ type CifUserCifUsersByProjectManagerArchivedByAndCreatedByManyToManyConnection { } """A `CifUser` edge in the connection, with data from `ProjectManager`.""" -type CifUserCifUsersByProjectManagerArchivedByAndCreatedByManyToManyEdge { +type CifUserCifUsersByProjectManagerArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -28357,7 +27077,7 @@ type CifUserCifUsersByProjectManagerArchivedByAndCreatedByManyToManyEdge { node: CifUser """Reads and enables pagination through a set of `ProjectManager`.""" - projectManagersByCreatedBy( + projectManagersByUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -28399,11 +27119,11 @@ type CifUserCifUsersByProjectManagerArchivedByAndCreatedByManyToManyEdge { """ A connection to a list of `CifUser` values, with data from `ProjectManager`. """ -type CifUserCifUsersByProjectManagerArchivedByAndUpdatedByManyToManyConnection { +type CifUserCifUsersByProjectManagerCifUserIdAndArchivedByManyToManyConnection { """ A list of edges which contains the `CifUser`, info from the `ProjectManager`, and the cursor to aid in pagination. """ - edges: [CifUserCifUsersByProjectManagerArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CifUserCifUsersByProjectManagerCifUserIdAndArchivedByManyToManyEdge!]! """A list of `CifUser` objects.""" nodes: [CifUser]! @@ -28416,7 +27136,7 @@ type CifUserCifUsersByProjectManagerArchivedByAndUpdatedByManyToManyConnection { } """A `CifUser` edge in the connection, with data from `ProjectManager`.""" -type CifUserCifUsersByProjectManagerArchivedByAndUpdatedByManyToManyEdge { +type CifUserCifUsersByProjectManagerCifUserIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -28424,7 +27144,7 @@ type CifUserCifUsersByProjectManagerArchivedByAndUpdatedByManyToManyEdge { node: CifUser """Reads and enables pagination through a set of `ProjectManager`.""" - projectManagersByUpdatedBy( + projectManagersByArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -28466,11 +27186,11 @@ type CifUserCifUsersByProjectManagerArchivedByAndUpdatedByManyToManyEdge { """ A connection to a list of `CifUser` values, with data from `ProjectManager`. """ -type CifUserCifUsersByProjectManagerCifUserIdAndArchivedByManyToManyConnection { +type CifUserCifUsersByProjectManagerCifUserIdAndCreatedByManyToManyConnection { """ A list of edges which contains the `CifUser`, info from the `ProjectManager`, and the cursor to aid in pagination. """ - edges: [CifUserCifUsersByProjectManagerCifUserIdAndArchivedByManyToManyEdge!]! + edges: [CifUserCifUsersByProjectManagerCifUserIdAndCreatedByManyToManyEdge!]! """A list of `CifUser` objects.""" nodes: [CifUser]! @@ -28483,7 +27203,7 @@ type CifUserCifUsersByProjectManagerCifUserIdAndArchivedByManyToManyConnection { } """A `CifUser` edge in the connection, with data from `ProjectManager`.""" -type CifUserCifUsersByProjectManagerCifUserIdAndArchivedByManyToManyEdge { +type CifUserCifUsersByProjectManagerCifUserIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -28491,7 +27211,7 @@ type CifUserCifUsersByProjectManagerCifUserIdAndArchivedByManyToManyEdge { node: CifUser """Reads and enables pagination through a set of `ProjectManager`.""" - projectManagersByArchivedBy( + projectManagersByCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -28533,11 +27253,11 @@ type CifUserCifUsersByProjectManagerCifUserIdAndArchivedByManyToManyEdge { """ A connection to a list of `CifUser` values, with data from `ProjectManager`. """ -type CifUserCifUsersByProjectManagerCifUserIdAndCreatedByManyToManyConnection { +type CifUserCifUsersByProjectManagerCifUserIdAndUpdatedByManyToManyConnection { """ A list of edges which contains the `CifUser`, info from the `ProjectManager`, and the cursor to aid in pagination. """ - edges: [CifUserCifUsersByProjectManagerCifUserIdAndCreatedByManyToManyEdge!]! + edges: [CifUserCifUsersByProjectManagerCifUserIdAndUpdatedByManyToManyEdge!]! """A list of `CifUser` objects.""" nodes: [CifUser]! @@ -28550,7 +27270,7 @@ type CifUserCifUsersByProjectManagerCifUserIdAndCreatedByManyToManyConnection { } """A `CifUser` edge in the connection, with data from `ProjectManager`.""" -type CifUserCifUsersByProjectManagerCifUserIdAndCreatedByManyToManyEdge { +type CifUserCifUsersByProjectManagerCifUserIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -28558,7 +27278,7 @@ type CifUserCifUsersByProjectManagerCifUserIdAndCreatedByManyToManyEdge { node: CifUser """Reads and enables pagination through a set of `ProjectManager`.""" - projectManagersByCreatedBy( + projectManagersByUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -28600,11 +27320,11 @@ type CifUserCifUsersByProjectManagerCifUserIdAndCreatedByManyToManyEdge { """ A connection to a list of `CifUser` values, with data from `ProjectManager`. """ -type CifUserCifUsersByProjectManagerCifUserIdAndUpdatedByManyToManyConnection { +type CifUserCifUsersByProjectManagerCreatedByAndArchivedByManyToManyConnection { """ A list of edges which contains the `CifUser`, info from the `ProjectManager`, and the cursor to aid in pagination. """ - edges: [CifUserCifUsersByProjectManagerCifUserIdAndUpdatedByManyToManyEdge!]! + edges: [CifUserCifUsersByProjectManagerCreatedByAndArchivedByManyToManyEdge!]! """A list of `CifUser` objects.""" nodes: [CifUser]! @@ -28617,7 +27337,7 @@ type CifUserCifUsersByProjectManagerCifUserIdAndUpdatedByManyToManyConnection { } """A `CifUser` edge in the connection, with data from `ProjectManager`.""" -type CifUserCifUsersByProjectManagerCifUserIdAndUpdatedByManyToManyEdge { +type CifUserCifUsersByProjectManagerCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -28625,74 +27345,7 @@ type CifUserCifUsersByProjectManagerCifUserIdAndUpdatedByManyToManyEdge { node: CifUser """Reads and enables pagination through a set of `ProjectManager`.""" - projectManagersByUpdatedBy( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ProjectManagerCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ProjectManagerFilter - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = NO - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `ProjectManager`.""" - orderBy: [ProjectManagersOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectManagersConnection! -} - -""" -A connection to a list of `CifUser` values, with data from `ProjectManager`. -""" -type CifUserCifUsersByProjectManagerCreatedByAndArchivedByManyToManyConnection { - """ - A list of edges which contains the `CifUser`, info from the `ProjectManager`, and the cursor to aid in pagination. - """ - edges: [CifUserCifUsersByProjectManagerCreatedByAndArchivedByManyToManyEdge!]! - - """A list of `CifUser` objects.""" - nodes: [CifUser]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CifUser` you could get from the connection.""" - totalCount: Int! -} - -"""A `CifUser` edge in the connection, with data from `ProjectManager`.""" -type CifUserCifUsersByProjectManagerCreatedByAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CifUser` at the end of the edge.""" - node: CifUser - - """Reads and enables pagination through a set of `ProjectManager`.""" - projectManagersByArchivedBy( + projectManagersByArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -33620,24 +32273,6 @@ input CifUserFilter { """Some related `paymentsByUpdatedBy` exist.""" paymentsByUpdatedByExist: Boolean - """Filter by the object’s `projectAttachmentsByArchivedBy` relation.""" - projectAttachmentsByArchivedBy: CifUserToManyProjectAttachmentFilter - - """Some related `projectAttachmentsByArchivedBy` exist.""" - projectAttachmentsByArchivedByExist: Boolean - - """Filter by the object’s `projectAttachmentsByCreatedBy` relation.""" - projectAttachmentsByCreatedBy: CifUserToManyProjectAttachmentFilter - - """Some related `projectAttachmentsByCreatedBy` exist.""" - projectAttachmentsByCreatedByExist: Boolean - - """Filter by the object’s `projectAttachmentsByUpdatedBy` relation.""" - projectAttachmentsByUpdatedBy: CifUserToManyProjectAttachmentFilter - - """Some related `projectAttachmentsByUpdatedBy` exist.""" - projectAttachmentsByUpdatedByExist: Boolean - """Filter by the object’s `projectContactsByArchivedBy` relation.""" projectContactsByArchivedBy: CifUserToManyProjectContactFilter @@ -35675,13 +34310,13 @@ type CifUserProjectRevisionsByProjectRevisionAmendmentTypeUpdatedByAndProjectRev } """ -A connection to a list of `ProjectStatus` values, with data from `FundingStreamProjectStatus`. +A connection to a list of `ProjectStatus` values, with data from `Attachment`. """ -type CifUserProjectStatusesByFundingStreamProjectStatusArchivedByAndProjectStatusIdManyToManyConnection { +type CifUserProjectStatusesByAttachmentArchivedByAndProjectStatusIdManyToManyConnection { """ - A list of edges which contains the `ProjectStatus`, info from the `FundingStreamProjectStatus`, and the cursor to aid in pagination. + A list of edges which contains the `ProjectStatus`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CifUserProjectStatusesByFundingStreamProjectStatusArchivedByAndProjectStatusIdManyToManyEdge!]! + edges: [CifUserProjectStatusesByAttachmentArchivedByAndProjectStatusIdManyToManyEdge!]! """A list of `ProjectStatus` objects.""" nodes: [ProjectStatus]! @@ -35693,17 +34328,144 @@ type CifUserProjectStatusesByFundingStreamProjectStatusArchivedByAndProjectStatu totalCount: Int! } +"""A `ProjectStatus` edge in the connection, with data from `Attachment`.""" +type CifUserProjectStatusesByAttachmentArchivedByAndProjectStatusIdManyToManyEdge { + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByProjectStatusId( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + 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 + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = NO + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + ): AttachmentsConnection! + + """A cursor for use in pagination.""" + cursor: Cursor + + """The `ProjectStatus` at the end of the edge.""" + node: ProjectStatus +} + """ -A `ProjectStatus` edge in the connection, with data from `FundingStreamProjectStatus`. +A connection to a list of `ProjectStatus` values, with data from `Attachment`. """ -type CifUserProjectStatusesByFundingStreamProjectStatusArchivedByAndProjectStatusIdManyToManyEdge { +type CifUserProjectStatusesByAttachmentCreatedByAndProjectStatusIdManyToManyConnection { + """ + A list of edges which contains the `ProjectStatus`, info from the `Attachment`, and the cursor to aid in pagination. + """ + edges: [CifUserProjectStatusesByAttachmentCreatedByAndProjectStatusIdManyToManyEdge!]! + + """A list of `ProjectStatus` objects.""" + nodes: [ProjectStatus]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `ProjectStatus` you could get from the connection.""" + totalCount: Int! +} + +"""A `ProjectStatus` edge in the connection, with data from `Attachment`.""" +type CifUserProjectStatusesByAttachmentCreatedByAndProjectStatusIdManyToManyEdge { + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByProjectStatusId( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + 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 + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = NO + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + ): AttachmentsConnection! + """A cursor for use in pagination.""" cursor: Cursor + """The `ProjectStatus` at the end of the edge.""" + node: ProjectStatus +} + +""" +A connection to a list of `ProjectStatus` values, with data from `Attachment`. +""" +type CifUserProjectStatusesByAttachmentUpdatedByAndProjectStatusIdManyToManyConnection { """ - Reads and enables pagination through a set of `FundingStreamProjectStatus`. + A list of edges which contains the `ProjectStatus`, info from the `Attachment`, and the cursor to aid in pagination. """ - fundingStreamProjectStatusesByProjectStatusId( + edges: [CifUserProjectStatusesByAttachmentUpdatedByAndProjectStatusIdManyToManyEdge!]! + + """A list of `ProjectStatus` objects.""" + nodes: [ProjectStatus]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `ProjectStatus` you could get from the connection.""" + totalCount: Int! +} + +"""A `ProjectStatus` edge in the connection, with data from `Attachment`.""" +type CifUserProjectStatusesByAttachmentUpdatedByAndProjectStatusIdManyToManyEdge { + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByProjectStatusId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -35713,12 +34475,12 @@ type CifUserProjectStatusesByFundingStreamProjectStatusArchivedByAndProjectStatu """ A condition to be used in determining which values should be returned by the collection. """ - condition: FundingStreamProjectStatusCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FundingStreamProjectStatusFilter + filter: AttachmentFilter """Only read the first `n` values of the set.""" first: Int @@ -35737,9 +34499,12 @@ type CifUserProjectStatusesByFundingStreamProjectStatusArchivedByAndProjectStatu """ offset: Int - """The method to use when ordering `FundingStreamProjectStatus`.""" - orderBy: [FundingStreamProjectStatusesOrderBy!] = [PRIMARY_KEY_ASC] - ): FundingStreamProjectStatusesConnection! + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + ): AttachmentsConnection! + + """A cursor for use in pagination.""" + cursor: Cursor """The `ProjectStatus` at the end of the edge.""" node: ProjectStatus @@ -35748,11 +34513,11 @@ type CifUserProjectStatusesByFundingStreamProjectStatusArchivedByAndProjectStatu """ A connection to a list of `ProjectStatus` values, with data from `FundingStreamProjectStatus`. """ -type CifUserProjectStatusesByFundingStreamProjectStatusCreatedByAndProjectStatusIdManyToManyConnection { +type CifUserProjectStatusesByFundingStreamProjectStatusArchivedByAndProjectStatusIdManyToManyConnection { """ A list of edges which contains the `ProjectStatus`, info from the `FundingStreamProjectStatus`, and the cursor to aid in pagination. """ - edges: [CifUserProjectStatusesByFundingStreamProjectStatusCreatedByAndProjectStatusIdManyToManyEdge!]! + edges: [CifUserProjectStatusesByFundingStreamProjectStatusArchivedByAndProjectStatusIdManyToManyEdge!]! """A list of `ProjectStatus` objects.""" nodes: [ProjectStatus]! @@ -35767,7 +34532,7 @@ type CifUserProjectStatusesByFundingStreamProjectStatusCreatedByAndProjectStatus """ A `ProjectStatus` edge in the connection, with data from `FundingStreamProjectStatus`. """ -type CifUserProjectStatusesByFundingStreamProjectStatusCreatedByAndProjectStatusIdManyToManyEdge { +type CifUserProjectStatusesByFundingStreamProjectStatusArchivedByAndProjectStatusIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -35819,11 +34584,11 @@ type CifUserProjectStatusesByFundingStreamProjectStatusCreatedByAndProjectStatus """ A connection to a list of `ProjectStatus` values, with data from `FundingStreamProjectStatus`. """ -type CifUserProjectStatusesByFundingStreamProjectStatusUpdatedByAndProjectStatusIdManyToManyConnection { +type CifUserProjectStatusesByFundingStreamProjectStatusCreatedByAndProjectStatusIdManyToManyConnection { """ A list of edges which contains the `ProjectStatus`, info from the `FundingStreamProjectStatus`, and the cursor to aid in pagination. """ - edges: [CifUserProjectStatusesByFundingStreamProjectStatusUpdatedByAndProjectStatusIdManyToManyEdge!]! + edges: [CifUserProjectStatusesByFundingStreamProjectStatusCreatedByAndProjectStatusIdManyToManyEdge!]! """A list of `ProjectStatus` objects.""" nodes: [ProjectStatus]! @@ -35838,7 +34603,7 @@ type CifUserProjectStatusesByFundingStreamProjectStatusUpdatedByAndProjectStatus """ A `ProjectStatus` edge in the connection, with data from `FundingStreamProjectStatus`. """ -type CifUserProjectStatusesByFundingStreamProjectStatusUpdatedByAndProjectStatusIdManyToManyEdge { +type CifUserProjectStatusesByFundingStreamProjectStatusCreatedByAndProjectStatusIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -35888,13 +34653,13 @@ type CifUserProjectStatusesByFundingStreamProjectStatusUpdatedByAndProjectStatus } """ -A connection to a list of `ProjectStatus` values, with data from `Project`. +A connection to a list of `ProjectStatus` values, with data from `FundingStreamProjectStatus`. """ -type CifUserProjectStatusesByProjectArchivedByAndProjectStatusIdManyToManyConnection { +type CifUserProjectStatusesByFundingStreamProjectStatusUpdatedByAndProjectStatusIdManyToManyConnection { """ - A list of edges which contains the `ProjectStatus`, info from the `Project`, and the cursor to aid in pagination. + A list of edges which contains the `ProjectStatus`, info from the `FundingStreamProjectStatus`, and the cursor to aid in pagination. """ - edges: [CifUserProjectStatusesByProjectArchivedByAndProjectStatusIdManyToManyEdge!]! + edges: [CifUserProjectStatusesByFundingStreamProjectStatusUpdatedByAndProjectStatusIdManyToManyEdge!]! """A list of `ProjectStatus` objects.""" nodes: [ProjectStatus]! @@ -35906,16 +34671,17 @@ type CifUserProjectStatusesByProjectArchivedByAndProjectStatusIdManyToManyConnec totalCount: Int! } -"""A `ProjectStatus` edge in the connection, with data from `Project`.""" -type CifUserProjectStatusesByProjectArchivedByAndProjectStatusIdManyToManyEdge { +""" +A `ProjectStatus` edge in the connection, with data from `FundingStreamProjectStatus`. +""" +type CifUserProjectStatusesByFundingStreamProjectStatusUpdatedByAndProjectStatusIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ProjectStatus` at the end of the edge.""" - node: ProjectStatus - - """Reads and enables pagination through a set of `Project`.""" - projectsByProjectStatusId( + """ + Reads and enables pagination through a set of `FundingStreamProjectStatus`. + """ + fundingStreamProjectStatusesByProjectStatusId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -35925,12 +34691,12 @@ type CifUserProjectStatusesByProjectArchivedByAndProjectStatusIdManyToManyEdge { """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectCondition + condition: FundingStreamProjectStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectFilter + filter: FundingStreamProjectStatusFilter """Only read the first `n` values of the set.""" first: Int @@ -35949,19 +34715,22 @@ type CifUserProjectStatusesByProjectArchivedByAndProjectStatusIdManyToManyEdge { """ offset: Int - """The method to use when ordering `Project`.""" - orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectsConnection! + """The method to use when ordering `FundingStreamProjectStatus`.""" + orderBy: [FundingStreamProjectStatusesOrderBy!] = [PRIMARY_KEY_ASC] + ): FundingStreamProjectStatusesConnection! + + """The `ProjectStatus` at the end of the edge.""" + node: ProjectStatus } """ A connection to a list of `ProjectStatus` values, with data from `Project`. """ -type CifUserProjectStatusesByProjectCreatedByAndProjectStatusIdManyToManyConnection { +type CifUserProjectStatusesByProjectArchivedByAndProjectStatusIdManyToManyConnection { """ A list of edges which contains the `ProjectStatus`, info from the `Project`, and the cursor to aid in pagination. """ - edges: [CifUserProjectStatusesByProjectCreatedByAndProjectStatusIdManyToManyEdge!]! + edges: [CifUserProjectStatusesByProjectArchivedByAndProjectStatusIdManyToManyEdge!]! """A list of `ProjectStatus` objects.""" nodes: [ProjectStatus]! @@ -35974,7 +34743,74 @@ type CifUserProjectStatusesByProjectCreatedByAndProjectStatusIdManyToManyConnect } """A `ProjectStatus` edge in the connection, with data from `Project`.""" -type CifUserProjectStatusesByProjectCreatedByAndProjectStatusIdManyToManyEdge { +type CifUserProjectStatusesByProjectArchivedByAndProjectStatusIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `ProjectStatus` at the end of the edge.""" + node: ProjectStatus + + """Reads and enables pagination through a set of `Project`.""" + projectsByProjectStatusId( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ProjectCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ProjectFilter + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = NO + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `Project`.""" + orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectsConnection! +} + +""" +A connection to a list of `ProjectStatus` values, with data from `Project`. +""" +type CifUserProjectStatusesByProjectCreatedByAndProjectStatusIdManyToManyConnection { + """ + A list of edges which contains the `ProjectStatus`, info from the `Project`, and the cursor to aid in pagination. + """ + edges: [CifUserProjectStatusesByProjectCreatedByAndProjectStatusIdManyToManyEdge!]! + + """A list of `ProjectStatus` objects.""" + nodes: [ProjectStatus]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `ProjectStatus` you could get from the connection.""" + totalCount: Int! +} + +"""A `ProjectStatus` edge in the connection, with data from `Project`.""" +type CifUserProjectStatusesByProjectCreatedByAndProjectStatusIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -36503,13 +35339,13 @@ type CifUserProjectsByAdditionalFundingSourceUpdatedByAndProjectIdManyToManyEdge } """ -A connection to a list of `Project` values, with data from `FundingParameter`. +A connection to a list of `Project` values, with data from `Attachment`. """ -type CifUserProjectsByFundingParameterArchivedByAndProjectIdManyToManyConnection { +type CifUserProjectsByAttachmentArchivedByAndProjectIdManyToManyConnection { """ - A list of edges which contains the `Project`, info from the `FundingParameter`, and the cursor to aid in pagination. + A list of edges which contains the `Project`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CifUserProjectsByFundingParameterArchivedByAndProjectIdManyToManyEdge!]! + edges: [CifUserProjectsByAttachmentArchivedByAndProjectIdManyToManyEdge!]! """A list of `Project` objects.""" nodes: [Project]! @@ -36521,13 +35357,10 @@ type CifUserProjectsByFundingParameterArchivedByAndProjectIdManyToManyConnection totalCount: Int! } -"""A `Project` edge in the connection, with data from `FundingParameter`.""" -type CifUserProjectsByFundingParameterArchivedByAndProjectIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """Reads and enables pagination through a set of `FundingParameter`.""" - fundingParametersByProjectId( +"""A `Project` edge in the connection, with data from `Attachment`.""" +type CifUserProjectsByAttachmentArchivedByAndProjectIdManyToManyEdge { + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByProjectId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -36537,12 +35370,12 @@ type CifUserProjectsByFundingParameterArchivedByAndProjectIdManyToManyEdge { """ A condition to be used in determining which values should be returned by the collection. """ - condition: FundingParameterCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FundingParameterFilter + filter: AttachmentFilter """Only read the first `n` values of the set.""" first: Int @@ -36561,22 +35394,25 @@ type CifUserProjectsByFundingParameterArchivedByAndProjectIdManyToManyEdge { """ offset: Int - """The method to use when ordering `FundingParameter`.""" - orderBy: [FundingParametersOrderBy!] = [PRIMARY_KEY_ASC] - ): FundingParametersConnection! + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + ): AttachmentsConnection! + + """A cursor for use in pagination.""" + cursor: Cursor """The `Project` at the end of the edge.""" node: Project } """ -A connection to a list of `Project` values, with data from `FundingParameter`. +A connection to a list of `Project` values, with data from `Attachment`. """ -type CifUserProjectsByFundingParameterCreatedByAndProjectIdManyToManyConnection { +type CifUserProjectsByAttachmentCreatedByAndProjectIdManyToManyConnection { """ - A list of edges which contains the `Project`, info from the `FundingParameter`, and the cursor to aid in pagination. + A list of edges which contains the `Project`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CifUserProjectsByFundingParameterCreatedByAndProjectIdManyToManyEdge!]! + edges: [CifUserProjectsByAttachmentCreatedByAndProjectIdManyToManyEdge!]! """A list of `Project` objects.""" nodes: [Project]! @@ -36588,13 +35424,10 @@ type CifUserProjectsByFundingParameterCreatedByAndProjectIdManyToManyConnection totalCount: Int! } -"""A `Project` edge in the connection, with data from `FundingParameter`.""" -type CifUserProjectsByFundingParameterCreatedByAndProjectIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """Reads and enables pagination through a set of `FundingParameter`.""" - fundingParametersByProjectId( +"""A `Project` edge in the connection, with data from `Attachment`.""" +type CifUserProjectsByAttachmentCreatedByAndProjectIdManyToManyEdge { + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByProjectId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -36604,12 +35437,12 @@ type CifUserProjectsByFundingParameterCreatedByAndProjectIdManyToManyEdge { """ A condition to be used in determining which values should be returned by the collection. """ - condition: FundingParameterCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FundingParameterFilter + filter: AttachmentFilter """Only read the first `n` values of the set.""" first: Int @@ -36628,22 +35461,25 @@ type CifUserProjectsByFundingParameterCreatedByAndProjectIdManyToManyEdge { """ offset: Int - """The method to use when ordering `FundingParameter`.""" - orderBy: [FundingParametersOrderBy!] = [PRIMARY_KEY_ASC] - ): FundingParametersConnection! + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + ): AttachmentsConnection! + + """A cursor for use in pagination.""" + cursor: Cursor """The `Project` at the end of the edge.""" node: Project } """ -A connection to a list of `Project` values, with data from `FundingParameter`. +A connection to a list of `Project` values, with data from `Attachment`. """ -type CifUserProjectsByFundingParameterUpdatedByAndProjectIdManyToManyConnection { +type CifUserProjectsByAttachmentUpdatedByAndProjectIdManyToManyConnection { """ - A list of edges which contains the `Project`, info from the `FundingParameter`, and the cursor to aid in pagination. + A list of edges which contains the `Project`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CifUserProjectsByFundingParameterUpdatedByAndProjectIdManyToManyEdge!]! + edges: [CifUserProjectsByAttachmentUpdatedByAndProjectIdManyToManyEdge!]! """A list of `Project` objects.""" nodes: [Project]! @@ -36655,13 +35491,10 @@ type CifUserProjectsByFundingParameterUpdatedByAndProjectIdManyToManyConnection totalCount: Int! } -"""A `Project` edge in the connection, with data from `FundingParameter`.""" -type CifUserProjectsByFundingParameterUpdatedByAndProjectIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """Reads and enables pagination through a set of `FundingParameter`.""" - fundingParametersByProjectId( +"""A `Project` edge in the connection, with data from `Attachment`.""" +type CifUserProjectsByAttachmentUpdatedByAndProjectIdManyToManyEdge { + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByProjectId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -36671,12 +35504,12 @@ type CifUserProjectsByFundingParameterUpdatedByAndProjectIdManyToManyEdge { """ A condition to be used in determining which values should be returned by the collection. """ - condition: FundingParameterCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FundingParameterFilter + filter: AttachmentFilter """Only read the first `n` values of the set.""" first: Int @@ -36695,22 +35528,25 @@ type CifUserProjectsByFundingParameterUpdatedByAndProjectIdManyToManyEdge { """ offset: Int - """The method to use when ordering `FundingParameter`.""" - orderBy: [FundingParametersOrderBy!] = [PRIMARY_KEY_ASC] - ): FundingParametersConnection! + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + ): AttachmentsConnection! + + """A cursor for use in pagination.""" + cursor: Cursor """The `Project` at the end of the edge.""" node: Project } """ -A connection to a list of `Project` values, with data from `ProjectAttachment`. +A connection to a list of `Project` values, with data from `FundingParameter`. """ -type CifUserProjectsByProjectAttachmentArchivedByAndProjectIdManyToManyConnection { +type CifUserProjectsByFundingParameterArchivedByAndProjectIdManyToManyConnection { """ - A list of edges which contains the `Project`, info from the `ProjectAttachment`, and the cursor to aid in pagination. + A list of edges which contains the `Project`, info from the `FundingParameter`, and the cursor to aid in pagination. """ - edges: [CifUserProjectsByProjectAttachmentArchivedByAndProjectIdManyToManyEdge!]! + edges: [CifUserProjectsByFundingParameterArchivedByAndProjectIdManyToManyEdge!]! """A list of `Project` objects.""" nodes: [Project]! @@ -36722,18 +35558,13 @@ type CifUserProjectsByProjectAttachmentArchivedByAndProjectIdManyToManyConnectio totalCount: Int! } -""" -A `Project` edge in the connection, with data from `ProjectAttachment`. -""" -type CifUserProjectsByProjectAttachmentArchivedByAndProjectIdManyToManyEdge { +"""A `Project` edge in the connection, with data from `FundingParameter`.""" +type CifUserProjectsByFundingParameterArchivedByAndProjectIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Project` at the end of the edge.""" - node: Project - - """Reads and enables pagination through a set of `ProjectAttachment`.""" - projectAttachmentsByProjectId( + """Reads and enables pagination through a set of `FundingParameter`.""" + fundingParametersByProjectId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -36743,12 +35574,12 @@ type CifUserProjectsByProjectAttachmentArchivedByAndProjectIdManyToManyEdge { """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectAttachmentCondition + condition: FundingParameterCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectAttachmentFilter + filter: FundingParameterFilter """Only read the first `n` values of the set.""" first: Int @@ -36767,19 +35598,22 @@ type CifUserProjectsByProjectAttachmentArchivedByAndProjectIdManyToManyEdge { """ offset: Int - """The method to use when ordering `ProjectAttachment`.""" - orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectAttachmentsConnection! + """The method to use when ordering `FundingParameter`.""" + orderBy: [FundingParametersOrderBy!] = [PRIMARY_KEY_ASC] + ): FundingParametersConnection! + + """The `Project` at the end of the edge.""" + node: Project } """ -A connection to a list of `Project` values, with data from `ProjectAttachment`. +A connection to a list of `Project` values, with data from `FundingParameter`. """ -type CifUserProjectsByProjectAttachmentCreatedByAndProjectIdManyToManyConnection { +type CifUserProjectsByFundingParameterCreatedByAndProjectIdManyToManyConnection { """ - A list of edges which contains the `Project`, info from the `ProjectAttachment`, and the cursor to aid in pagination. + A list of edges which contains the `Project`, info from the `FundingParameter`, and the cursor to aid in pagination. """ - edges: [CifUserProjectsByProjectAttachmentCreatedByAndProjectIdManyToManyEdge!]! + edges: [CifUserProjectsByFundingParameterCreatedByAndProjectIdManyToManyEdge!]! """A list of `Project` objects.""" nodes: [Project]! @@ -36791,18 +35625,13 @@ type CifUserProjectsByProjectAttachmentCreatedByAndProjectIdManyToManyConnection totalCount: Int! } -""" -A `Project` edge in the connection, with data from `ProjectAttachment`. -""" -type CifUserProjectsByProjectAttachmentCreatedByAndProjectIdManyToManyEdge { +"""A `Project` edge in the connection, with data from `FundingParameter`.""" +type CifUserProjectsByFundingParameterCreatedByAndProjectIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Project` at the end of the edge.""" - node: Project - - """Reads and enables pagination through a set of `ProjectAttachment`.""" - projectAttachmentsByProjectId( + """Reads and enables pagination through a set of `FundingParameter`.""" + fundingParametersByProjectId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -36812,12 +35641,12 @@ type CifUserProjectsByProjectAttachmentCreatedByAndProjectIdManyToManyEdge { """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectAttachmentCondition + condition: FundingParameterCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectAttachmentFilter + filter: FundingParameterFilter """Only read the first `n` values of the set.""" first: Int @@ -36836,19 +35665,22 @@ type CifUserProjectsByProjectAttachmentCreatedByAndProjectIdManyToManyEdge { """ offset: Int - """The method to use when ordering `ProjectAttachment`.""" - orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectAttachmentsConnection! + """The method to use when ordering `FundingParameter`.""" + orderBy: [FundingParametersOrderBy!] = [PRIMARY_KEY_ASC] + ): FundingParametersConnection! + + """The `Project` at the end of the edge.""" + node: Project } """ -A connection to a list of `Project` values, with data from `ProjectAttachment`. +A connection to a list of `Project` values, with data from `FundingParameter`. """ -type CifUserProjectsByProjectAttachmentUpdatedByAndProjectIdManyToManyConnection { +type CifUserProjectsByFundingParameterUpdatedByAndProjectIdManyToManyConnection { """ - A list of edges which contains the `Project`, info from the `ProjectAttachment`, and the cursor to aid in pagination. + A list of edges which contains the `Project`, info from the `FundingParameter`, and the cursor to aid in pagination. """ - edges: [CifUserProjectsByProjectAttachmentUpdatedByAndProjectIdManyToManyEdge!]! + edges: [CifUserProjectsByFundingParameterUpdatedByAndProjectIdManyToManyEdge!]! """A list of `Project` objects.""" nodes: [Project]! @@ -36860,18 +35692,13 @@ type CifUserProjectsByProjectAttachmentUpdatedByAndProjectIdManyToManyConnection totalCount: Int! } -""" -A `Project` edge in the connection, with data from `ProjectAttachment`. -""" -type CifUserProjectsByProjectAttachmentUpdatedByAndProjectIdManyToManyEdge { +"""A `Project` edge in the connection, with data from `FundingParameter`.""" +type CifUserProjectsByFundingParameterUpdatedByAndProjectIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Project` at the end of the edge.""" - node: Project - - """Reads and enables pagination through a set of `ProjectAttachment`.""" - projectAttachmentsByProjectId( + """Reads and enables pagination through a set of `FundingParameter`.""" + fundingParametersByProjectId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -36881,12 +35708,12 @@ type CifUserProjectsByProjectAttachmentUpdatedByAndProjectIdManyToManyEdge { """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectAttachmentCondition + condition: FundingParameterCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectAttachmentFilter + filter: FundingParameterFilter """Only read the first `n` values of the set.""" first: Int @@ -36905,9 +35732,12 @@ type CifUserProjectsByProjectAttachmentUpdatedByAndProjectIdManyToManyEdge { """ offset: Int - """The method to use when ordering `ProjectAttachment`.""" - orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectAttachmentsConnection! + """The method to use when ordering `FundingParameter`.""" + orderBy: [FundingParametersOrderBy!] = [PRIMARY_KEY_ASC] + ): FundingParametersConnection! + + """The `Project` at the end of the edge.""" + node: Project } """ @@ -39393,26 +38223,6 @@ input CifUserToManyPaymentFilter { some: PaymentFilter } -""" -A filter to be used against many `ProjectAttachment` object types. All fields are combined with a logical ‘and.’ -""" -input CifUserToManyProjectAttachmentFilter { - """ - Every related `ProjectAttachment` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ProjectAttachmentFilter - - """ - No related `ProjectAttachment` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ProjectAttachmentFilter - - """ - Some related `ProjectAttachment` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ProjectAttachmentFilter -} - """ A filter to be used against many `ProjectContact` object types. All fields are combined with a logical ‘and.’ """ @@ -39916,12 +38726,6 @@ enum CifUsersOrderBy { PROJECTS_BY_CREATED_BY__COUNT_DESC PROJECTS_BY_UPDATED_BY__COUNT_ASC PROJECTS_BY_UPDATED_BY__COUNT_DESC - PROJECT_ATTACHMENTS_BY_ARCHIVED_BY__COUNT_ASC - PROJECT_ATTACHMENTS_BY_ARCHIVED_BY__COUNT_DESC - PROJECT_ATTACHMENTS_BY_CREATED_BY__COUNT_ASC - PROJECT_ATTACHMENTS_BY_CREATED_BY__COUNT_DESC - PROJECT_ATTACHMENTS_BY_UPDATED_BY__COUNT_ASC - PROJECT_ATTACHMENTS_BY_UPDATED_BY__COUNT_DESC PROJECT_CONTACTS_BY_ARCHIVED_BY__COUNT_ASC PROJECT_CONTACTS_BY_ARCHIVED_BY__COUNT_DESC PROJECT_CONTACTS_BY_CREATED_BY__COUNT_ASC @@ -41141,6 +39945,12 @@ type CreateAttachmentPayload { """ clientMutationId: String + """Reads a single `Project` that is related to this `Attachment`.""" + projectByProjectId: Project + + """Reads a single `ProjectStatus` that is related to this `Attachment`.""" + projectStatusByProjectStatusId: ProjectStatus + """ Our root query field type. Allows us to run any query from our mutation payload. """ @@ -41695,58 +40505,6 @@ type CreateMilestoneReportPayload { reportingRequirementByReportingRequirementId: ReportingRequirement } -"""All input for the create `ProjectAttachment` mutation.""" -input CreateProjectAttachmentInput { - """ - 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 `ProjectAttachment` to be created by this mutation.""" - projectAttachment: ProjectAttachmentInput! -} - -"""The output of our create `ProjectAttachment` mutation.""" -type CreateProjectAttachmentPayload { - """ - Reads a single `Attachment` that is related to this `ProjectAttachment`. - """ - attachmentByAttachmentId: Attachment - - """Reads a single `CifUser` that is related to this `ProjectAttachment`.""" - cifUserByArchivedBy: CifUser - - """Reads a single `CifUser` that is related to this `ProjectAttachment`.""" - cifUserByCreatedBy: CifUser - - """Reads a single `CifUser` that is related to this `ProjectAttachment`.""" - cifUserByUpdatedBy: CifUser - - """ - 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 `ProjectAttachment` that was created by this mutation.""" - projectAttachment: ProjectAttachment - - """An edge for our `ProjectAttachment`. May be used by Relay 1.""" - projectAttachmentEdge( - """The method to use when ordering `ProjectAttachment`.""" - orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectAttachmentsEdge - - """Reads a single `Project` that is related to this `ProjectAttachment`.""" - projectByProjectId: Project - - """ - Our root query field type. Allows us to run any query from our mutation payload. - """ - query: Query -} - """All input for the create `ProjectContact` mutation.""" input CreateProjectContactInput { """ @@ -42648,6 +41406,12 @@ type DeleteAttachmentPayload { clientMutationId: String deletedAttachmentId: ID + """Reads a single `Project` that is related to this `Attachment`.""" + projectByProjectId: Project + + """Reads a single `ProjectStatus` that is related to this `Attachment`.""" + projectStatusByProjectStatusId: ProjectStatus + """ Our root query field type. Allows us to run any query from our mutation payload. """ @@ -43394,73 +42158,6 @@ type DeleteMilestoneReportPayload { reportingRequirementByReportingRequirementId: ReportingRequirement } -"""All input for the `deleteProjectAttachmentByRowId` mutation.""" -input DeleteProjectAttachmentByRowIdInput { - """ - 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 project attachment record""" - rowId: Int! -} - -"""All input for the `deleteProjectAttachment` mutation.""" -input DeleteProjectAttachmentInput { - """ - 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 `ProjectAttachment` to be deleted. - """ - id: ID! -} - -"""The output of our delete `ProjectAttachment` mutation.""" -type DeleteProjectAttachmentPayload { - """ - Reads a single `Attachment` that is related to this `ProjectAttachment`. - """ - attachmentByAttachmentId: Attachment - - """Reads a single `CifUser` that is related to this `ProjectAttachment`.""" - cifUserByArchivedBy: CifUser - - """Reads a single `CifUser` that is related to this `ProjectAttachment`.""" - cifUserByCreatedBy: CifUser - - """Reads a single `CifUser` that is related to this `ProjectAttachment`.""" - cifUserByUpdatedBy: CifUser - - """ - 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 - deletedProjectAttachmentId: ID - - """The `ProjectAttachment` that was deleted by this mutation.""" - projectAttachment: ProjectAttachment - - """An edge for our `ProjectAttachment`. May be used by Relay 1.""" - projectAttachmentEdge( - """The method to use when ordering `ProjectAttachment`.""" - orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectAttachmentsEdge - - """Reads a single `Project` that is related to this `ProjectAttachment`.""" - projectByProjectId: Project - - """ - Our root query field type. Allows us to run any query from our mutation payload. - """ - query: Query -} - """All input for the `deleteProjectContactByRowId` mutation.""" input DeleteProjectContactByRowIdInput { """ @@ -44188,55 +42885,6 @@ type DiscardFundingParameterFormChangePayload { query: Query } -"""All input for the `discardProjectAttachmentFormChange` mutation.""" -input DiscardProjectAttachmentFormChangeInput { - """ - 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 - formChangeId: Int! -} - -"""The output of our `discardProjectAttachmentFormChange` mutation.""" -type DiscardProjectAttachmentFormChangePayload { - """Reads a single `ChangeStatus` that is related to this `FormChange`.""" - changeStatusByChangeStatus: ChangeStatus - - """Reads a single `CifUser` that is related to this `FormChange`.""" - cifUserByCreatedBy: CifUser - - """Reads a single `CifUser` that is related to this `FormChange`.""" - cifUserByUpdatedBy: CifUser - - """ - 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 - - """Reads a single `Form` that is related to this `FormChange`.""" - formByJsonSchemaName: Form - formChange: FormChange - - """Reads a single `FormChange` that is related to this `FormChange`.""" - formChangeByPreviousFormChangeId: FormChange - - """An edge for our `FormChange`. May be used by Relay 1.""" - formChangeEdge( - """The method to use when ordering `FormChange`.""" - orderBy: [FormChangesOrderBy!] = [PRIMARY_KEY_ASC] - ): FormChangesEdge - - """Reads a single `ProjectRevision` that is related to this `FormChange`.""" - projectRevisionByProjectRevisionId: ProjectRevision - - """ - Our root query field type. Allows us to run any query from our mutation payload. - """ - query: Query -} - """ Table containing information about how CIF emission_intensity values map to a payment_percentage. This table is a lookup table that maps the emission intensity performance of a project to a payment percentage used to determine payments. @@ -45423,7 +44071,7 @@ type Form implements Node { """ A function that can be used to dynamically alter the schema, such as altering constraints based on the contents of a table. """ - jsonSchemaGenerator: RegProcedure + jsonSchemaGenerator: String """Reads and enables pagination through a set of `ProjectRevision`.""" projectRevisionsByFormChangeJsonSchemaNameAndProjectRevisionId( @@ -45474,42 +44122,6 @@ type Form implements Node { """Table tracking individual changes to database records""" type FormChange implements Node { - """ - Computed column to return the actual performance milestone amount. - Calculation: - - Actual Performance Milestone Amount = (Maximum Performance Milestone Amount * Payment Percentage Of Performance Milestone Amount) / 100 - - Maximum Performance Milestone Amount is Holdback Amount To Date on front end code - - """ - actualPerformanceMilestoneAmount: BigFloat - - """ - Computed column to calculate the anticipated amount of funding for a project by fiscal year - """ - anticipatedFundingAmountPerFiscalYear( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: SumByFiscalYearFilter - - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - ): SumByFiscalYearsConnection! asEmissionIntensityReport: EmissionIntensityReport """ @@ -45517,11 +44129,6 @@ type FormChange implements Node { """ asProject: Project - """ - Computed column returns data from the new_form_data column as if it were an attachment record to allow graph traversal via the foreign keys. - """ - asProjectAttachment: ProjectAttachment - """ Computed column returns data from the new_form_data column as if it were a project_contact record to allow graph traversal via the foreign keys. """ @@ -45796,7 +44403,7 @@ type FormChange implements Node { grossPaymentsToDate: BigFloat """ - Computed column returns sum all holdback amounts for a project. If any of the milestones have null values for adjustedHoldbackAmount and calculatedHoldbackAmount, then null is returned. Preference for value selection is adjustedHoldbackAmount > calculatedHoldbackAmount > amount calculated via maximum milestone amount + Computed column returns sum all holdback amounts for a project. Preference for value selection is adjustedHoldbackAmount > calculuatedHoldbackAmount > amount calculated via maximum milestone amount """ holdbackAmountToDate: BigFloat @@ -45809,7 +44416,6 @@ type FormChange implements Node { """The name of the JSON schema to use for validation of this form data""" jsonSchemaName: String! - maximumPerformanceMilestoneAmount: BigFloat """ Computed column returns cumulative sum of all net payments. Preference for value selection is adjustedNetAmount > calculuatedNetAmount > amount calculated via maximum milestone amount @@ -45875,12 +44481,6 @@ type FormChange implements Node { orderBy: [ProjectRevisionsOrderBy!] = [PRIMARY_KEY_ASC] ): FormChangeProjectRevisionsByFormChangePreviousFormChangeIdAndProjectRevisionIdManyToManyConnection! - """Computed column returns the calculated proponents share percentage.""" - proponentsSharePercentage: BigFloat - - """Computed column to determine the rank of a project""" - rank: Int - """ A computed column to return the status for a reporting requirement form_change record based on the report_due_date and submitted_date """ @@ -45889,14 +44489,6 @@ type FormChange implements Node { """Unique ID for the form_change""" rowId: Int! - """ - Computed column to return the total project value. - Calculation: - - Total Project Value = Maximum Funding Amount + Proponent Cost + approved Additional Funding Amount(s) - - """ - totalProjectValue: BigFloat - """updated at timestamp""" updatedAt: Datetime! @@ -46150,9 +44742,6 @@ input FormChangeCondition { A filter to be used against `FormChange` object types. All fields are combined with a logical ‘and.’ """ input FormChangeFilter { - """Filter by the object’s `actualPerformanceMilestoneAmount` field.""" - actualPerformanceMilestoneAmount: BigFloatFilter - """Checks for all expressions in this list.""" and: [FormChangeFilter!] @@ -46234,9 +44823,6 @@ input FormChangeFilter { """Filter by the object’s `jsonSchemaName` field.""" jsonSchemaName: StringFilter - """Filter by the object’s `maximumPerformanceMilestoneAmount` field.""" - maximumPerformanceMilestoneAmount: BigFloatFilter - """Filter by the object’s `netPaymentsToDate` field.""" netPaymentsToDate: BigFloatFilter @@ -46267,21 +44853,12 @@ input FormChangeFilter { """Filter by the object’s `projectRevisionId` field.""" projectRevisionId: IntFilter - """Filter by the object’s `proponentsSharePercentage` field.""" - proponentsSharePercentage: BigFloatFilter - - """Filter by the object’s `rank` field.""" - rank: IntFilter - """Filter by the object’s `reportingRequirementStatus` field.""" reportingRequirementStatus: StringFilter """Filter by the object’s `rowId` field.""" rowId: IntFilter - """Filter by the object’s `totalProjectValue` field.""" - totalProjectValue: BigFloatFilter - """Filter by the object’s `updatedAt` field.""" updatedAt: DatetimeFilter @@ -46946,7 +45523,7 @@ input FormCondition { jsonSchema: JSON """Checks for equality with the object’s `jsonSchemaGenerator` field.""" - jsonSchemaGenerator: RegProcedure + jsonSchemaGenerator: String """Checks for equality with the object’s `rowId` field.""" rowId: Int @@ -47013,6 +45590,9 @@ input FormFilter { """Filter by the object’s `jsonSchema` field.""" jsonSchema: JSONFilter + """Filter by the object’s `jsonSchemaGenerator` field.""" + jsonSchemaGenerator: StringFilter + """Negates the expression.""" not: FormFilter @@ -47124,7 +45704,7 @@ input FormInput { """ A function that can be used to dynamically alter the schema, such as altering constraints based on the contents of a table. """ - jsonSchemaGenerator: RegProcedure + jsonSchemaGenerator: String """Unique short name identifier for the json_schema data.""" slug: String! @@ -47166,7 +45746,7 @@ input FormPatch { """ A function that can be used to dynamically alter the schema, such as altering constraints based on the contents of a table. """ - jsonSchemaGenerator: RegProcedure + jsonSchemaGenerator: String """Unique short name identifier for the json_schema data.""" slug: String @@ -50871,32 +49451,6 @@ input JSONFilter { notIn: [JSON!] } -"""All input for the `jsonbMinus` mutation.""" -input JsonbMinusInput { - """ - 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 - minuend: JSON! - subtrahend: JSON! -} - -"""The output of our `jsonbMinus` mutation.""" -type JsonbMinusPayload { - """ - 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 - json: JSON - - """ - Our root query field type. Allows us to run any query from our mutation payload. - """ - query: Query -} - type KeycloakJwt { acr: String aud: String @@ -51564,23 +50118,24 @@ enum MilestoneReportsOrderBy { The root mutation type which contains root level fields which mutate data. """ type Mutation { + addAdditionalFundingSourceToRevision( + """ + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + """ + input: AddAdditionalFundingSourceToRevisionInput! + ): AddAdditionalFundingSourceToRevisionPayload addContactToRevision( """ The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. """ input: AddContactToRevisionInput! ): AddContactToRevisionPayload - - """ - Creates a new project_attachment form_change record for the given revision_id and attachment_id. - - """ - addProjectAttachmentToRevision( + addEmissionIntensityReportToRevision( """ The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. """ - input: AddProjectAttachmentToRevisionInput! - ): AddProjectAttachmentToRevisionPayload + input: AddEmissionIntensityReportToRevisionInput! + ): AddEmissionIntensityReportToRevisionPayload """ Custom mutation to commit a form_change record via the API. Only used for records that are independent of a project such as the lists of contacts and operators. @@ -51729,14 +50284,6 @@ type Mutation { input: CreateProjectInput! ): CreateProjectPayload - """Creates a single `ProjectAttachment`.""" - createProjectAttachment( - """ - The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. - """ - input: CreateProjectAttachmentInput! - ): CreateProjectAttachmentPayload - """Creates a single `ProjectContact`.""" createProjectContact( """ @@ -52089,22 +50636,6 @@ type Mutation { input: DeleteMilestoneReportByRowIdInput! ): DeleteMilestoneReportPayload - """Deletes a single `ProjectAttachment` using its globally unique id.""" - deleteProjectAttachment( - """ - The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. - """ - input: DeleteProjectAttachmentInput! - ): DeleteProjectAttachmentPayload - - """Deletes a single `ProjectAttachment` using a unique key.""" - deleteProjectAttachmentByRowId( - """ - The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. - """ - input: DeleteProjectAttachmentByRowIdInput! - ): DeleteProjectAttachmentPayload - """Deletes a single `ProjectContact` using its globally unique id.""" deleteProjectContact( """ @@ -52295,12 +50826,6 @@ type Mutation { """ input: DiscardFundingParameterFormChangeInput! ): DiscardFundingParameterFormChangePayload - discardProjectAttachmentFormChange( - """ - The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. - """ - input: DiscardProjectAttachmentFormChangeInput! - ): DiscardProjectAttachmentFormChangePayload """ Custom mutation to generate annual reports for a revision between emissions intensity report_due_date and project_assets_life_end_date. @@ -52323,12 +50848,6 @@ type Mutation { """ input: GenerateQuarterlyReportsInput! ): GenerateQuarterlyReportsPayload - jsonbMinus( - """ - The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. - """ - input: JsonbMinusInput! - ): JsonbMinusPayload stageDirtyFormChanges( """ The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. @@ -52656,24 +51175,6 @@ type Mutation { input: UpdateOrCreateUserFromSessionInput! ): UpdateOrCreateUserFromSessionPayload - """ - Updates a single `ProjectAttachment` using its globally unique id and a patch. - """ - updateProjectAttachment( - """ - The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. - """ - input: UpdateProjectAttachmentInput! - ): UpdateProjectAttachmentPayload - - """Updates a single `ProjectAttachment` using a unique key and a patch.""" - updateProjectAttachmentByRowId( - """ - The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. - """ - input: UpdateProjectAttachmentByRowIdInput! - ): UpdateProjectAttachmentPayload - """ Updates a single `ProjectContact` using its globally unique id and a patch. """ @@ -54468,7 +52969,7 @@ type Project implements Node { archivedBy: Int """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByProjectAttachmentProjectIdAndAttachmentId( + attachmentsByProjectId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -54491,7 +52992,7 @@ type Project implements Node { """ Indicates whether archived items should be included in the results or not. """ - includeArchived: IncludeArchivedOption = NO + includeArchived: IncludeArchivedOption = INHERIT """Only read the last `n` values of the set.""" last: Int @@ -54504,7 +53005,7 @@ type Project implements Node { """The method to use when ordering `Attachment`.""" orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectAttachmentsByProjectAttachmentProjectIdAndAttachmentIdManyToManyConnection! + ): AttachmentsConnection! """Reads and enables pagination through a set of `ChangeStatus`.""" changeStatusesByProjectRevisionProjectIdAndChangeStatus( @@ -54672,7 +53173,7 @@ type Project implements Node { ): ProjectCifUsersByAdditionalFundingSourceProjectIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByFundingParameterProjectIdAndArchivedBy( + cifUsersByAttachmentProjectIdAndArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -54708,10 +53209,10 @@ type Project implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectCifUsersByFundingParameterProjectIdAndArchivedByManyToManyConnection! + ): ProjectCifUsersByAttachmentProjectIdAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByFundingParameterProjectIdAndCreatedBy( + cifUsersByAttachmentProjectIdAndCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -54747,10 +53248,10 @@ type Project implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectCifUsersByFundingParameterProjectIdAndCreatedByManyToManyConnection! + ): ProjectCifUsersByAttachmentProjectIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByFundingParameterProjectIdAndUpdatedBy( + cifUsersByAttachmentProjectIdAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -54786,10 +53287,10 @@ type Project implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectCifUsersByFundingParameterProjectIdAndUpdatedByManyToManyConnection! + ): ProjectCifUsersByAttachmentProjectIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectAttachmentProjectIdAndArchivedBy( + cifUsersByFundingParameterProjectIdAndArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -54825,10 +53326,10 @@ type Project implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectCifUsersByProjectAttachmentProjectIdAndArchivedByManyToManyConnection! + ): ProjectCifUsersByFundingParameterProjectIdAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectAttachmentProjectIdAndCreatedBy( + cifUsersByFundingParameterProjectIdAndCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -54864,10 +53365,10 @@ type Project implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectCifUsersByProjectAttachmentProjectIdAndCreatedByManyToManyConnection! + ): ProjectCifUsersByFundingParameterProjectIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectAttachmentProjectIdAndUpdatedBy( + cifUsersByFundingParameterProjectIdAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -54903,7 +53404,7 @@ type Project implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectCifUsersByProjectAttachmentProjectIdAndUpdatedByManyToManyConnection! + ): ProjectCifUsersByFundingParameterProjectIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" cifUsersByProjectContactProjectIdAndArchivedBy( @@ -55481,9 +53982,6 @@ type Project implements Node { """ latestCommittedProjectRevision: ProjectRevision - """Computed column returns the status of all milestones""" - milestoneStatus: String - """ Computed column to return the next milestone due date for a given project """ @@ -55495,56 +53993,14 @@ type Project implements Node { """Foreign key references the cif.operator table""" operatorId: Int! - """Returns the pending amendment for the project""" - pendingAmendment: ProjectRevision - - """Returns the pending general revision for the project""" - pendingGeneralRevision: ProjectRevision + """Returns the pending project revision for the project""" + pendingProjectRevision: ProjectRevision """ Returns a concatenated list of the project managers (used for filtering the projects table) """ primaryManagers: String - """Reads and enables pagination through a set of `ProjectAttachment`.""" - projectAttachmentsByProjectId( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ProjectAttachmentCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ProjectAttachmentFilter - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = INHERIT - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `ProjectAttachment`.""" - orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectAttachmentsConnection! - """Reads and enables pagination through a set of `ProjectContact`.""" projectContactsByProjectId( """Read all values in the set after (below) this cursor.""" @@ -55707,6 +54163,45 @@ type Project implements Node { """ projectStatusId: Int! + """Reads and enables pagination through a set of `ProjectStatus`.""" + projectStatusesByAttachmentProjectIdAndProjectStatusId( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ProjectStatusCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ProjectStatusFilter + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = NO + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `ProjectStatus`.""" + orderBy: [ProjectStatusesOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectProjectStatusesByAttachmentProjectIdAndProjectStatusIdManyToManyConnection! + """The type of the project (e.g. fuel switching)""" projectType: String @@ -55972,478 +54467,6 @@ type ProjectAdditionalFundingSourceStatusesByAdditionalFundingSourceProjectIdAnd node: AdditionalFundingSourceStatus } -"""Join table to track assignment of attachments to projects""" -type ProjectAttachment implements Node { - """archived at timestamp""" - archivedAt: Datetime - - """archived by user id""" - archivedBy: Int - - """ - Reads a single `Attachment` that is related to this `ProjectAttachment`. - """ - attachmentByAttachmentId: Attachment - - """Foreign key to the attachment""" - attachmentId: Int! - - """Reads a single `CifUser` that is related to this `ProjectAttachment`.""" - cifUserByArchivedBy: CifUser - - """Reads a single `CifUser` that is related to this `ProjectAttachment`.""" - cifUserByCreatedBy: CifUser - - """Reads a single `CifUser` that is related to this `ProjectAttachment`.""" - cifUserByUpdatedBy: CifUser - - """created at timestamp""" - createdAt: Datetime! - - """created by user id""" - createdBy: Int - - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Reads a single `Project` that is related to this `ProjectAttachment`.""" - projectByProjectId: Project - - """Foreign key to the project""" - projectId: Int! - - """Unique ID for the project attachment record""" - rowId: Int! - - """updated at timestamp""" - updatedAt: Datetime! - - """updated by user id""" - updatedBy: Int -} - -""" -A condition to be used against `ProjectAttachment` object types. All fields are -tested for equality and combined with a logical ‘and.’ -""" -input ProjectAttachmentCondition { - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime - - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int - - """Checks for equality with the object’s `attachmentId` field.""" - attachmentId: Int - - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime - - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int - - """Checks for equality with the object’s `projectId` field.""" - projectId: Int - - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime - - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int -} - -""" -A filter to be used against `ProjectAttachment` object types. All fields are combined with a logical ‘and.’ -""" -input ProjectAttachmentFilter { - """Checks for all expressions in this list.""" - and: [ProjectAttachmentFilter!] - - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter - - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter - - """Filter by the object’s `attachmentByAttachmentId` relation.""" - attachmentByAttachmentId: AttachmentFilter - - """Filter by the object’s `attachmentId` field.""" - attachmentId: IntFilter - - """Filter by the object’s `cifUserByArchivedBy` relation.""" - cifUserByArchivedBy: CifUserFilter - - """A related `cifUserByArchivedBy` exists.""" - cifUserByArchivedByExists: Boolean - - """Filter by the object’s `cifUserByCreatedBy` relation.""" - cifUserByCreatedBy: CifUserFilter - - """A related `cifUserByCreatedBy` exists.""" - cifUserByCreatedByExists: Boolean - - """Filter by the object’s `cifUserByUpdatedBy` relation.""" - cifUserByUpdatedBy: CifUserFilter - - """A related `cifUserByUpdatedBy` exists.""" - cifUserByUpdatedByExists: Boolean - - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter - - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter - - """Negates the expression.""" - not: ProjectAttachmentFilter - - """Checks for any expressions in this list.""" - or: [ProjectAttachmentFilter!] - - """Filter by the object’s `projectByProjectId` relation.""" - projectByProjectId: ProjectFilter - - """Filter by the object’s `projectId` field.""" - projectId: IntFilter - - """Filter by the object’s `rowId` field.""" - rowId: IntFilter - - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter - - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter -} - -"""An input for mutations affecting `ProjectAttachment`""" -input ProjectAttachmentInput { - """archived at timestamp""" - archivedAt: Datetime - - """archived by user id""" - archivedBy: Int - - """Foreign key to the attachment""" - attachmentId: Int! - - """created at timestamp""" - createdAt: Datetime - - """created by user id""" - createdBy: Int - - """Foreign key to the project""" - projectId: Int! - - """updated at timestamp""" - updatedAt: Datetime - - """updated by user id""" - updatedBy: Int -} - -""" -Represents an update to a `ProjectAttachment`. Fields that are set will be updated. -""" -input ProjectAttachmentPatch { - """archived at timestamp""" - archivedAt: Datetime - - """archived by user id""" - archivedBy: Int - - """Foreign key to the attachment""" - attachmentId: Int - - """created at timestamp""" - createdAt: Datetime - - """created by user id""" - createdBy: Int - - """Foreign key to the project""" - projectId: Int - - """updated at timestamp""" - updatedAt: Datetime - - """updated by user id""" - updatedBy: Int -} - -""" -A connection to a list of `Attachment` values, with data from `ProjectAttachment`. -""" -type ProjectAttachmentsByProjectAttachmentProjectIdAndAttachmentIdManyToManyConnection { - """ - A list of edges which contains the `Attachment`, info from the `ProjectAttachment`, and the cursor to aid in pagination. - """ - edges: [ProjectAttachmentsByProjectAttachmentProjectIdAndAttachmentIdManyToManyEdge!]! - - """A list of `Attachment` objects.""" - nodes: [Attachment]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `Attachment` you could get from the connection.""" - totalCount: Int! -} - -""" -A `Attachment` edge in the connection, with data from `ProjectAttachment`. -""" -type ProjectAttachmentsByProjectAttachmentProjectIdAndAttachmentIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `Attachment` at the end of the edge.""" - node: Attachment - - """Reads and enables pagination through a set of `ProjectAttachment`.""" - projectAttachmentsByAttachmentId( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ProjectAttachmentCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ProjectAttachmentFilter - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = NO - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `ProjectAttachment`.""" - orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectAttachmentsConnection! -} - -"""A connection to a list of `ProjectAttachment` values.""" -type ProjectAttachmentsConnection { - """ - A list of edges which contains the `ProjectAttachment` and cursor to aid in pagination. - """ - edges: [ProjectAttachmentsEdge!]! - - """A list of `ProjectAttachment` objects.""" - nodes: [ProjectAttachment]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """ - The count of *all* `ProjectAttachment` you could get from the connection. - """ - totalCount: Int! -} - -"""A `ProjectAttachment` edge in the connection.""" -type ProjectAttachmentsEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `ProjectAttachment` at the end of the edge.""" - node: ProjectAttachment -} - -"""Methods to use when ordering `ProjectAttachment`.""" -enum ProjectAttachmentsOrderBy { - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ATTACHMENT_BY_ATTACHMENT_ID__ARCHIVED_AT_ASC - ATTACHMENT_BY_ATTACHMENT_ID__ARCHIVED_AT_DESC - ATTACHMENT_BY_ATTACHMENT_ID__ARCHIVED_BY_ASC - ATTACHMENT_BY_ATTACHMENT_ID__ARCHIVED_BY_DESC - ATTACHMENT_BY_ATTACHMENT_ID__CREATED_AT_ASC - ATTACHMENT_BY_ATTACHMENT_ID__CREATED_AT_DESC - ATTACHMENT_BY_ATTACHMENT_ID__CREATED_BY_ASC - ATTACHMENT_BY_ATTACHMENT_ID__CREATED_BY_DESC - ATTACHMENT_BY_ATTACHMENT_ID__DESCRIPTION_ASC - ATTACHMENT_BY_ATTACHMENT_ID__DESCRIPTION_DESC - ATTACHMENT_BY_ATTACHMENT_ID__FILE_ASC - ATTACHMENT_BY_ATTACHMENT_ID__FILE_DESC - ATTACHMENT_BY_ATTACHMENT_ID__FILE_NAME_ASC - ATTACHMENT_BY_ATTACHMENT_ID__FILE_NAME_DESC - ATTACHMENT_BY_ATTACHMENT_ID__FILE_SIZE_ASC - ATTACHMENT_BY_ATTACHMENT_ID__FILE_SIZE_DESC - ATTACHMENT_BY_ATTACHMENT_ID__FILE_TYPE_ASC - ATTACHMENT_BY_ATTACHMENT_ID__FILE_TYPE_DESC - ATTACHMENT_BY_ATTACHMENT_ID__ID_ASC - ATTACHMENT_BY_ATTACHMENT_ID__ID_DESC - ATTACHMENT_BY_ATTACHMENT_ID__UPDATED_AT_ASC - ATTACHMENT_BY_ATTACHMENT_ID__UPDATED_AT_DESC - ATTACHMENT_BY_ATTACHMENT_ID__UPDATED_BY_ASC - ATTACHMENT_BY_ATTACHMENT_ID__UPDATED_BY_DESC - ATTACHMENT_ID_ASC - ATTACHMENT_ID_DESC - CIF_USER_BY_ARCHIVED_BY__ALLOW_SUB_UPDATE_ASC - CIF_USER_BY_ARCHIVED_BY__ALLOW_SUB_UPDATE_DESC - CIF_USER_BY_ARCHIVED_BY__ARCHIVED_AT_ASC - CIF_USER_BY_ARCHIVED_BY__ARCHIVED_AT_DESC - CIF_USER_BY_ARCHIVED_BY__ARCHIVED_BY_ASC - CIF_USER_BY_ARCHIVED_BY__ARCHIVED_BY_DESC - CIF_USER_BY_ARCHIVED_BY__CREATED_AT_ASC - CIF_USER_BY_ARCHIVED_BY__CREATED_AT_DESC - CIF_USER_BY_ARCHIVED_BY__CREATED_BY_ASC - CIF_USER_BY_ARCHIVED_BY__CREATED_BY_DESC - CIF_USER_BY_ARCHIVED_BY__EMAIL_ADDRESS_ASC - CIF_USER_BY_ARCHIVED_BY__EMAIL_ADDRESS_DESC - CIF_USER_BY_ARCHIVED_BY__FAMILY_NAME_ASC - CIF_USER_BY_ARCHIVED_BY__FAMILY_NAME_DESC - CIF_USER_BY_ARCHIVED_BY__FULL_NAME_ASC - CIF_USER_BY_ARCHIVED_BY__FULL_NAME_DESC - CIF_USER_BY_ARCHIVED_BY__GIVEN_NAME_ASC - CIF_USER_BY_ARCHIVED_BY__GIVEN_NAME_DESC - CIF_USER_BY_ARCHIVED_BY__ID_ASC - CIF_USER_BY_ARCHIVED_BY__ID_DESC - CIF_USER_BY_ARCHIVED_BY__SESSION_SUB_ASC - CIF_USER_BY_ARCHIVED_BY__SESSION_SUB_DESC - CIF_USER_BY_ARCHIVED_BY__UPDATED_AT_ASC - CIF_USER_BY_ARCHIVED_BY__UPDATED_AT_DESC - CIF_USER_BY_ARCHIVED_BY__UPDATED_BY_ASC - CIF_USER_BY_ARCHIVED_BY__UPDATED_BY_DESC - CIF_USER_BY_CREATED_BY__ALLOW_SUB_UPDATE_ASC - CIF_USER_BY_CREATED_BY__ALLOW_SUB_UPDATE_DESC - CIF_USER_BY_CREATED_BY__ARCHIVED_AT_ASC - CIF_USER_BY_CREATED_BY__ARCHIVED_AT_DESC - CIF_USER_BY_CREATED_BY__ARCHIVED_BY_ASC - CIF_USER_BY_CREATED_BY__ARCHIVED_BY_DESC - CIF_USER_BY_CREATED_BY__CREATED_AT_ASC - CIF_USER_BY_CREATED_BY__CREATED_AT_DESC - CIF_USER_BY_CREATED_BY__CREATED_BY_ASC - CIF_USER_BY_CREATED_BY__CREATED_BY_DESC - CIF_USER_BY_CREATED_BY__EMAIL_ADDRESS_ASC - CIF_USER_BY_CREATED_BY__EMAIL_ADDRESS_DESC - CIF_USER_BY_CREATED_BY__FAMILY_NAME_ASC - CIF_USER_BY_CREATED_BY__FAMILY_NAME_DESC - CIF_USER_BY_CREATED_BY__FULL_NAME_ASC - CIF_USER_BY_CREATED_BY__FULL_NAME_DESC - CIF_USER_BY_CREATED_BY__GIVEN_NAME_ASC - CIF_USER_BY_CREATED_BY__GIVEN_NAME_DESC - CIF_USER_BY_CREATED_BY__ID_ASC - CIF_USER_BY_CREATED_BY__ID_DESC - CIF_USER_BY_CREATED_BY__SESSION_SUB_ASC - CIF_USER_BY_CREATED_BY__SESSION_SUB_DESC - CIF_USER_BY_CREATED_BY__UPDATED_AT_ASC - CIF_USER_BY_CREATED_BY__UPDATED_AT_DESC - CIF_USER_BY_CREATED_BY__UPDATED_BY_ASC - CIF_USER_BY_CREATED_BY__UPDATED_BY_DESC - CIF_USER_BY_UPDATED_BY__ALLOW_SUB_UPDATE_ASC - CIF_USER_BY_UPDATED_BY__ALLOW_SUB_UPDATE_DESC - CIF_USER_BY_UPDATED_BY__ARCHIVED_AT_ASC - CIF_USER_BY_UPDATED_BY__ARCHIVED_AT_DESC - CIF_USER_BY_UPDATED_BY__ARCHIVED_BY_ASC - CIF_USER_BY_UPDATED_BY__ARCHIVED_BY_DESC - CIF_USER_BY_UPDATED_BY__CREATED_AT_ASC - CIF_USER_BY_UPDATED_BY__CREATED_AT_DESC - CIF_USER_BY_UPDATED_BY__CREATED_BY_ASC - CIF_USER_BY_UPDATED_BY__CREATED_BY_DESC - CIF_USER_BY_UPDATED_BY__EMAIL_ADDRESS_ASC - CIF_USER_BY_UPDATED_BY__EMAIL_ADDRESS_DESC - CIF_USER_BY_UPDATED_BY__FAMILY_NAME_ASC - CIF_USER_BY_UPDATED_BY__FAMILY_NAME_DESC - CIF_USER_BY_UPDATED_BY__FULL_NAME_ASC - CIF_USER_BY_UPDATED_BY__FULL_NAME_DESC - CIF_USER_BY_UPDATED_BY__GIVEN_NAME_ASC - CIF_USER_BY_UPDATED_BY__GIVEN_NAME_DESC - CIF_USER_BY_UPDATED_BY__ID_ASC - CIF_USER_BY_UPDATED_BY__ID_DESC - CIF_USER_BY_UPDATED_BY__SESSION_SUB_ASC - CIF_USER_BY_UPDATED_BY__SESSION_SUB_DESC - CIF_USER_BY_UPDATED_BY__UPDATED_AT_ASC - CIF_USER_BY_UPDATED_BY__UPDATED_AT_DESC - CIF_USER_BY_UPDATED_BY__UPDATED_BY_ASC - CIF_USER_BY_UPDATED_BY__UPDATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - CREATED_BY_ASC - CREATED_BY_DESC - ID_ASC - ID_DESC - NATURAL - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC - PROJECT_BY_PROJECT_ID__ADDITIONAL_SECTOR_INFORMATION_ASC - PROJECT_BY_PROJECT_ID__ADDITIONAL_SECTOR_INFORMATION_DESC - PROJECT_BY_PROJECT_ID__ARCHIVED_AT_ASC - PROJECT_BY_PROJECT_ID__ARCHIVED_AT_DESC - PROJECT_BY_PROJECT_ID__ARCHIVED_BY_ASC - PROJECT_BY_PROJECT_ID__ARCHIVED_BY_DESC - PROJECT_BY_PROJECT_ID__COMMENTS_ASC - PROJECT_BY_PROJECT_ID__COMMENTS_DESC - PROJECT_BY_PROJECT_ID__CONTRACT_NUMBER_ASC - PROJECT_BY_PROJECT_ID__CONTRACT_NUMBER_DESC - PROJECT_BY_PROJECT_ID__CREATED_AT_ASC - PROJECT_BY_PROJECT_ID__CREATED_AT_DESC - PROJECT_BY_PROJECT_ID__CREATED_BY_ASC - PROJECT_BY_PROJECT_ID__CREATED_BY_DESC - PROJECT_BY_PROJECT_ID__FUNDING_STREAM_RFP_ID_ASC - PROJECT_BY_PROJECT_ID__FUNDING_STREAM_RFP_ID_DESC - PROJECT_BY_PROJECT_ID__ID_ASC - PROJECT_BY_PROJECT_ID__ID_DESC - PROJECT_BY_PROJECT_ID__NEXT_MILESTONE_DUE_DATE_ASC - PROJECT_BY_PROJECT_ID__NEXT_MILESTONE_DUE_DATE_DESC - PROJECT_BY_PROJECT_ID__OPERATOR_ID_ASC - PROJECT_BY_PROJECT_ID__OPERATOR_ID_DESC - PROJECT_BY_PROJECT_ID__PROJECT_NAME_ASC - PROJECT_BY_PROJECT_ID__PROJECT_NAME_DESC - PROJECT_BY_PROJECT_ID__PROJECT_STATUS_ID_ASC - PROJECT_BY_PROJECT_ID__PROJECT_STATUS_ID_DESC - PROJECT_BY_PROJECT_ID__PROJECT_TYPE_ASC - PROJECT_BY_PROJECT_ID__PROJECT_TYPE_DESC - PROJECT_BY_PROJECT_ID__PROPOSAL_REFERENCE_ASC - PROJECT_BY_PROJECT_ID__PROPOSAL_REFERENCE_DESC - PROJECT_BY_PROJECT_ID__SCORE_ASC - PROJECT_BY_PROJECT_ID__SCORE_DESC - PROJECT_BY_PROJECT_ID__SECTOR_NAME_ASC - PROJECT_BY_PROJECT_ID__SECTOR_NAME_DESC - PROJECT_BY_PROJECT_ID__SUMMARY_ASC - PROJECT_BY_PROJECT_ID__SUMMARY_DESC - PROJECT_BY_PROJECT_ID__TOTAL_FUNDING_REQUEST_ASC - PROJECT_BY_PROJECT_ID__TOTAL_FUNDING_REQUEST_DESC - PROJECT_BY_PROJECT_ID__UPDATED_AT_ASC - PROJECT_BY_PROJECT_ID__UPDATED_AT_DESC - PROJECT_BY_PROJECT_ID__UPDATED_BY_ASC - PROJECT_BY_PROJECT_ID__UPDATED_BY_DESC - PROJECT_ID_ASC - PROJECT_ID_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC -} - """ A connection to a list of `ChangeStatus` values, with data from `ProjectRevision`. """ @@ -56722,13 +54745,13 @@ type ProjectCifUsersByAdditionalFundingSourceProjectIdAndUpdatedByManyToManyEdge } """ -A connection to a list of `CifUser` values, with data from `FundingParameter`. +A connection to a list of `CifUser` values, with data from `Attachment`. """ -type ProjectCifUsersByFundingParameterProjectIdAndArchivedByManyToManyConnection { +type ProjectCifUsersByAttachmentProjectIdAndArchivedByManyToManyConnection { """ - A list of edges which contains the `CifUser`, info from the `FundingParameter`, and the cursor to aid in pagination. + A list of edges which contains the `CifUser`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [ProjectCifUsersByFundingParameterProjectIdAndArchivedByManyToManyEdge!]! + edges: [ProjectCifUsersByAttachmentProjectIdAndArchivedByManyToManyEdge!]! """A list of `CifUser` objects.""" nodes: [CifUser]! @@ -56740,13 +54763,10 @@ type ProjectCifUsersByFundingParameterProjectIdAndArchivedByManyToManyConnection totalCount: Int! } -"""A `CifUser` edge in the connection, with data from `FundingParameter`.""" -type ProjectCifUsersByFundingParameterProjectIdAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """Reads and enables pagination through a set of `FundingParameter`.""" - fundingParametersByArchivedBy( +"""A `CifUser` edge in the connection, with data from `Attachment`.""" +type ProjectCifUsersByAttachmentProjectIdAndArchivedByManyToManyEdge { + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -56756,12 +54776,12 @@ type ProjectCifUsersByFundingParameterProjectIdAndArchivedByManyToManyEdge { """ A condition to be used in determining which values should be returned by the collection. """ - condition: FundingParameterCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FundingParameterFilter + filter: AttachmentFilter """Only read the first `n` values of the set.""" first: Int @@ -56780,22 +54800,25 @@ type ProjectCifUsersByFundingParameterProjectIdAndArchivedByManyToManyEdge { """ offset: Int - """The method to use when ordering `FundingParameter`.""" - orderBy: [FundingParametersOrderBy!] = [PRIMARY_KEY_ASC] - ): FundingParametersConnection! + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + ): AttachmentsConnection! + + """A cursor for use in pagination.""" + cursor: Cursor """The `CifUser` at the end of the edge.""" node: CifUser } """ -A connection to a list of `CifUser` values, with data from `FundingParameter`. +A connection to a list of `CifUser` values, with data from `Attachment`. """ -type ProjectCifUsersByFundingParameterProjectIdAndCreatedByManyToManyConnection { +type ProjectCifUsersByAttachmentProjectIdAndCreatedByManyToManyConnection { """ - A list of edges which contains the `CifUser`, info from the `FundingParameter`, and the cursor to aid in pagination. + A list of edges which contains the `CifUser`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [ProjectCifUsersByFundingParameterProjectIdAndCreatedByManyToManyEdge!]! + edges: [ProjectCifUsersByAttachmentProjectIdAndCreatedByManyToManyEdge!]! """A list of `CifUser` objects.""" nodes: [CifUser]! @@ -56807,13 +54830,10 @@ type ProjectCifUsersByFundingParameterProjectIdAndCreatedByManyToManyConnection totalCount: Int! } -"""A `CifUser` edge in the connection, with data from `FundingParameter`.""" -type ProjectCifUsersByFundingParameterProjectIdAndCreatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """Reads and enables pagination through a set of `FundingParameter`.""" - fundingParametersByCreatedBy( +"""A `CifUser` edge in the connection, with data from `Attachment`.""" +type ProjectCifUsersByAttachmentProjectIdAndCreatedByManyToManyEdge { + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -56823,12 +54843,12 @@ type ProjectCifUsersByFundingParameterProjectIdAndCreatedByManyToManyEdge { """ A condition to be used in determining which values should be returned by the collection. """ - condition: FundingParameterCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FundingParameterFilter + filter: AttachmentFilter """Only read the first `n` values of the set.""" first: Int @@ -56847,22 +54867,25 @@ type ProjectCifUsersByFundingParameterProjectIdAndCreatedByManyToManyEdge { """ offset: Int - """The method to use when ordering `FundingParameter`.""" - orderBy: [FundingParametersOrderBy!] = [PRIMARY_KEY_ASC] - ): FundingParametersConnection! + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + ): AttachmentsConnection! + + """A cursor for use in pagination.""" + cursor: Cursor """The `CifUser` at the end of the edge.""" node: CifUser } """ -A connection to a list of `CifUser` values, with data from `FundingParameter`. +A connection to a list of `CifUser` values, with data from `Attachment`. """ -type ProjectCifUsersByFundingParameterProjectIdAndUpdatedByManyToManyConnection { +type ProjectCifUsersByAttachmentProjectIdAndUpdatedByManyToManyConnection { """ - A list of edges which contains the `CifUser`, info from the `FundingParameter`, and the cursor to aid in pagination. + A list of edges which contains the `CifUser`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [ProjectCifUsersByFundingParameterProjectIdAndUpdatedByManyToManyEdge!]! + edges: [ProjectCifUsersByAttachmentProjectIdAndUpdatedByManyToManyEdge!]! """A list of `CifUser` objects.""" nodes: [CifUser]! @@ -56874,13 +54897,10 @@ type ProjectCifUsersByFundingParameterProjectIdAndUpdatedByManyToManyConnection totalCount: Int! } -"""A `CifUser` edge in the connection, with data from `FundingParameter`.""" -type ProjectCifUsersByFundingParameterProjectIdAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """Reads and enables pagination through a set of `FundingParameter`.""" - fundingParametersByUpdatedBy( +"""A `CifUser` edge in the connection, with data from `Attachment`.""" +type ProjectCifUsersByAttachmentProjectIdAndUpdatedByManyToManyEdge { + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -56890,12 +54910,12 @@ type ProjectCifUsersByFundingParameterProjectIdAndUpdatedByManyToManyEdge { """ A condition to be used in determining which values should be returned by the collection. """ - condition: FundingParameterCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FundingParameterFilter + filter: AttachmentFilter """Only read the first `n` values of the set.""" first: Int @@ -56914,22 +54934,25 @@ type ProjectCifUsersByFundingParameterProjectIdAndUpdatedByManyToManyEdge { """ offset: Int - """The method to use when ordering `FundingParameter`.""" - orderBy: [FundingParametersOrderBy!] = [PRIMARY_KEY_ASC] - ): FundingParametersConnection! + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + ): AttachmentsConnection! + + """A cursor for use in pagination.""" + cursor: Cursor """The `CifUser` at the end of the edge.""" node: CifUser } """ -A connection to a list of `CifUser` values, with data from `ProjectAttachment`. +A connection to a list of `CifUser` values, with data from `FundingParameter`. """ -type ProjectCifUsersByProjectAttachmentProjectIdAndArchivedByManyToManyConnection { +type ProjectCifUsersByFundingParameterProjectIdAndArchivedByManyToManyConnection { """ - A list of edges which contains the `CifUser`, info from the `ProjectAttachment`, and the cursor to aid in pagination. + A list of edges which contains the `CifUser`, info from the `FundingParameter`, and the cursor to aid in pagination. """ - edges: [ProjectCifUsersByProjectAttachmentProjectIdAndArchivedByManyToManyEdge!]! + edges: [ProjectCifUsersByFundingParameterProjectIdAndArchivedByManyToManyEdge!]! """A list of `CifUser` objects.""" nodes: [CifUser]! @@ -56941,18 +54964,13 @@ type ProjectCifUsersByProjectAttachmentProjectIdAndArchivedByManyToManyConnectio totalCount: Int! } -""" -A `CifUser` edge in the connection, with data from `ProjectAttachment`. -""" -type ProjectCifUsersByProjectAttachmentProjectIdAndArchivedByManyToManyEdge { +"""A `CifUser` edge in the connection, with data from `FundingParameter`.""" +type ProjectCifUsersByFundingParameterProjectIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CifUser` at the end of the edge.""" - node: CifUser - - """Reads and enables pagination through a set of `ProjectAttachment`.""" - projectAttachmentsByArchivedBy( + """Reads and enables pagination through a set of `FundingParameter`.""" + fundingParametersByArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -56962,12 +54980,12 @@ type ProjectCifUsersByProjectAttachmentProjectIdAndArchivedByManyToManyEdge { """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectAttachmentCondition + condition: FundingParameterCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectAttachmentFilter + filter: FundingParameterFilter """Only read the first `n` values of the set.""" first: Int @@ -56986,19 +55004,22 @@ type ProjectCifUsersByProjectAttachmentProjectIdAndArchivedByManyToManyEdge { """ offset: Int - """The method to use when ordering `ProjectAttachment`.""" - orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectAttachmentsConnection! + """The method to use when ordering `FundingParameter`.""" + orderBy: [FundingParametersOrderBy!] = [PRIMARY_KEY_ASC] + ): FundingParametersConnection! + + """The `CifUser` at the end of the edge.""" + node: CifUser } """ -A connection to a list of `CifUser` values, with data from `ProjectAttachment`. +A connection to a list of `CifUser` values, with data from `FundingParameter`. """ -type ProjectCifUsersByProjectAttachmentProjectIdAndCreatedByManyToManyConnection { +type ProjectCifUsersByFundingParameterProjectIdAndCreatedByManyToManyConnection { """ - A list of edges which contains the `CifUser`, info from the `ProjectAttachment`, and the cursor to aid in pagination. + A list of edges which contains the `CifUser`, info from the `FundingParameter`, and the cursor to aid in pagination. """ - edges: [ProjectCifUsersByProjectAttachmentProjectIdAndCreatedByManyToManyEdge!]! + edges: [ProjectCifUsersByFundingParameterProjectIdAndCreatedByManyToManyEdge!]! """A list of `CifUser` objects.""" nodes: [CifUser]! @@ -57010,18 +55031,13 @@ type ProjectCifUsersByProjectAttachmentProjectIdAndCreatedByManyToManyConnection totalCount: Int! } -""" -A `CifUser` edge in the connection, with data from `ProjectAttachment`. -""" -type ProjectCifUsersByProjectAttachmentProjectIdAndCreatedByManyToManyEdge { +"""A `CifUser` edge in the connection, with data from `FundingParameter`.""" +type ProjectCifUsersByFundingParameterProjectIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CifUser` at the end of the edge.""" - node: CifUser - - """Reads and enables pagination through a set of `ProjectAttachment`.""" - projectAttachmentsByCreatedBy( + """Reads and enables pagination through a set of `FundingParameter`.""" + fundingParametersByCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -57031,12 +55047,12 @@ type ProjectCifUsersByProjectAttachmentProjectIdAndCreatedByManyToManyEdge { """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectAttachmentCondition + condition: FundingParameterCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectAttachmentFilter + filter: FundingParameterFilter """Only read the first `n` values of the set.""" first: Int @@ -57055,19 +55071,22 @@ type ProjectCifUsersByProjectAttachmentProjectIdAndCreatedByManyToManyEdge { """ offset: Int - """The method to use when ordering `ProjectAttachment`.""" - orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectAttachmentsConnection! + """The method to use when ordering `FundingParameter`.""" + orderBy: [FundingParametersOrderBy!] = [PRIMARY_KEY_ASC] + ): FundingParametersConnection! + + """The `CifUser` at the end of the edge.""" + node: CifUser } """ -A connection to a list of `CifUser` values, with data from `ProjectAttachment`. +A connection to a list of `CifUser` values, with data from `FundingParameter`. """ -type ProjectCifUsersByProjectAttachmentProjectIdAndUpdatedByManyToManyConnection { +type ProjectCifUsersByFundingParameterProjectIdAndUpdatedByManyToManyConnection { """ - A list of edges which contains the `CifUser`, info from the `ProjectAttachment`, and the cursor to aid in pagination. + A list of edges which contains the `CifUser`, info from the `FundingParameter`, and the cursor to aid in pagination. """ - edges: [ProjectCifUsersByProjectAttachmentProjectIdAndUpdatedByManyToManyEdge!]! + edges: [ProjectCifUsersByFundingParameterProjectIdAndUpdatedByManyToManyEdge!]! """A list of `CifUser` objects.""" nodes: [CifUser]! @@ -57079,18 +55098,13 @@ type ProjectCifUsersByProjectAttachmentProjectIdAndUpdatedByManyToManyConnection totalCount: Int! } -""" -A `CifUser` edge in the connection, with data from `ProjectAttachment`. -""" -type ProjectCifUsersByProjectAttachmentProjectIdAndUpdatedByManyToManyEdge { +"""A `CifUser` edge in the connection, with data from `FundingParameter`.""" +type ProjectCifUsersByFundingParameterProjectIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CifUser` at the end of the edge.""" - node: CifUser - - """Reads and enables pagination through a set of `ProjectAttachment`.""" - projectAttachmentsByUpdatedBy( + """Reads and enables pagination through a set of `FundingParameter`.""" + fundingParametersByUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -57100,12 +55114,12 @@ type ProjectCifUsersByProjectAttachmentProjectIdAndUpdatedByManyToManyEdge { """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectAttachmentCondition + condition: FundingParameterCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectAttachmentFilter + filter: FundingParameterFilter """Only read the first `n` values of the set.""" first: Int @@ -57124,9 +55138,12 @@ type ProjectCifUsersByProjectAttachmentProjectIdAndUpdatedByManyToManyEdge { """ offset: Int - """The method to use when ordering `ProjectAttachment`.""" - orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectAttachmentsConnection! + """The method to use when ordering `FundingParameter`.""" + orderBy: [FundingParametersOrderBy!] = [PRIMARY_KEY_ASC] + ): FundingParametersConnection! + + """The `CifUser` at the end of the edge.""" + node: CifUser } """ @@ -58514,6 +56531,12 @@ input ProjectFilter { """Filter by the object’s `archivedBy` field.""" archivedBy: IntFilter + """Filter by the object’s `attachmentsByProjectId` relation.""" + attachmentsByProjectId: ProjectToManyAttachmentFilter + + """Some related `attachmentsByProjectId` exist.""" + attachmentsByProjectIdExist: Boolean + """Filter by the object’s `cifUserByArchivedBy` relation.""" cifUserByArchivedBy: CifUserFilter @@ -58558,9 +56581,6 @@ input ProjectFilter { """Filter by the object’s `fundingStreamRfpId` field.""" fundingStreamRfpId: IntFilter - """Filter by the object’s `milestoneStatus` field.""" - milestoneStatus: StringFilter - """Filter by the object’s `nextMilestoneDueDate` field.""" nextMilestoneDueDate: DatetimeFilter @@ -58579,12 +56599,6 @@ input ProjectFilter { """Filter by the object’s `primaryManagers` field.""" primaryManagers: StringFilter - """Filter by the object’s `projectAttachmentsByProjectId` relation.""" - projectAttachmentsByProjectId: ProjectToManyProjectAttachmentFilter - - """Some related `projectAttachmentsByProjectId` exist.""" - projectAttachmentsByProjectIdExist: Boolean - """Filter by the object’s `projectContactsByProjectId` relation.""" projectContactsByProjectId: ProjectToManyProjectContactFilter @@ -60094,6 +58108,73 @@ type ProjectProjectManagerLabelsByProjectManagerProjectIdAndProjectManagerLabelI ): ProjectManagersConnection! } +""" +A connection to a list of `ProjectStatus` values, with data from `Attachment`. +""" +type ProjectProjectStatusesByAttachmentProjectIdAndProjectStatusIdManyToManyConnection { + """ + A list of edges which contains the `ProjectStatus`, info from the `Attachment`, and the cursor to aid in pagination. + """ + edges: [ProjectProjectStatusesByAttachmentProjectIdAndProjectStatusIdManyToManyEdge!]! + + """A list of `ProjectStatus` objects.""" + nodes: [ProjectStatus]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `ProjectStatus` you could get from the connection.""" + totalCount: Int! +} + +"""A `ProjectStatus` edge in the connection, with data from `Attachment`.""" +type ProjectProjectStatusesByAttachmentProjectIdAndProjectStatusIdManyToManyEdge { + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByProjectStatusId( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + 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 + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = NO + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + ): AttachmentsConnection! + + """A cursor for use in pagination.""" + cursor: Cursor + + """The `ProjectStatus` at the end of the edge.""" + node: ProjectStatus +} + """ A connection to a list of `ReportType` values, with data from `ReportingRequirement`. """ @@ -60204,6 +58285,34 @@ type ProjectRevision implements Node { orderBy: [AmendmentTypesOrderBy!] = [PRIMARY_KEY_ASC] ): ProjectRevisionAmendmentTypesByProjectRevisionAmendmentTypeProjectRevisionIdAndAmendmentTypeManyToManyConnection! + """ + Computed column to calculate the anticipated amount of funding for a project by fiscal year + """ + anticipatedFundingAmountPerFiscalYear( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: SumByFiscalYearFilter + + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + ): SumByFiscalYearsConnection! + """Explanation of why the revision was made""" changeReason: String @@ -60538,7 +58647,7 @@ type ProjectRevision implements Node { ): FormChangesConnection! """ - Computed column to dynamically retrieve the form_change record relating to the project_revision from a given table + Computed column to dynamically retrieve the form_change records relating to the project_revision from a given table """ formChangesFor( """Read all values in the set after (below) this cursor.""" @@ -60620,34 +58729,6 @@ type ProjectRevision implements Node { """ isFirstRevision: Boolean - """Reads and enables pagination through a set of `FormChange`.""" - latestCommittedFormChangesFor( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormChangeFilter - - """Only read the first `n` values of the set.""" - first: Int - formDataTableName: String! - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - reportType: String - ): FormChangesConnection! - """ Computed column to return both form completion statuses and reporting requirement statuses for individual milestones """ @@ -60757,6 +58838,9 @@ type ProjectRevision implements Node { orderBy: [ProjectRevisionAmendmentTypesOrderBy!] = [PRIMARY_KEY_ASC] ): ProjectRevisionAmendmentTypesConnection! + """Computed column to determine the rank of a project""" + rank: Int + """The status of the revision of a project""" revisionStatus: String! @@ -60781,6 +58865,37 @@ type ProjectRevision implements Node { """ tasklistStatusFor(formDataTableName: String!, jsonMatcher: String): String + """ + Computed column to return the TEIMP payment amount, based on: + - X% being the TEIMP payment percentage calculated from the emissions performance (Schedule G) + - Gross and Net payment amounts to date + Formula: + TEIMP payment amount = X% * (Gross payment to date - Net payment to date) + + """ + teimpPaymentAmount: BigFloat + + """ + Computed column to return the TEIMP payment percentage, calculated as specified in the schedule G. + The calculation for determining emission intensity performance uses three metrics and a calculation: + Metrics: + - BEI: Baseline Emission Intensity + - PEI: Post-Project Emission Intensity + - TEI: Target Emission Intensity + Calculation: + - Emission Intensity Payment Percentage = (BEI - PEI) / (BEI - TEI) * 100 + + """ + teimpPaymentPercentage: BigFloat + + """ + Computed column to return the total project value. + Calculation: + - Total Project Value = Maximum Funding Amount + Proponent Cost + Additional Funding Amount(s) + + """ + totalProjectValue: BigFloat + """ Returns the row number of the project revision within the scope of a project and among all other revisions of the same type. """ @@ -61784,6 +59899,9 @@ input ProjectRevisionFilter { """Some related `projectRevisionAmendmentTypesByProjectRevisionId` exist.""" projectRevisionAmendmentTypesByProjectRevisionIdExist: Boolean + """Filter by the object’s `rank` field.""" + rank: IntFilter + """Filter by the object’s `revisionStatus` field.""" revisionStatus: StringFilter @@ -61799,6 +59917,15 @@ input ProjectRevisionFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter + """Filter by the object’s `teimpPaymentAmount` field.""" + teimpPaymentAmount: BigFloatFilter + + """Filter by the object’s `teimpPaymentPercentage` field.""" + teimpPaymentPercentage: BigFloatFilter + + """Filter by the object’s `totalProjectValue` field.""" + totalProjectValue: BigFloatFilter + """Filter by the object’s `typeRowNumber` field.""" typeRowNumber: IntFilter @@ -62326,8 +60453,6 @@ enum ProjectRevisionsOrderBy { REVISION_STATUS_BY_REVISION_STATUS__IS_AMENDMENT_SPECIFIC_DESC REVISION_STATUS_BY_REVISION_STATUS__NAME_ASC REVISION_STATUS_BY_REVISION_STATUS__NAME_DESC - REVISION_STATUS_BY_REVISION_STATUS__SORTING_ORDER_ASC - REVISION_STATUS_BY_REVISION_STATUS__SORTING_ORDER_DESC REVISION_STATUS_BY_REVISION_STATUS__UPDATED_AT_ASC REVISION_STATUS_BY_REVISION_STATUS__UPDATED_AT_DESC REVISION_STATUS_BY_REVISION_STATUS__UPDATED_BY_ASC @@ -62363,6 +60488,45 @@ type ProjectStatus implements Node { """archived by user id""" archivedBy: Int + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByProjectStatusId( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + 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 + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = INHERIT + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + ): AttachmentsConnection! + """Reads a single `CifUser` that is related to this `ProjectStatus`.""" cifUserByArchivedBy: CifUser @@ -62372,6 +60536,123 @@ type ProjectStatus implements Node { """Reads a single `CifUser` that is related to this `ProjectStatus`.""" cifUserByUpdatedBy: CifUser + """Reads and enables pagination through a set of `CifUser`.""" + cifUsersByAttachmentProjectStatusIdAndArchivedBy( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CifUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CifUserFilter + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = NO + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `CifUser`.""" + orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectStatusCifUsersByAttachmentProjectStatusIdAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `CifUser`.""" + cifUsersByAttachmentProjectStatusIdAndCreatedBy( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CifUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CifUserFilter + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = NO + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `CifUser`.""" + orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectStatusCifUsersByAttachmentProjectStatusIdAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CifUser`.""" + cifUsersByAttachmentProjectStatusIdAndUpdatedBy( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CifUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CifUserFilter + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = NO + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `CifUser`.""" + orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectStatusCifUsersByAttachmentProjectStatusIdAndUpdatedByManyToManyConnection! + """Reads and enables pagination through a set of `CifUser`.""" cifUsersByFundingStreamProjectStatusProjectStatusIdAndArchivedBy( """Read all values in the set after (below) this cursor.""" @@ -62820,6 +61101,45 @@ type ProjectStatus implements Node { orderBy: [ProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] ): ProjectStatusProjectTypesByProjectProjectStatusIdAndProjectTypeManyToManyConnection! + """Reads and enables pagination through a set of `Project`.""" + projectsByAttachmentProjectStatusIdAndProjectId( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ProjectCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ProjectFilter + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = NO + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `Project`.""" + orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectStatusProjectsByAttachmentProjectStatusIdAndProjectIdManyToManyConnection! + """Reads and enables pagination through a set of `Project`.""" projectsByProjectStatusId( """Read all values in the set after (below) this cursor.""" @@ -62908,6 +61228,207 @@ type ProjectStatus implements Node { updatedBy: Int } +""" +A connection to a list of `CifUser` values, with data from `Attachment`. +""" +type ProjectStatusCifUsersByAttachmentProjectStatusIdAndArchivedByManyToManyConnection { + """ + A list of edges which contains the `CifUser`, info from the `Attachment`, and the cursor to aid in pagination. + """ + edges: [ProjectStatusCifUsersByAttachmentProjectStatusIdAndArchivedByManyToManyEdge!]! + + """A list of `CifUser` objects.""" + nodes: [CifUser]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CifUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CifUser` edge in the connection, with data from `Attachment`.""" +type ProjectStatusCifUsersByAttachmentProjectStatusIdAndArchivedByManyToManyEdge { + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByArchivedBy( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + 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 + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = NO + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + ): AttachmentsConnection! + + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CifUser` at the end of the edge.""" + node: CifUser +} + +""" +A connection to a list of `CifUser` values, with data from `Attachment`. +""" +type ProjectStatusCifUsersByAttachmentProjectStatusIdAndCreatedByManyToManyConnection { + """ + A list of edges which contains the `CifUser`, info from the `Attachment`, and the cursor to aid in pagination. + """ + edges: [ProjectStatusCifUsersByAttachmentProjectStatusIdAndCreatedByManyToManyEdge!]! + + """A list of `CifUser` objects.""" + nodes: [CifUser]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CifUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CifUser` edge in the connection, with data from `Attachment`.""" +type ProjectStatusCifUsersByAttachmentProjectStatusIdAndCreatedByManyToManyEdge { + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByCreatedBy( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + 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 + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = NO + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + ): AttachmentsConnection! + + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CifUser` at the end of the edge.""" + node: CifUser +} + +""" +A connection to a list of `CifUser` values, with data from `Attachment`. +""" +type ProjectStatusCifUsersByAttachmentProjectStatusIdAndUpdatedByManyToManyConnection { + """ + A list of edges which contains the `CifUser`, info from the `Attachment`, and the cursor to aid in pagination. + """ + edges: [ProjectStatusCifUsersByAttachmentProjectStatusIdAndUpdatedByManyToManyEdge!]! + + """A list of `CifUser` objects.""" + nodes: [CifUser]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CifUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CifUser` edge in the connection, with data from `Attachment`.""" +type ProjectStatusCifUsersByAttachmentProjectStatusIdAndUpdatedByManyToManyEdge { + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByUpdatedBy( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + 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 + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = NO + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + ): AttachmentsConnection! + + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CifUser` at the end of the edge.""" + node: CifUser +} + """ A connection to a list of `CifUser` values, with data from `FundingStreamProjectStatus`. """ @@ -63362,6 +61883,12 @@ input ProjectStatusFilter { """Filter by the object’s `archivedBy` field.""" archivedBy: IntFilter + """Filter by the object’s `attachmentsByProjectStatusId` relation.""" + attachmentsByProjectStatusId: ProjectStatusToManyAttachmentFilter + + """Some related `attachmentsByProjectStatusId` exist.""" + attachmentsByProjectStatusIdExist: Boolean + """Filter by the object’s `cifUserByArchivedBy` relation.""" cifUserByArchivedBy: CifUserFilter @@ -63655,164 +62182,251 @@ type ProjectStatusOperatorsByProjectProjectStatusIdAndOperatorIdManyToManyEdge { } """ -Represents an update to a `ProjectStatus`. Fields that are set will be updated. -""" -input ProjectStatusPatch { - """archived at timestamp""" - archivedAt: Datetime - - """archived by user id""" - archivedBy: Int - - """created at timestamp""" - createdAt: Datetime - - """created by user id""" - createdBy: Int - - """Description of the project_status""" - description: String - - """Name of the project_status""" - name: String - - """updated at timestamp""" - updatedAt: Datetime - - """updated by user id""" - updatedBy: Int -} - -""" -A connection to a list of `ProjectType` values, with data from `Project`. +Represents an update to a `ProjectStatus`. Fields that are set will be updated. +""" +input ProjectStatusPatch { + """archived at timestamp""" + archivedAt: Datetime + + """archived by user id""" + archivedBy: Int + + """created at timestamp""" + createdAt: Datetime + + """created by user id""" + createdBy: Int + + """Description of the project_status""" + description: String + + """Name of the project_status""" + name: String + + """updated at timestamp""" + updatedAt: Datetime + + """updated by user id""" + updatedBy: Int +} + +""" +A connection to a list of `ProjectType` values, with data from `Project`. +""" +type ProjectStatusProjectTypesByProjectProjectStatusIdAndProjectTypeManyToManyConnection { + """ + A list of edges which contains the `ProjectType`, info from the `Project`, and the cursor to aid in pagination. + """ + edges: [ProjectStatusProjectTypesByProjectProjectStatusIdAndProjectTypeManyToManyEdge!]! + + """A list of `ProjectType` objects.""" + nodes: [ProjectType]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `ProjectType` you could get from the connection.""" + totalCount: Int! +} + +"""A `ProjectType` edge in the connection, with data from `Project`.""" +type ProjectStatusProjectTypesByProjectProjectStatusIdAndProjectTypeManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `ProjectType` at the end of the edge.""" + node: ProjectType + + """Reads and enables pagination through a set of `Project`.""" + projectsByProjectType( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ProjectCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ProjectFilter + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = NO + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `Project`.""" + orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectsConnection! +} + +""" +A connection to a list of `Project` values, with data from `Attachment`. +""" +type ProjectStatusProjectsByAttachmentProjectStatusIdAndProjectIdManyToManyConnection { + """ + A list of edges which contains the `Project`, info from the `Attachment`, and the cursor to aid in pagination. + """ + edges: [ProjectStatusProjectsByAttachmentProjectStatusIdAndProjectIdManyToManyEdge!]! + + """A list of `Project` objects.""" + nodes: [Project]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `Project` you could get from the connection.""" + totalCount: Int! +} + +"""A `Project` edge in the connection, with data from `Attachment`.""" +type ProjectStatusProjectsByAttachmentProjectStatusIdAndProjectIdManyToManyEdge { + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByProjectId( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + 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 + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = NO + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + ): AttachmentsConnection! + + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Project` at the end of the edge.""" + node: Project +} + +"""A connection to a list of `Sector` values, with data from `Project`.""" +type ProjectStatusSectorsByProjectProjectStatusIdAndSectorNameManyToManyConnection { + """ + A list of edges which contains the `Sector`, info from the `Project`, and the cursor to aid in pagination. + """ + edges: [ProjectStatusSectorsByProjectProjectStatusIdAndSectorNameManyToManyEdge!]! + + """A list of `Sector` objects.""" + nodes: [Sector]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `Sector` you could get from the connection.""" + totalCount: Int! +} + +"""A `Sector` edge in the connection, with data from `Project`.""" +type ProjectStatusSectorsByProjectProjectStatusIdAndSectorNameManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Sector` at the end of the edge.""" + node: Sector + + """Reads and enables pagination through a set of `Project`.""" + projectsBySectorName( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ProjectCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ProjectFilter + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = NO + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `Project`.""" + orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectsConnection! +} + +""" +A filter to be used against many `Attachment` object types. All fields are combined with a logical ‘and.’ """ -type ProjectStatusProjectTypesByProjectProjectStatusIdAndProjectTypeManyToManyConnection { +input ProjectStatusToManyAttachmentFilter { """ - A list of edges which contains the `ProjectType`, info from the `Project`, and the cursor to aid in pagination. + Every related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - edges: [ProjectStatusProjectTypesByProjectProjectStatusIdAndProjectTypeManyToManyEdge!]! - - """A list of `ProjectType` objects.""" - nodes: [ProjectType]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `ProjectType` you could get from the connection.""" - totalCount: Int! -} - -"""A `ProjectType` edge in the connection, with data from `Project`.""" -type ProjectStatusProjectTypesByProjectProjectStatusIdAndProjectTypeManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `ProjectType` at the end of the edge.""" - node: ProjectType - - """Reads and enables pagination through a set of `Project`.""" - projectsByProjectType( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ProjectCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ProjectFilter - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = NO - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `Project`.""" - orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectsConnection! -} + every: AttachmentFilter -"""A connection to a list of `Sector` values, with data from `Project`.""" -type ProjectStatusSectorsByProjectProjectStatusIdAndSectorNameManyToManyConnection { """ - A list of edges which contains the `Sector`, info from the `Project`, and the cursor to aid in pagination. + No related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - edges: [ProjectStatusSectorsByProjectProjectStatusIdAndSectorNameManyToManyEdge!]! - - """A list of `Sector` objects.""" - nodes: [Sector]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `Sector` you could get from the connection.""" - totalCount: Int! -} - -"""A `Sector` edge in the connection, with data from `Project`.""" -type ProjectStatusSectorsByProjectProjectStatusIdAndSectorNameManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `Sector` at the end of the edge.""" - node: Sector - - """Reads and enables pagination through a set of `Project`.""" - projectsBySectorName( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ProjectCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ProjectFilter - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = NO - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + none: AttachmentFilter - """The method to use when ordering `Project`.""" - orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectsConnection! + """ + Some related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: AttachmentFilter } """ @@ -63887,6 +62501,8 @@ enum ProjectStatusesOrderBy { ARCHIVED_AT_DESC ARCHIVED_BY_ASC ARCHIVED_BY_DESC + ATTACHMENTS_BY_PROJECT_STATUS_ID__COUNT_ASC + ATTACHMENTS_BY_PROJECT_STATUS_ID__COUNT_DESC CIF_USER_BY_ARCHIVED_BY__ALLOW_SUB_UPDATE_ASC CIF_USER_BY_ARCHIVED_BY__ALLOW_SUB_UPDATE_DESC CIF_USER_BY_ARCHIVED_BY__ARCHIVED_AT_ASC @@ -64009,43 +62625,43 @@ input ProjectToManyAdditionalFundingSourceFilter { } """ -A filter to be used against many `FundingParameter` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `Attachment` object types. All fields are combined with a logical ‘and.’ """ -input ProjectToManyFundingParameterFilter { +input ProjectToManyAttachmentFilter { """ - Every related `FundingParameter` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: FundingParameterFilter + every: AttachmentFilter """ - No related `FundingParameter` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: FundingParameterFilter + none: AttachmentFilter """ - Some related `FundingParameter` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: FundingParameterFilter + some: AttachmentFilter } """ -A filter to be used against many `ProjectAttachment` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `FundingParameter` object types. All fields are combined with a logical ‘and.’ """ -input ProjectToManyProjectAttachmentFilter { +input ProjectToManyFundingParameterFilter { """ - Every related `ProjectAttachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `FundingParameter` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ProjectAttachmentFilter + every: FundingParameterFilter """ - No related `ProjectAttachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `FundingParameter` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ProjectAttachmentFilter + none: FundingParameterFilter """ - Some related `ProjectAttachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `FundingParameter` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ProjectAttachmentFilter + some: FundingParameterFilter } """ @@ -65269,6 +63885,8 @@ enum ProjectsOrderBy { ARCHIVED_AT_DESC ARCHIVED_BY_ASC ARCHIVED_BY_DESC + ATTACHMENTS_BY_PROJECT_ID__COUNT_ASC + ATTACHMENTS_BY_PROJECT_ID__COUNT_DESC CIF_USER_BY_ARCHIVED_BY__ALLOW_SUB_UPDATE_ASC CIF_USER_BY_ARCHIVED_BY__ALLOW_SUB_UPDATE_DESC CIF_USER_BY_ARCHIVED_BY__ARCHIVED_AT_ASC @@ -65414,8 +64032,6 @@ enum ProjectsOrderBy { OPERATOR_ID_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC - PROJECT_ATTACHMENTS_BY_PROJECT_ID__COUNT_ASC - PROJECT_ATTACHMENTS_BY_PROJECT_ID__COUNT_DESC PROJECT_CONTACTS_BY_PROJECT_ID__COUNT_ASC PROJECT_CONTACTS_BY_PROJECT_ID__COUNT_DESC PROJECT_MANAGERS_BY_PROJECT_ID__COUNT_ASC @@ -66225,45 +64841,6 @@ type Query implements Node { orderBy: [PaymentsOrderBy!] = [PRIMARY_KEY_ASC] ): PaymentsConnection - """Reads and enables pagination through a set of `ProjectAttachment`.""" - allProjectAttachments( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ProjectAttachmentCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ProjectAttachmentFilter - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = NO - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `ProjectAttachment`.""" - orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectAttachmentsConnection - """Reads and enables pagination through a set of `ProjectContact`.""" allProjectContacts( """Read all values in the set after (below) this cursor.""" @@ -66974,15 +65551,6 @@ type Query implements Node { """The globally unique `ID` to be used in selecting a single `Project`.""" id: ID! ): Project - - """Reads a single `ProjectAttachment` using its globally unique `ID`.""" - projectAttachment( - """ - The globally unique `ID` to be used in selecting a single `ProjectAttachment`. - """ - id: ID! - ): ProjectAttachment - projectAttachmentByRowId(rowId: Int!): ProjectAttachment projectByProposalReference(proposalReference: String!): Project projectByRowId(rowId: Int!): Project @@ -67104,9 +65672,6 @@ type Query implements Node { session: KeycloakJwt } -"""A builtin object identifier type for a function with argument types""" -scalar RegProcedure - """Table containing information about report types""" type ReportType implements Node { """archived at timestamp""" @@ -69791,11 +68356,6 @@ type RevisionStatus implements Node { orderBy: [RevisionTypesOrderBy!] = [PRIMARY_KEY_ASC] ): RevisionStatusRevisionTypesByProjectRevisionRevisionStatusAndRevisionTypeManyToManyConnection! - """ - Integer value to indicate the order in which the revision status should be displayed - """ - sortingOrder: Int! - """updated at timestamp""" updatedAt: Datetime! @@ -70014,9 +68574,6 @@ input RevisionStatusCondition { """Checks for equality with the object’s `name` field.""" name: String - """Checks for equality with the object’s `sortingOrder` field.""" - sortingOrder: Int - """Checks for equality with the object’s `updatedAt` field.""" updatedAt: Datetime @@ -70079,9 +68636,6 @@ input RevisionStatusFilter { """Some related `projectRevisionsByRevisionStatus` exist.""" projectRevisionsByRevisionStatusExist: Boolean - """Filter by the object’s `sortingOrder` field.""" - sortingOrder: IntFilter - """Filter by the object’s `updatedAt` field.""" updatedAt: DatetimeFilter @@ -70111,11 +68665,6 @@ input RevisionStatusInput { """The name of the amendment status as the primary key""" name: String! - """ - Integer value to indicate the order in which the revision status should be displayed - """ - sortingOrder: Int - """updated at timestamp""" updatedAt: Datetime @@ -70147,11 +68696,6 @@ input RevisionStatusPatch { """The name of the amendment status as the primary key""" name: String - """ - Integer value to indicate the order in which the revision status should be displayed - """ - sortingOrder: Int - """updated at timestamp""" updatedAt: Datetime @@ -70428,8 +68972,6 @@ enum RevisionStatusesOrderBy { PRIMARY_KEY_DESC PROJECT_REVISIONS_BY_REVISION_STATUS__COUNT_ASC PROJECT_REVISIONS_BY_REVISION_STATUS__COUNT_DESC - SORTING_ORDER_ASC - SORTING_ORDER_DESC UPDATED_AT_ASC UPDATED_AT_DESC UPDATED_BY_ASC @@ -73112,6 +71654,12 @@ type UpdateAttachmentPayload { """ clientMutationId: String + """Reads a single `Project` that is related to this `Attachment`.""" + projectByProjectId: Project + + """Reads a single `ProjectStatus` that is related to this `Attachment`.""" + projectStatusByProjectStatusId: ProjectStatus + """ Our root query field type. Allows us to run any query from our mutation payload. """ @@ -74030,82 +72578,6 @@ type UpdateOrCreateUserFromSessionPayload { query: Query } -"""All input for the `updateProjectAttachmentByRowId` mutation.""" -input UpdateProjectAttachmentByRowIdInput { - """ - 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 `ProjectAttachment` being updated. - """ - projectAttachmentPatch: ProjectAttachmentPatch! - - """Unique ID for the project attachment record""" - rowId: Int! -} - -"""All input for the `updateProjectAttachment` mutation.""" -input UpdateProjectAttachmentInput { - """ - 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 `ProjectAttachment` to be updated. - """ - id: ID! - - """ - An object where the defined keys will be set on the `ProjectAttachment` being updated. - """ - projectAttachmentPatch: ProjectAttachmentPatch! -} - -"""The output of our update `ProjectAttachment` mutation.""" -type UpdateProjectAttachmentPayload { - """ - Reads a single `Attachment` that is related to this `ProjectAttachment`. - """ - attachmentByAttachmentId: Attachment - - """Reads a single `CifUser` that is related to this `ProjectAttachment`.""" - cifUserByArchivedBy: CifUser - - """Reads a single `CifUser` that is related to this `ProjectAttachment`.""" - cifUserByCreatedBy: CifUser - - """Reads a single `CifUser` that is related to this `ProjectAttachment`.""" - cifUserByUpdatedBy: CifUser - - """ - 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 `ProjectAttachment` that was updated by this mutation.""" - projectAttachment: ProjectAttachment - - """An edge for our `ProjectAttachment`. May be used by Relay 1.""" - projectAttachmentEdge( - """The method to use when ordering `ProjectAttachment`.""" - orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectAttachmentsEdge - - """Reads a single `Project` that is related to this `ProjectAttachment`.""" - projectByProjectId: Project - - """ - Our root query field type. Allows us to run any query from our mutation payload. - """ - query: Query -} - """All input for the `updateProjectContactByRowId` mutation.""" input UpdateProjectContactByRowIdInput { """ diff --git a/app/schema/schema.json b/app/schema/schema.json index 0a319f9f41..170bc962b3 100644 --- a/app/schema/schema.json +++ b/app/schema/schema.json @@ -11,8 +11,8 @@ "types": [ { "kind": "INPUT_OBJECT", - "name": "AddContactToRevisionInput", - "description": "All input for the `addContactToRevision` mutation.", + "name": "AddAdditionalFundingSourceToRevisionInput", + "description": "All input for the `addAdditionalFundingSourceToRevision` mutation.", "fields": null, "inputFields": [ { @@ -26,17 +26,7 @@ "defaultValue": null }, { - "name": "contactId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contactIndex", + "name": "revisionId", "description": null, "type": { "kind": "NON_NULL", @@ -50,7 +40,7 @@ "defaultValue": null }, { - "name": "revisionId", + "name": "sourceIndex", "description": null, "type": { "kind": "NON_NULL", @@ -70,8 +60,8 @@ }, { "kind": "OBJECT", - "name": "AddContactToRevisionPayload", - "description": "The output of our `addContactToRevision` mutation.", + "name": "AddAdditionalFundingSourceToRevisionPayload", + "description": "The output of our `addAdditionalFundingSourceToRevision` mutation.", "fields": [ { "name": "changeStatusByChangeStatus", @@ -220,12 +210,32 @@ }, { "kind": "INPUT_OBJECT", - "name": "AddProjectAttachmentToRevisionInput", - "description": "All input for the `addProjectAttachmentToRevision` mutation.", + "name": "AddContactToRevisionInput", + "description": "All input for the `addContactToRevision` mutation.", "fields": null, "inputFields": [ { - "name": "attachmentId", + "name": "clientMutationId", + "description": "An arbitrary string value with no semantic meaning. Will be included in the\npayload verbatim. May be used to track mutations by the client.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "contactId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "contactIndex", "description": null, "type": { "kind": "NON_NULL", @@ -238,16 +248,6 @@ }, "defaultValue": null }, - { - "name": "clientMutationId", - "description": "An arbitrary string value with no semantic meaning. Will be included in the\npayload verbatim. May be used to track mutations by the client.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, { "name": "revisionId", "description": null, @@ -269,8 +269,8 @@ }, { "kind": "OBJECT", - "name": "AddProjectAttachmentToRevisionPayload", - "description": "The output of our `addProjectAttachmentToRevision` mutation.", + "name": "AddContactToRevisionPayload", + "description": "The output of our `addContactToRevision` mutation.", "fields": [ { "name": "changeStatusByChangeStatus", @@ -417,6 +417,92 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "INPUT_OBJECT", + "name": "AddEmissionIntensityReportToRevisionInput", + "description": "All input for the `addEmissionIntensityReportToRevision` mutation.", + "fields": null, + "inputFields": [ + { + "name": "clientMutationId", + "description": "An arbitrary string value with no semantic meaning. Will be included in the\npayload verbatim. May be used to track mutations by the client.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "revisionId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AddEmissionIntensityReportToRevisionPayload", + "description": "The output of our `addEmissionIntensityReportToRevision` mutation.", + "fields": [ + { + "name": "clientMutationId", + "description": "The exact same `clientMutationId` that was provided in the mutation input,\nunchanged and unused. May be used by a client to track mutations.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "formChanges", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FormChange", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "query", + "description": "Our root query field type. Allows us to run any query from our mutation payload.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, { "kind": "OBJECT", "name": "AdditionalFundingSource", @@ -8272,351 +8358,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "cifUsersByProjectAttachmentAttachmentIdAndArchivedBy", - "description": "Reads and enables pagination through a set of `CifUser`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `CifUser`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CifUsersOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AttachmentCifUsersByProjectAttachmentAttachmentIdAndArchivedByManyToManyConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cifUsersByProjectAttachmentAttachmentIdAndCreatedBy", - "description": "Reads and enables pagination through a set of `CifUser`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `CifUser`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CifUsersOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AttachmentCifUsersByProjectAttachmentAttachmentIdAndCreatedByManyToManyConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cifUsersByProjectAttachmentAttachmentIdAndUpdatedBy", - "description": "Reads and enables pagination through a set of `CifUser`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `CifUser`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CifUsersOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AttachmentCifUsersByProjectAttachmentAttachmentIdAndUpdatedByManyToManyConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "createdAt", "description": "created at timestamp", @@ -8722,824 +8463,79 @@ "deprecationReason": null }, { - "name": "projectAttachmentsByAttachmentId", - "description": "Reads and enables pagination through a set of `ProjectAttachment`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "INHERIT" - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `ProjectAttachment`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProjectAttachmentsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectAttachmentsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectsByProjectAttachmentAttachmentIdAndProjectId", - "description": "Reads and enables pagination through a set of `Project`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Project`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProjectsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AttachmentProjectsByProjectAttachmentAttachmentIdAndProjectIdManyToManyConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rowId", - "description": "Unique ID for the attachment", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": "updated at timestamp", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Datetime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedBy", - "description": "updated by user id", + "name": "projectByProjectId", + "description": "Reads a single `Project` that is related to this `Attachment`.", "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "Project", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AttachmentCifUsersByProjectAttachmentAttachmentIdAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectAttachment`.", - "fields": [ - { - "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectAttachment`, and the cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AttachmentCifUsersByProjectAttachmentAttachmentIdAndArchivedByManyToManyEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `CifUser` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CifUser", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "totalCount", - "description": "The count of *all* `CifUser` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AttachmentCifUsersByProjectAttachmentAttachmentIdAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectAttachment`.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", + "name": "projectId", + "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "Cursor", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "node", - "description": "The `CifUser` at the end of the edge.", + "name": "projectStatusByProjectStatusId", + "description": "Reads a single `ProjectStatus` that is related to this `Attachment`.", "args": [], "type": { "kind": "OBJECT", - "name": "CifUser", + "name": "ProjectStatus", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectAttachmentsByArchivedBy", - "description": "Reads and enables pagination through a set of `ProjectAttachment`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `ProjectAttachment`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProjectAttachmentsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectAttachmentsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AttachmentCifUsersByProjectAttachmentAttachmentIdAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectAttachment`.", - "fields": [ - { - "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectAttachment`, and the cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AttachmentCifUsersByProjectAttachmentAttachmentIdAndCreatedByManyToManyEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `CifUser` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CifUser", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `CifUser` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AttachmentCifUsersByProjectAttachmentAttachmentIdAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectAttachment`.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", + "name": "projectStatusId", + "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "Cursor", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "node", - "description": "The `CifUser` at the end of the edge.", + "name": "rowId", + "description": "Unique ID for the attachment", "args": [], - "type": { - "kind": "OBJECT", - "name": "CifUser", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectAttachmentsByCreatedBy", - "description": "Reads and enables pagination through a set of `ProjectAttachment`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `ProjectAttachment`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProjectAttachmentsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ProjectAttachmentsConnection", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AttachmentCifUsersByProjectAttachmentAttachmentIdAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectAttachment`.", - "fields": [ - { - "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectAttachment`, and the cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AttachmentCifUsersByProjectAttachmentAttachmentIdAndUpdatedByManyToManyEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `CifUser` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CifUser", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "pageInfo", - "description": "Information to aid in pagination.", + "name": "updatedAt", + "description": "updated at timestamp", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "PageInfo", + "kind": "SCALAR", + "name": "Datetime", "ofType": null } }, @@ -9547,174 +8543,26 @@ "deprecationReason": null }, { - "name": "totalCount", - "description": "The count of *all* `CifUser` you could get from the connection.", + "name": "updatedBy", + "description": "updated by user id", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "isDeprecated": false, "deprecationReason": null } ], "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AttachmentCifUsersByProjectAttachmentAttachmentIdAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectAttachment`.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `CifUser` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "CifUser", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, + "interfaces": [ { - "name": "projectAttachmentsByUpdatedBy", - "description": "Reads and enables pagination through a set of `ProjectAttachment`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `ProjectAttachment`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProjectAttachmentsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectAttachmentsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "kind": "INTERFACE", + "name": "Node", + "ofType": null } ], - "inputFields": null, - "interfaces": [], "enumValues": null, "possibleTypes": null }, @@ -9814,6 +8662,26 @@ }, "defaultValue": null }, + { + "name": "projectId", + "description": "Checks for equality with the object’s `projectId` field.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectStatusId", + "description": "Checks for equality with the object’s `projectStatusId` field.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, { "name": "rowId", "description": "Checks for equality with the object’s `rowId` field.", @@ -10052,18 +8920,48 @@ "defaultValue": null }, { - "name": "projectAttachmentsByAttachmentId", - "description": "Filter by the object’s `projectAttachmentsByAttachmentId` relation.", + "name": "projectByProjectId", + "description": "Filter by the object’s `projectByProjectId` relation.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectByProjectIdExists", + "description": "A related `projectByProjectId` exists.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectId", + "description": "Filter by the object’s `projectId` field.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectStatusByProjectStatusId", + "description": "Filter by the object’s `projectStatusByProjectStatusId` relation.", "type": { "kind": "INPUT_OBJECT", - "name": "AttachmentToManyProjectAttachmentFilter", + "name": "ProjectStatusFilter", "ofType": null }, "defaultValue": null }, { - "name": "projectAttachmentsByAttachmentIdExist", - "description": "Some related `projectAttachmentsByAttachmentId` exist.", + "name": "projectStatusByProjectStatusIdExists", + "description": "A related `projectStatusByProjectStatusId` exists.", "type": { "kind": "SCALAR", "name": "Boolean", @@ -10071,6 +8969,16 @@ }, "defaultValue": null }, + { + "name": "projectStatusId", + "description": "Filter by the object’s `projectStatusId` field.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + }, + "defaultValue": null + }, { "name": "rowId", "description": "Filter by the object’s `rowId` field.", @@ -10202,6 +9110,26 @@ }, "defaultValue": null }, + { + "name": "projectId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectStatusId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, { "name": "updatedAt", "description": "updated at timestamp", @@ -10323,6 +9251,26 @@ }, "defaultValue": null }, + { + "name": "projectId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectStatusId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, { "name": "updatedAt", "description": "updated at timestamp", @@ -10350,12 +9298,12 @@ }, { "kind": "OBJECT", - "name": "AttachmentProjectsByProjectAttachmentAttachmentIdAndProjectIdManyToManyConnection", - "description": "A connection to a list of `Project` values, with data from `ProjectAttachment`.", + "name": "AttachmentsConnection", + "description": "A connection to a list of `Attachment` values.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `Project`, info from the `ProjectAttachment`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `Attachment` and cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -10368,7 +9316,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AttachmentProjectsByProjectAttachmentAttachmentIdAndProjectIdManyToManyEdge", + "name": "AttachmentsEdge", "ofType": null } } @@ -10379,7 +9327,7 @@ }, { "name": "nodes", - "description": "A list of `Project` objects.", + "description": "A list of `Attachment` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -10389,7 +9337,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Project", + "name": "Attachment", "ofType": null } } @@ -10415,7 +9363,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `Project` you could get from the connection.", + "description": "The count of *all* `Attachment` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -10437,8 +9385,8 @@ }, { "kind": "OBJECT", - "name": "AttachmentProjectsByProjectAttachmentAttachmentIdAndProjectIdManyToManyEdge", - "description": "A `Project` edge in the connection, with data from `ProjectAttachment`.", + "name": "AttachmentsEdge", + "description": "A `Attachment` edge in the connection.", "fields": [ { "name": "cursor", @@ -10454,289 +9402,11 @@ }, { "name": "node", - "description": "The `Project` at the end of the edge.", + "description": "The `Attachment` at the end of the edge.", "args": [], "type": { "kind": "OBJECT", - "name": "Project", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectAttachmentsByProjectId", - "description": "Reads and enables pagination through a set of `ProjectAttachment`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `ProjectAttachment`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProjectAttachmentsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectAttachmentsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AttachmentToManyProjectAttachmentFilter", - "description": "A filter to be used against many `ProjectAttachment` object types. All fields are combined with a logical ‘and.’", - "fields": null, - "inputFields": [ - { - "name": "every", - "description": "Every related `ProjectAttachment` matches the filter criteria. All fields are combined with a logical ‘and.’", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "none", - "description": "No related `ProjectAttachment` matches the filter criteria. All fields are combined with a logical ‘and.’", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "some", - "description": "Some related `ProjectAttachment` matches the filter criteria. All fields are combined with a logical ‘and.’", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AttachmentsConnection", - "description": "A connection to a list of `Attachment` values.", - "fields": [ - { - "name": "edges", - "description": "A list of edges which contains the `Attachment` and cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AttachmentsEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `Attachment` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Attachment", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `Attachment` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AttachmentsEdge", - "description": "A `Attachment` edge in the connection.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `Attachment` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Attachment", + "name": "Attachment", "ofType": null }, "isDeprecated": false, @@ -11363,13 +10033,385 @@ "deprecationReason": null }, { - "name": "PROJECT_ATTACHMENTS_BY_ATTACHMENT_ID__COUNT_ASC", + "name": "PROJECT_BY_PROJECT_ID__ADDITIONAL_SECTOR_INFORMATION_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__ADDITIONAL_SECTOR_INFORMATION_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__ARCHIVED_AT_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__ARCHIVED_AT_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__ARCHIVED_BY_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__ARCHIVED_BY_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__COMMENTS_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__COMMENTS_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__CONTRACT_NUMBER_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__CONTRACT_NUMBER_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__CREATED_AT_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__CREATED_AT_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__CREATED_BY_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__CREATED_BY_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__FUNDING_STREAM_RFP_ID_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__FUNDING_STREAM_RFP_ID_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__ID_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__ID_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__NEXT_MILESTONE_DUE_DATE_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__NEXT_MILESTONE_DUE_DATE_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__OPERATOR_ID_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__OPERATOR_ID_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__PROJECT_NAME_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__PROJECT_NAME_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__PROJECT_STATUS_ID_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__PROJECT_STATUS_ID_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__PROJECT_TYPE_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__PROJECT_TYPE_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__PROPOSAL_REFERENCE_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__PROPOSAL_REFERENCE_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__SCORE_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__SCORE_DESC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "PROJECT_ATTACHMENTS_BY_ATTACHMENT_ID__COUNT_DESC", + "name": "PROJECT_BY_PROJECT_ID__SECTOR_NAME_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__SECTOR_NAME_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__SUMMARY_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__SUMMARY_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__TOTAL_FUNDING_REQUEST_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__TOTAL_FUNDING_REQUEST_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__UPDATED_AT_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__UPDATED_AT_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__UPDATED_BY_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__UPDATED_BY_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_ID_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_ID_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_STATUS_BY_PROJECT_STATUS_ID__ARCHIVED_AT_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_STATUS_BY_PROJECT_STATUS_ID__ARCHIVED_AT_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_STATUS_BY_PROJECT_STATUS_ID__ARCHIVED_BY_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_STATUS_BY_PROJECT_STATUS_ID__ARCHIVED_BY_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_STATUS_BY_PROJECT_STATUS_ID__CREATED_AT_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_STATUS_BY_PROJECT_STATUS_ID__CREATED_AT_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_STATUS_BY_PROJECT_STATUS_ID__CREATED_BY_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_STATUS_BY_PROJECT_STATUS_ID__CREATED_BY_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_STATUS_BY_PROJECT_STATUS_ID__DESCRIPTION_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_STATUS_BY_PROJECT_STATUS_ID__DESCRIPTION_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_STATUS_BY_PROJECT_STATUS_ID__ID_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_STATUS_BY_PROJECT_STATUS_ID__ID_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_STATUS_BY_PROJECT_STATUS_ID__NAME_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_STATUS_BY_PROJECT_STATUS_ID__NAME_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_STATUS_BY_PROJECT_STATUS_ID__UPDATED_AT_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_STATUS_BY_PROJECT_STATUS_ID__UPDATED_AT_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_STATUS_BY_PROJECT_STATUS_ID__UPDATED_BY_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_STATUS_BY_PROJECT_STATUS_ID__UPDATED_BY_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_STATUS_ID_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_STATUS_ID_DESC", "description": null, "isDeprecated": false, "deprecationReason": null @@ -18882,7 +17924,7 @@ "deprecationReason": null }, { - "name": "attachmentsByProjectAttachmentArchivedByAndAttachmentId", + "name": "attachmentsByUpdatedBy", "description": "Reads and enables pagination through a set of `Attachment`.", "args": [ { @@ -18943,7 +17985,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -18989,7 +18031,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserAttachmentsByProjectAttachmentArchivedByAndAttachmentIdManyToManyConnection", + "name": "AttachmentsConnection", "ofType": null } }, @@ -18997,8 +18039,8 @@ "deprecationReason": null }, { - "name": "attachmentsByProjectAttachmentCreatedByAndAttachmentId", - "description": "Reads and enables pagination through a set of `Attachment`.", + "name": "changeStatusesByArchivedBy", + "description": "Reads and enables pagination through a set of `ChangeStatus`.", "args": [ { "name": "after", @@ -19025,7 +18067,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AttachmentCondition", + "name": "ChangeStatusCondition", "ofType": null }, "defaultValue": null @@ -19035,7 +18077,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AttachmentFilter", + "name": "ChangeStatusFilter", "ofType": null }, "defaultValue": null @@ -19058,7 +18100,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -19082,7 +18124,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Attachment`.", + "description": "The method to use when ordering `ChangeStatus`.", "type": { "kind": "LIST", "name": null, @@ -19091,7 +18133,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AttachmentsOrderBy", + "name": "ChangeStatusesOrderBy", "ofType": null } } @@ -19104,7 +18146,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserAttachmentsByProjectAttachmentCreatedByAndAttachmentIdManyToManyConnection", + "name": "ChangeStatusesConnection", "ofType": null } }, @@ -19112,8 +18154,8 @@ "deprecationReason": null }, { - "name": "attachmentsByProjectAttachmentUpdatedByAndAttachmentId", - "description": "Reads and enables pagination through a set of `Attachment`.", + "name": "changeStatusesByCreatedBy", + "description": "Reads and enables pagination through a set of `ChangeStatus`.", "args": [ { "name": "after", @@ -19140,7 +18182,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AttachmentCondition", + "name": "ChangeStatusCondition", "ofType": null }, "defaultValue": null @@ -19150,7 +18192,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AttachmentFilter", + "name": "ChangeStatusFilter", "ofType": null }, "defaultValue": null @@ -19173,7 +18215,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -19197,7 +18239,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Attachment`.", + "description": "The method to use when ordering `ChangeStatus`.", "type": { "kind": "LIST", "name": null, @@ -19206,7 +18248,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AttachmentsOrderBy", + "name": "ChangeStatusesOrderBy", "ofType": null } } @@ -19219,7 +18261,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserAttachmentsByProjectAttachmentUpdatedByAndAttachmentIdManyToManyConnection", + "name": "ChangeStatusesConnection", "ofType": null } }, @@ -19227,8 +18269,8 @@ "deprecationReason": null }, { - "name": "attachmentsByUpdatedBy", - "description": "Reads and enables pagination through a set of `Attachment`.", + "name": "changeStatusesByFormChangeCreatedByAndChangeStatus", + "description": "Reads and enables pagination through a set of `ChangeStatus`.", "args": [ { "name": "after", @@ -19255,7 +18297,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AttachmentCondition", + "name": "ChangeStatusCondition", "ofType": null }, "defaultValue": null @@ -19265,7 +18307,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AttachmentFilter", + "name": "ChangeStatusFilter", "ofType": null }, "defaultValue": null @@ -19288,7 +18330,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -19312,7 +18354,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Attachment`.", + "description": "The method to use when ordering `ChangeStatus`.", "type": { "kind": "LIST", "name": null, @@ -19321,7 +18363,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AttachmentsOrderBy", + "name": "ChangeStatusesOrderBy", "ofType": null } } @@ -19334,7 +18376,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AttachmentsConnection", + "name": "CifUserChangeStatusesByFormChangeCreatedByAndChangeStatusManyToManyConnection", "ofType": null } }, @@ -19342,7 +18384,7 @@ "deprecationReason": null }, { - "name": "changeStatusesByArchivedBy", + "name": "changeStatusesByFormChangeUpdatedByAndChangeStatus", "description": "Reads and enables pagination through a set of `ChangeStatus`.", "args": [ { @@ -19403,7 +18445,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -19449,7 +18491,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ChangeStatusesConnection", + "name": "CifUserChangeStatusesByFormChangeUpdatedByAndChangeStatusManyToManyConnection", "ofType": null } }, @@ -19457,7 +18499,7 @@ "deprecationReason": null }, { - "name": "changeStatusesByCreatedBy", + "name": "changeStatusesByProjectRevisionCreatedByAndChangeStatus", "description": "Reads and enables pagination through a set of `ChangeStatus`.", "args": [ { @@ -19518,7 +18560,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -19564,7 +18606,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ChangeStatusesConnection", + "name": "CifUserChangeStatusesByProjectRevisionCreatedByAndChangeStatusManyToManyConnection", "ofType": null } }, @@ -19572,7 +18614,7 @@ "deprecationReason": null }, { - "name": "changeStatusesByFormChangeCreatedByAndChangeStatus", + "name": "changeStatusesByProjectRevisionUpdatedByAndChangeStatus", "description": "Reads and enables pagination through a set of `ChangeStatus`.", "args": [ { @@ -19679,7 +18721,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserChangeStatusesByFormChangeCreatedByAndChangeStatusManyToManyConnection", + "name": "CifUserChangeStatusesByProjectRevisionUpdatedByAndChangeStatusManyToManyConnection", "ofType": null } }, @@ -19687,7 +18729,7 @@ "deprecationReason": null }, { - "name": "changeStatusesByFormChangeUpdatedByAndChangeStatus", + "name": "changeStatusesByUpdatedBy", "description": "Reads and enables pagination through a set of `ChangeStatus`.", "args": [ { @@ -19748,7 +18790,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -19794,7 +18836,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserChangeStatusesByFormChangeUpdatedByAndChangeStatusManyToManyConnection", + "name": "ChangeStatusesConnection", "ofType": null } }, @@ -19802,8 +18844,44 @@ "deprecationReason": null }, { - "name": "changeStatusesByProjectRevisionCreatedByAndChangeStatus", - "description": "Reads and enables pagination through a set of `ChangeStatus`.", + "name": "cifUserByArchivedBy", + "description": "Reads a single `CifUser` that is related to this `CifUser`.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "CifUser", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cifUserByCreatedBy", + "description": "Reads a single `CifUser` that is related to this `CifUser`.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "CifUser", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cifUserByUpdatedBy", + "description": "Reads a single `CifUser` that is related to this `CifUser`.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "CifUser", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cifUsersByAdditionalFundingSourceArchivedByAndCreatedBy", + "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { "name": "after", @@ -19830,7 +18908,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ChangeStatusCondition", + "name": "CifUserCondition", "ofType": null }, "defaultValue": null @@ -19840,7 +18918,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ChangeStatusFilter", + "name": "CifUserFilter", "ofType": null }, "defaultValue": null @@ -19887,7 +18965,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ChangeStatus`.", + "description": "The method to use when ordering `CifUser`.", "type": { "kind": "LIST", "name": null, @@ -19896,7 +18974,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ChangeStatusesOrderBy", + "name": "CifUsersOrderBy", "ofType": null } } @@ -19909,7 +18987,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserChangeStatusesByProjectRevisionCreatedByAndChangeStatusManyToManyConnection", + "name": "CifUserCifUsersByAdditionalFundingSourceArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -19917,8 +18995,8 @@ "deprecationReason": null }, { - "name": "changeStatusesByProjectRevisionUpdatedByAndChangeStatus", - "description": "Reads and enables pagination through a set of `ChangeStatus`.", + "name": "cifUsersByAdditionalFundingSourceArchivedByAndUpdatedBy", + "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { "name": "after", @@ -19945,7 +19023,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ChangeStatusCondition", + "name": "CifUserCondition", "ofType": null }, "defaultValue": null @@ -19955,7 +19033,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ChangeStatusFilter", + "name": "CifUserFilter", "ofType": null }, "defaultValue": null @@ -20002,7 +19080,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ChangeStatus`.", + "description": "The method to use when ordering `CifUser`.", "type": { "kind": "LIST", "name": null, @@ -20011,7 +19089,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ChangeStatusesOrderBy", + "name": "CifUsersOrderBy", "ofType": null } } @@ -20024,7 +19102,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserChangeStatusesByProjectRevisionUpdatedByAndChangeStatusManyToManyConnection", + "name": "CifUserCifUsersByAdditionalFundingSourceArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -20032,8 +19110,8 @@ "deprecationReason": null }, { - "name": "changeStatusesByUpdatedBy", - "description": "Reads and enables pagination through a set of `ChangeStatus`.", + "name": "cifUsersByAdditionalFundingSourceCreatedByAndArchivedBy", + "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { "name": "after", @@ -20060,7 +19138,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ChangeStatusCondition", + "name": "CifUserCondition", "ofType": null }, "defaultValue": null @@ -20070,7 +19148,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ChangeStatusFilter", + "name": "CifUserFilter", "ofType": null }, "defaultValue": null @@ -20093,7 +19171,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -20117,7 +19195,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ChangeStatus`.", + "description": "The method to use when ordering `CifUser`.", "type": { "kind": "LIST", "name": null, @@ -20126,7 +19204,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ChangeStatusesOrderBy", + "name": "CifUsersOrderBy", "ofType": null } } @@ -20139,7 +19217,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ChangeStatusesConnection", + "name": "CifUserCifUsersByAdditionalFundingSourceCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -20147,43 +19225,7 @@ "deprecationReason": null }, { - "name": "cifUserByArchivedBy", - "description": "Reads a single `CifUser` that is related to this `CifUser`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "CifUser", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cifUserByCreatedBy", - "description": "Reads a single `CifUser` that is related to this `CifUser`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "CifUser", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cifUserByUpdatedBy", - "description": "Reads a single `CifUser` that is related to this `CifUser`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "CifUser", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cifUsersByAdditionalFundingSourceArchivedByAndCreatedBy", + "name": "cifUsersByAdditionalFundingSourceCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -20290,7 +19332,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByAdditionalFundingSourceCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -20298,7 +19340,7 @@ "deprecationReason": null }, { - "name": "cifUsersByAdditionalFundingSourceArchivedByAndUpdatedBy", + "name": "cifUsersByAdditionalFundingSourceStatusArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -20405,7 +19447,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByAdditionalFundingSourceStatusArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -20413,7 +19455,7 @@ "deprecationReason": null }, { - "name": "cifUsersByAdditionalFundingSourceCreatedByAndArchivedBy", + "name": "cifUsersByAdditionalFundingSourceStatusArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -20520,7 +19562,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByAdditionalFundingSourceStatusArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -20528,7 +19570,7 @@ "deprecationReason": null }, { - "name": "cifUsersByAdditionalFundingSourceCreatedByAndUpdatedBy", + "name": "cifUsersByAdditionalFundingSourceStatusCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -20635,7 +19677,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByAdditionalFundingSourceStatusCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -20643,7 +19685,7 @@ "deprecationReason": null }, { - "name": "cifUsersByAdditionalFundingSourceStatusArchivedByAndCreatedBy", + "name": "cifUsersByAdditionalFundingSourceStatusCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -20750,7 +19792,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceStatusArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByAdditionalFundingSourceStatusCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -20758,7 +19800,7 @@ "deprecationReason": null }, { - "name": "cifUsersByAdditionalFundingSourceStatusArchivedByAndUpdatedBy", + "name": "cifUsersByAdditionalFundingSourceStatusUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -20865,7 +19907,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceStatusArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByAdditionalFundingSourceStatusUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -20873,7 +19915,7 @@ "deprecationReason": null }, { - "name": "cifUsersByAdditionalFundingSourceStatusCreatedByAndArchivedBy", + "name": "cifUsersByAdditionalFundingSourceStatusUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -20980,7 +20022,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceStatusCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByAdditionalFundingSourceStatusUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -20988,7 +20030,7 @@ "deprecationReason": null }, { - "name": "cifUsersByAdditionalFundingSourceStatusCreatedByAndUpdatedBy", + "name": "cifUsersByAdditionalFundingSourceUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -21095,7 +20137,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceStatusCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByAdditionalFundingSourceUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -21103,7 +20145,7 @@ "deprecationReason": null }, { - "name": "cifUsersByAdditionalFundingSourceStatusUpdatedByAndArchivedBy", + "name": "cifUsersByAdditionalFundingSourceUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -21210,7 +20252,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceStatusUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByAdditionalFundingSourceUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -21218,7 +20260,7 @@ "deprecationReason": null }, { - "name": "cifUsersByAdditionalFundingSourceStatusUpdatedByAndCreatedBy", + "name": "cifUsersByAmendmentTypeArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -21325,7 +20367,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceStatusUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByAmendmentTypeArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -21333,7 +20375,7 @@ "deprecationReason": null }, { - "name": "cifUsersByAdditionalFundingSourceUpdatedByAndArchivedBy", + "name": "cifUsersByAmendmentTypeArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -21440,7 +20482,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByAmendmentTypeArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -21448,7 +20490,7 @@ "deprecationReason": null }, { - "name": "cifUsersByAdditionalFundingSourceUpdatedByAndCreatedBy", + "name": "cifUsersByAmendmentTypeCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -21555,7 +20597,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByAmendmentTypeCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -21563,7 +20605,7 @@ "deprecationReason": null }, { - "name": "cifUsersByAmendmentTypeArchivedByAndCreatedBy", + "name": "cifUsersByAmendmentTypeCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -21670,7 +20712,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAmendmentTypeArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByAmendmentTypeCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -21678,7 +20720,7 @@ "deprecationReason": null }, { - "name": "cifUsersByAmendmentTypeArchivedByAndUpdatedBy", + "name": "cifUsersByAmendmentTypeUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -21785,7 +20827,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAmendmentTypeArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByAmendmentTypeUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -21793,7 +20835,7 @@ "deprecationReason": null }, { - "name": "cifUsersByAmendmentTypeCreatedByAndArchivedBy", + "name": "cifUsersByAmendmentTypeUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -21900,7 +20942,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAmendmentTypeCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByAmendmentTypeUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -21908,7 +20950,7 @@ "deprecationReason": null }, { - "name": "cifUsersByAmendmentTypeCreatedByAndUpdatedBy", + "name": "cifUsersByArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -21969,7 +21011,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -22015,7 +21057,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAmendmentTypeCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUsersConnection", "ofType": null } }, @@ -22023,7 +21065,7 @@ "deprecationReason": null }, { - "name": "cifUsersByAmendmentTypeUpdatedByAndArchivedBy", + "name": "cifUsersByAttachmentArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -22130,7 +21172,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAmendmentTypeUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByAttachmentArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -22138,7 +21180,7 @@ "deprecationReason": null }, { - "name": "cifUsersByAmendmentTypeUpdatedByAndCreatedBy", + "name": "cifUsersByAttachmentArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -22245,7 +21287,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAmendmentTypeUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByAttachmentArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -22253,7 +21295,7 @@ "deprecationReason": null }, { - "name": "cifUsersByArchivedBy", + "name": "cifUsersByAttachmentCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -22314,7 +21356,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -22360,7 +21402,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUsersConnection", + "name": "CifUserCifUsersByAttachmentCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -22368,7 +21410,7 @@ "deprecationReason": null }, { - "name": "cifUsersByAttachmentArchivedByAndCreatedBy", + "name": "cifUsersByAttachmentCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -22475,7 +21517,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAttachmentArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByAttachmentCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -22483,7 +21525,7 @@ "deprecationReason": null }, { - "name": "cifUsersByAttachmentArchivedByAndUpdatedBy", + "name": "cifUsersByAttachmentUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -22590,7 +21632,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAttachmentArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByAttachmentUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -22598,7 +21640,7 @@ "deprecationReason": null }, { - "name": "cifUsersByAttachmentCreatedByAndArchivedBy", + "name": "cifUsersByAttachmentUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -22705,7 +21747,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAttachmentCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByAttachmentUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -22713,7 +21755,7 @@ "deprecationReason": null }, { - "name": "cifUsersByAttachmentCreatedByAndUpdatedBy", + "name": "cifUsersByChangeStatusArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -22820,7 +21862,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAttachmentCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByChangeStatusArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -22828,7 +21870,7 @@ "deprecationReason": null }, { - "name": "cifUsersByAttachmentUpdatedByAndArchivedBy", + "name": "cifUsersByChangeStatusArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -22935,7 +21977,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAttachmentUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByChangeStatusArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -22943,7 +21985,7 @@ "deprecationReason": null }, { - "name": "cifUsersByAttachmentUpdatedByAndCreatedBy", + "name": "cifUsersByChangeStatusCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -23050,7 +22092,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAttachmentUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByChangeStatusCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -23058,7 +22100,7 @@ "deprecationReason": null }, { - "name": "cifUsersByChangeStatusArchivedByAndCreatedBy", + "name": "cifUsersByChangeStatusCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -23165,7 +22207,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByChangeStatusArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByChangeStatusCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -23173,7 +22215,7 @@ "deprecationReason": null }, { - "name": "cifUsersByChangeStatusArchivedByAndUpdatedBy", + "name": "cifUsersByChangeStatusUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -23280,7 +22322,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByChangeStatusArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByChangeStatusUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -23288,7 +22330,7 @@ "deprecationReason": null }, { - "name": "cifUsersByChangeStatusCreatedByAndArchivedBy", + "name": "cifUsersByChangeStatusUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -23395,7 +22437,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByChangeStatusCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByChangeStatusUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -23403,7 +22445,7 @@ "deprecationReason": null }, { - "name": "cifUsersByChangeStatusCreatedByAndUpdatedBy", + "name": "cifUsersByCifUserArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -23510,7 +22552,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByChangeStatusCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByCifUserArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -23518,7 +22560,7 @@ "deprecationReason": null }, { - "name": "cifUsersByChangeStatusUpdatedByAndArchivedBy", + "name": "cifUsersByCifUserArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -23625,7 +22667,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByChangeStatusUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByCifUserArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -23633,7 +22675,7 @@ "deprecationReason": null }, { - "name": "cifUsersByChangeStatusUpdatedByAndCreatedBy", + "name": "cifUsersByCifUserCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -23740,7 +22782,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByChangeStatusUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByCifUserCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -23748,7 +22790,7 @@ "deprecationReason": null }, { - "name": "cifUsersByCifUserArchivedByAndCreatedBy", + "name": "cifUsersByCifUserCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -23855,7 +22897,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByCifUserArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByCifUserCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -23863,7 +22905,7 @@ "deprecationReason": null }, { - "name": "cifUsersByCifUserArchivedByAndUpdatedBy", + "name": "cifUsersByCifUserUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -23970,7 +23012,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByCifUserArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByCifUserUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -23978,7 +23020,7 @@ "deprecationReason": null }, { - "name": "cifUsersByCifUserCreatedByAndArchivedBy", + "name": "cifUsersByCifUserUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -24085,7 +23127,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByCifUserCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByCifUserUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -24093,7 +23135,7 @@ "deprecationReason": null }, { - "name": "cifUsersByCifUserCreatedByAndUpdatedBy", + "name": "cifUsersByContactArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -24200,7 +23242,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByCifUserCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByContactArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -24208,7 +23250,7 @@ "deprecationReason": null }, { - "name": "cifUsersByCifUserUpdatedByAndArchivedBy", + "name": "cifUsersByContactArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -24315,7 +23357,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByCifUserUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByContactArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -24323,7 +23365,7 @@ "deprecationReason": null }, { - "name": "cifUsersByCifUserUpdatedByAndCreatedBy", + "name": "cifUsersByContactCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -24430,7 +23472,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByCifUserUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByContactCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -24438,7 +23480,7 @@ "deprecationReason": null }, { - "name": "cifUsersByContactArchivedByAndCreatedBy", + "name": "cifUsersByContactCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -24545,7 +23587,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByContactArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByContactCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -24553,7 +23595,7 @@ "deprecationReason": null }, { - "name": "cifUsersByContactArchivedByAndUpdatedBy", + "name": "cifUsersByContactUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -24660,7 +23702,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByContactArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByContactUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -24668,7 +23710,7 @@ "deprecationReason": null }, { - "name": "cifUsersByContactCreatedByAndArchivedBy", + "name": "cifUsersByContactUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -24775,7 +23817,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByContactCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByContactUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -24783,7 +23825,7 @@ "deprecationReason": null }, { - "name": "cifUsersByContactCreatedByAndUpdatedBy", + "name": "cifUsersByCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -24844,7 +23886,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -24890,7 +23932,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByContactCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUsersConnection", "ofType": null } }, @@ -24898,7 +23940,7 @@ "deprecationReason": null }, { - "name": "cifUsersByContactUpdatedByAndArchivedBy", + "name": "cifUsersByEmissionIntensityPaymentPercentArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -25005,7 +24047,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByContactUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByEmissionIntensityPaymentPercentArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -25013,7 +24055,7 @@ "deprecationReason": null }, { - "name": "cifUsersByContactUpdatedByAndCreatedBy", + "name": "cifUsersByEmissionIntensityPaymentPercentArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -25120,7 +24162,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByContactUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByEmissionIntensityPaymentPercentArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -25128,7 +24170,7 @@ "deprecationReason": null }, { - "name": "cifUsersByCreatedBy", + "name": "cifUsersByEmissionIntensityPaymentPercentCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -25189,7 +24231,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -25235,7 +24277,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUsersConnection", + "name": "CifUserCifUsersByEmissionIntensityPaymentPercentCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -25243,7 +24285,7 @@ "deprecationReason": null }, { - "name": "cifUsersByEmissionIntensityPaymentPercentArchivedByAndCreatedBy", + "name": "cifUsersByEmissionIntensityPaymentPercentCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -25350,7 +24392,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityPaymentPercentArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByEmissionIntensityPaymentPercentCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -25358,7 +24400,7 @@ "deprecationReason": null }, { - "name": "cifUsersByEmissionIntensityPaymentPercentArchivedByAndUpdatedBy", + "name": "cifUsersByEmissionIntensityPaymentPercentUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -25465,7 +24507,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityPaymentPercentArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByEmissionIntensityPaymentPercentUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -25473,7 +24515,7 @@ "deprecationReason": null }, { - "name": "cifUsersByEmissionIntensityPaymentPercentCreatedByAndArchivedBy", + "name": "cifUsersByEmissionIntensityPaymentPercentUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -25580,7 +24622,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityPaymentPercentCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByEmissionIntensityPaymentPercentUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -25588,7 +24630,7 @@ "deprecationReason": null }, { - "name": "cifUsersByEmissionIntensityPaymentPercentCreatedByAndUpdatedBy", + "name": "cifUsersByEmissionIntensityReportArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -25695,7 +24737,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityPaymentPercentCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByEmissionIntensityReportArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -25703,7 +24745,7 @@ "deprecationReason": null }, { - "name": "cifUsersByEmissionIntensityPaymentPercentUpdatedByAndArchivedBy", + "name": "cifUsersByEmissionIntensityReportArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -25810,7 +24852,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityPaymentPercentUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByEmissionIntensityReportArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -25818,7 +24860,7 @@ "deprecationReason": null }, { - "name": "cifUsersByEmissionIntensityPaymentPercentUpdatedByAndCreatedBy", + "name": "cifUsersByEmissionIntensityReportCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -25925,7 +24967,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityPaymentPercentUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByEmissionIntensityReportCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -25933,7 +24975,7 @@ "deprecationReason": null }, { - "name": "cifUsersByEmissionIntensityReportArchivedByAndCreatedBy", + "name": "cifUsersByEmissionIntensityReportCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -26040,7 +25082,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityReportArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByEmissionIntensityReportCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -26048,7 +25090,7 @@ "deprecationReason": null }, { - "name": "cifUsersByEmissionIntensityReportArchivedByAndUpdatedBy", + "name": "cifUsersByEmissionIntensityReportUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -26155,7 +25197,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityReportArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByEmissionIntensityReportUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -26163,7 +25205,7 @@ "deprecationReason": null }, { - "name": "cifUsersByEmissionIntensityReportCreatedByAndArchivedBy", + "name": "cifUsersByEmissionIntensityReportUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -26270,7 +25312,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityReportCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByEmissionIntensityReportUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -26278,7 +25320,7 @@ "deprecationReason": null }, { - "name": "cifUsersByEmissionIntensityReportCreatedByAndUpdatedBy", + "name": "cifUsersByFormArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -26385,7 +25427,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityReportCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByFormArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -26393,7 +25435,7 @@ "deprecationReason": null }, { - "name": "cifUsersByEmissionIntensityReportUpdatedByAndArchivedBy", + "name": "cifUsersByFormArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -26500,7 +25542,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityReportUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByFormArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -26508,7 +25550,7 @@ "deprecationReason": null }, { - "name": "cifUsersByEmissionIntensityReportUpdatedByAndCreatedBy", + "name": "cifUsersByFormChangeCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -26615,7 +25657,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityReportUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByFormChangeCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -26623,7 +25665,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFormArchivedByAndCreatedBy", + "name": "cifUsersByFormChangeUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -26730,7 +25772,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFormArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByFormChangeUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -26738,7 +25780,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFormArchivedByAndUpdatedBy", + "name": "cifUsersByFormCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -26845,7 +25887,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFormArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByFormCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -26853,7 +25895,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFormChangeCreatedByAndUpdatedBy", + "name": "cifUsersByFormCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -26960,7 +26002,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFormChangeCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByFormCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -26968,7 +26010,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFormChangeUpdatedByAndCreatedBy", + "name": "cifUsersByFormUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -27075,7 +26117,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFormChangeUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByFormUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -27083,7 +26125,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFormCreatedByAndArchivedBy", + "name": "cifUsersByFormUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -27190,7 +26232,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFormCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByFormUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -27198,7 +26240,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFormCreatedByAndUpdatedBy", + "name": "cifUsersByFundingParameterArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -27305,7 +26347,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFormCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByFundingParameterArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -27313,7 +26355,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFormUpdatedByAndArchivedBy", + "name": "cifUsersByFundingParameterArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -27420,7 +26462,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFormUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByFundingParameterArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -27428,7 +26470,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFormUpdatedByAndCreatedBy", + "name": "cifUsersByFundingParameterCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -27535,7 +26577,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFormUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByFundingParameterCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -27543,7 +26585,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFundingParameterArchivedByAndCreatedBy", + "name": "cifUsersByFundingParameterCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -27650,7 +26692,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingParameterArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByFundingParameterCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -27658,7 +26700,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFundingParameterArchivedByAndUpdatedBy", + "name": "cifUsersByFundingParameterUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -27765,7 +26807,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingParameterArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByFundingParameterUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -27773,7 +26815,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFundingParameterCreatedByAndArchivedBy", + "name": "cifUsersByFundingParameterUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -27880,7 +26922,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingParameterCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByFundingParameterUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -27888,7 +26930,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFundingParameterCreatedByAndUpdatedBy", + "name": "cifUsersByFundingStreamArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -27995,7 +27037,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingParameterCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByFundingStreamArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -28003,7 +27045,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFundingParameterUpdatedByAndArchivedBy", + "name": "cifUsersByFundingStreamArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -28110,7 +27152,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingParameterUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByFundingStreamArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -28118,7 +27160,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFundingParameterUpdatedByAndCreatedBy", + "name": "cifUsersByFundingStreamCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -28225,7 +27267,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingParameterUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByFundingStreamCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -28233,7 +27275,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFundingStreamArchivedByAndCreatedBy", + "name": "cifUsersByFundingStreamCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -28340,7 +27382,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByFundingStreamCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -28348,7 +27390,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFundingStreamArchivedByAndUpdatedBy", + "name": "cifUsersByFundingStreamProjectStatusArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -28455,7 +27497,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByFundingStreamProjectStatusArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -28463,7 +27505,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFundingStreamCreatedByAndArchivedBy", + "name": "cifUsersByFundingStreamProjectStatusArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -28570,7 +27612,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByFundingStreamProjectStatusArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -28578,7 +27620,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFundingStreamCreatedByAndUpdatedBy", + "name": "cifUsersByFundingStreamProjectStatusCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -28685,7 +27727,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByFundingStreamProjectStatusCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -28693,7 +27735,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFundingStreamProjectStatusArchivedByAndCreatedBy", + "name": "cifUsersByFundingStreamProjectStatusCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -28800,7 +27842,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamProjectStatusArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByFundingStreamProjectStatusCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -28808,7 +27850,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFundingStreamProjectStatusArchivedByAndUpdatedBy", + "name": "cifUsersByFundingStreamProjectStatusUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -28915,7 +27957,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamProjectStatusArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByFundingStreamProjectStatusUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -28923,7 +27965,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFundingStreamProjectStatusCreatedByAndArchivedBy", + "name": "cifUsersByFundingStreamProjectStatusUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -29030,7 +28072,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamProjectStatusCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByFundingStreamProjectStatusUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -29038,7 +28080,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFundingStreamProjectStatusCreatedByAndUpdatedBy", + "name": "cifUsersByFundingStreamRfpArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -29145,7 +28187,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamProjectStatusCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByFundingStreamRfpArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -29153,7 +28195,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFundingStreamProjectStatusUpdatedByAndArchivedBy", + "name": "cifUsersByFundingStreamRfpArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -29260,7 +28302,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamProjectStatusUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByFundingStreamRfpArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -29268,7 +28310,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFundingStreamProjectStatusUpdatedByAndCreatedBy", + "name": "cifUsersByFundingStreamRfpCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -29375,7 +28417,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamProjectStatusUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByFundingStreamRfpCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -29383,7 +28425,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFundingStreamRfpArchivedByAndCreatedBy", + "name": "cifUsersByFundingStreamRfpCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -29490,7 +28532,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamRfpArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByFundingStreamRfpCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -29498,7 +28540,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFundingStreamRfpArchivedByAndUpdatedBy", + "name": "cifUsersByFundingStreamRfpUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -29605,7 +28647,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamRfpArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByFundingStreamRfpUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -29613,7 +28655,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFundingStreamRfpCreatedByAndArchivedBy", + "name": "cifUsersByFundingStreamRfpUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -29720,7 +28762,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamRfpCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByFundingStreamRfpUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -29728,7 +28770,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFundingStreamRfpCreatedByAndUpdatedBy", + "name": "cifUsersByFundingStreamUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -29835,7 +28877,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamRfpCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByFundingStreamUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -29843,7 +28885,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFundingStreamRfpUpdatedByAndArchivedBy", + "name": "cifUsersByFundingStreamUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -29950,7 +28992,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamRfpUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByFundingStreamUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -29958,7 +29000,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFundingStreamRfpUpdatedByAndCreatedBy", + "name": "cifUsersByMilestoneReportArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -30065,7 +29107,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamRfpUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByMilestoneReportArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -30073,7 +29115,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFundingStreamUpdatedByAndArchivedBy", + "name": "cifUsersByMilestoneReportArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -30180,7 +29222,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByMilestoneReportArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -30188,7 +29230,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFundingStreamUpdatedByAndCreatedBy", + "name": "cifUsersByMilestoneReportCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -30295,7 +29337,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByMilestoneReportCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -30303,7 +29345,7 @@ "deprecationReason": null }, { - "name": "cifUsersByMilestoneReportArchivedByAndCreatedBy", + "name": "cifUsersByMilestoneReportCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -30410,7 +29452,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByMilestoneReportArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByMilestoneReportCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -30418,7 +29460,7 @@ "deprecationReason": null }, { - "name": "cifUsersByMilestoneReportArchivedByAndUpdatedBy", + "name": "cifUsersByMilestoneReportUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -30525,7 +29567,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByMilestoneReportArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByMilestoneReportUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -30533,7 +29575,7 @@ "deprecationReason": null }, { - "name": "cifUsersByMilestoneReportCreatedByAndArchivedBy", + "name": "cifUsersByMilestoneReportUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -30640,7 +29682,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByMilestoneReportCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByMilestoneReportUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -30648,7 +29690,7 @@ "deprecationReason": null }, { - "name": "cifUsersByMilestoneReportCreatedByAndUpdatedBy", + "name": "cifUsersByOperatorArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -30755,7 +29797,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByMilestoneReportCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByOperatorArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -30763,7 +29805,7 @@ "deprecationReason": null }, { - "name": "cifUsersByMilestoneReportUpdatedByAndArchivedBy", + "name": "cifUsersByOperatorArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -30870,7 +29912,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByMilestoneReportUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByOperatorArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -30878,7 +29920,7 @@ "deprecationReason": null }, { - "name": "cifUsersByMilestoneReportUpdatedByAndCreatedBy", + "name": "cifUsersByOperatorCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -30985,7 +30027,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByMilestoneReportUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByOperatorCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -30993,7 +30035,7 @@ "deprecationReason": null }, { - "name": "cifUsersByOperatorArchivedByAndCreatedBy", + "name": "cifUsersByOperatorCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -31100,7 +30142,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByOperatorArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByOperatorCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -31108,7 +30150,7 @@ "deprecationReason": null }, { - "name": "cifUsersByOperatorArchivedByAndUpdatedBy", + "name": "cifUsersByOperatorUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -31215,7 +30257,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByOperatorArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByOperatorUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -31223,7 +30265,7 @@ "deprecationReason": null }, { - "name": "cifUsersByOperatorCreatedByAndArchivedBy", + "name": "cifUsersByOperatorUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -31330,7 +30372,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByOperatorCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByOperatorUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -31338,7 +30380,7 @@ "deprecationReason": null }, { - "name": "cifUsersByOperatorCreatedByAndUpdatedBy", + "name": "cifUsersByPaymentArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -31445,7 +30487,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByOperatorCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByPaymentArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -31453,7 +30495,7 @@ "deprecationReason": null }, { - "name": "cifUsersByOperatorUpdatedByAndArchivedBy", + "name": "cifUsersByPaymentArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -31560,7 +30602,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByOperatorUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByPaymentArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -31568,7 +30610,7 @@ "deprecationReason": null }, { - "name": "cifUsersByOperatorUpdatedByAndCreatedBy", + "name": "cifUsersByPaymentCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -31675,7 +30717,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByOperatorUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByPaymentCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -31683,7 +30725,7 @@ "deprecationReason": null }, { - "name": "cifUsersByPaymentArchivedByAndCreatedBy", + "name": "cifUsersByPaymentCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -31790,7 +30832,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByPaymentArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByPaymentCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -31798,7 +30840,7 @@ "deprecationReason": null }, { - "name": "cifUsersByPaymentArchivedByAndUpdatedBy", + "name": "cifUsersByPaymentUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -31905,7 +30947,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByPaymentArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByPaymentUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -31913,7 +30955,7 @@ "deprecationReason": null }, { - "name": "cifUsersByPaymentCreatedByAndArchivedBy", + "name": "cifUsersByPaymentUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -32020,7 +31062,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByPaymentCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByPaymentUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -32028,7 +31070,7 @@ "deprecationReason": null }, { - "name": "cifUsersByPaymentCreatedByAndUpdatedBy", + "name": "cifUsersByProjectArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -32135,7 +31177,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByPaymentCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -32143,7 +31185,7 @@ "deprecationReason": null }, { - "name": "cifUsersByPaymentUpdatedByAndArchivedBy", + "name": "cifUsersByProjectArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -32250,7 +31292,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByPaymentUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByProjectArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -32258,7 +31300,7 @@ "deprecationReason": null }, { - "name": "cifUsersByPaymentUpdatedByAndCreatedBy", + "name": "cifUsersByProjectContactArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -32365,7 +31407,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByPaymentUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectContactArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -32373,7 +31415,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectArchivedByAndCreatedBy", + "name": "cifUsersByProjectContactArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -32480,7 +31522,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectContactArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -32488,7 +31530,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectArchivedByAndUpdatedBy", + "name": "cifUsersByProjectContactCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -32595,7 +31637,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectContactCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -32603,7 +31645,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectAttachmentArchivedByAndCreatedBy", + "name": "cifUsersByProjectContactCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -32710,7 +31752,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectAttachmentArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectContactCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -32718,7 +31760,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectAttachmentArchivedByAndUpdatedBy", + "name": "cifUsersByProjectContactUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -32825,7 +31867,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectAttachmentArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectContactUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -32833,7 +31875,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectAttachmentCreatedByAndArchivedBy", + "name": "cifUsersByProjectContactUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -32940,7 +31982,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectAttachmentCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByProjectContactUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -32948,7 +31990,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectAttachmentCreatedByAndUpdatedBy", + "name": "cifUsersByProjectCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -33055,7 +32097,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectAttachmentCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -33063,7 +32105,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectAttachmentUpdatedByAndArchivedBy", + "name": "cifUsersByProjectCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -33170,7 +32212,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectAttachmentUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByProjectCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -33178,7 +32220,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectAttachmentUpdatedByAndCreatedBy", + "name": "cifUsersByProjectManagerArchivedByAndCifUserId", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -33285,7 +32327,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectAttachmentUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectManagerArchivedByAndCifUserIdManyToManyConnection", "ofType": null } }, @@ -33293,7 +32335,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectContactArchivedByAndCreatedBy", + "name": "cifUsersByProjectManagerArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -33400,7 +32442,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectContactArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectManagerArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -33408,7 +32450,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectContactArchivedByAndUpdatedBy", + "name": "cifUsersByProjectManagerArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -33515,7 +32557,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectContactArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectManagerArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -33523,7 +32565,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectContactCreatedByAndArchivedBy", + "name": "cifUsersByProjectManagerCifUserIdAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -33630,7 +32672,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectContactCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByProjectManagerCifUserIdAndArchivedByManyToManyConnection", "ofType": null } }, @@ -33638,7 +32680,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectContactCreatedByAndUpdatedBy", + "name": "cifUsersByProjectManagerCifUserIdAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -33745,7 +32787,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectContactCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectManagerCifUserIdAndCreatedByManyToManyConnection", "ofType": null } }, @@ -33753,7 +32795,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectContactUpdatedByAndArchivedBy", + "name": "cifUsersByProjectManagerCifUserIdAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -33860,7 +32902,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectContactUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByProjectManagerCifUserIdAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -33868,7 +32910,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectContactUpdatedByAndCreatedBy", + "name": "cifUsersByProjectManagerCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -33975,7 +33017,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectContactUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectManagerCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -33983,7 +33025,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectCreatedByAndArchivedBy", + "name": "cifUsersByProjectManagerCreatedByAndCifUserId", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -34090,7 +33132,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByProjectManagerCreatedByAndCifUserIdManyToManyConnection", "ofType": null } }, @@ -34098,7 +33140,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectCreatedByAndUpdatedBy", + "name": "cifUsersByProjectManagerCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -34205,7 +33247,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectManagerCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -34213,7 +33255,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectManagerArchivedByAndCifUserId", + "name": "cifUsersByProjectManagerLabelArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -34320,7 +33362,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerArchivedByAndCifUserIdManyToManyConnection", + "name": "CifUserCifUsersByProjectManagerLabelArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -34328,7 +33370,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectManagerArchivedByAndCreatedBy", + "name": "cifUsersByProjectManagerLabelArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -34435,7 +33477,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectManagerLabelArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -34443,7 +33485,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectManagerArchivedByAndUpdatedBy", + "name": "cifUsersByProjectManagerLabelCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -34550,7 +33592,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectManagerLabelCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -34558,7 +33600,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectManagerCifUserIdAndArchivedBy", + "name": "cifUsersByProjectManagerLabelCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -34665,7 +33707,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerCifUserIdAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByProjectManagerLabelCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -34673,7 +33715,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectManagerCifUserIdAndCreatedBy", + "name": "cifUsersByProjectManagerLabelUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -34780,7 +33822,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerCifUserIdAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectManagerLabelUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -34788,7 +33830,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectManagerCifUserIdAndUpdatedBy", + "name": "cifUsersByProjectManagerLabelUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -34895,7 +33937,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerCifUserIdAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectManagerLabelUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -34903,7 +33945,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectManagerCreatedByAndArchivedBy", + "name": "cifUsersByProjectManagerUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -35010,7 +34052,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByProjectManagerUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -35018,7 +34060,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectManagerCreatedByAndCifUserId", + "name": "cifUsersByProjectManagerUpdatedByAndCifUserId", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -35125,7 +34167,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerCreatedByAndCifUserIdManyToManyConnection", + "name": "CifUserCifUsersByProjectManagerUpdatedByAndCifUserIdManyToManyConnection", "ofType": null } }, @@ -35133,7 +34175,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectManagerCreatedByAndUpdatedBy", + "name": "cifUsersByProjectManagerUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -35240,7 +34282,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectManagerUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -35248,7 +34290,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectManagerLabelArchivedByAndCreatedBy", + "name": "cifUsersByProjectRevisionAmendmentTypeArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -35355,7 +34397,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerLabelArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectRevisionAmendmentTypeArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -35363,7 +34405,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectManagerLabelArchivedByAndUpdatedBy", + "name": "cifUsersByProjectRevisionAmendmentTypeArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -35470,7 +34512,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerLabelArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectRevisionAmendmentTypeArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -35478,7 +34520,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectManagerLabelCreatedByAndArchivedBy", + "name": "cifUsersByProjectRevisionAmendmentTypeCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -35585,7 +34627,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerLabelCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByProjectRevisionAmendmentTypeCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -35593,7 +34635,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectManagerLabelCreatedByAndUpdatedBy", + "name": "cifUsersByProjectRevisionAmendmentTypeCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -35700,7 +34742,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerLabelCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectRevisionAmendmentTypeCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -35708,7 +34750,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectManagerLabelUpdatedByAndArchivedBy", + "name": "cifUsersByProjectRevisionAmendmentTypeUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -35815,7 +34857,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerLabelUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByProjectRevisionAmendmentTypeUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -35823,7 +34865,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectManagerLabelUpdatedByAndCreatedBy", + "name": "cifUsersByProjectRevisionAmendmentTypeUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -35930,7 +34972,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerLabelUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectRevisionAmendmentTypeUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -35938,7 +34980,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectManagerUpdatedByAndArchivedBy", + "name": "cifUsersByProjectRevisionCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -36045,7 +35087,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByProjectRevisionCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -36053,7 +35095,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectManagerUpdatedByAndCifUserId", + "name": "cifUsersByProjectRevisionUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -36160,7 +35202,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerUpdatedByAndCifUserIdManyToManyConnection", + "name": "CifUserCifUsersByProjectRevisionUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -36168,7 +35210,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectManagerUpdatedByAndCreatedBy", + "name": "cifUsersByProjectStatusArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -36275,7 +35317,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectStatusArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -36283,7 +35325,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectRevisionAmendmentTypeArchivedByAndCreatedBy", + "name": "cifUsersByProjectStatusArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -36390,7 +35432,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionAmendmentTypeArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectStatusArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -36398,7 +35440,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectRevisionAmendmentTypeArchivedByAndUpdatedBy", + "name": "cifUsersByProjectStatusCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -36505,7 +35547,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionAmendmentTypeArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectStatusCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -36513,7 +35555,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectRevisionAmendmentTypeCreatedByAndArchivedBy", + "name": "cifUsersByProjectStatusCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -36620,7 +35662,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionAmendmentTypeCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByProjectStatusCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -36628,7 +35670,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectRevisionAmendmentTypeCreatedByAndUpdatedBy", + "name": "cifUsersByProjectStatusUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -36735,7 +35777,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionAmendmentTypeCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectStatusUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -36743,7 +35785,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectRevisionAmendmentTypeUpdatedByAndArchivedBy", + "name": "cifUsersByProjectStatusUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -36850,7 +35892,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionAmendmentTypeUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByProjectStatusUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -36858,7 +35900,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectRevisionAmendmentTypeUpdatedByAndCreatedBy", + "name": "cifUsersByProjectTypeArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -36965,7 +36007,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionAmendmentTypeUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectTypeArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -36973,7 +36015,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectRevisionCreatedByAndUpdatedBy", + "name": "cifUsersByProjectTypeArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -37080,7 +36122,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectTypeArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -37088,7 +36130,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectRevisionUpdatedByAndCreatedBy", + "name": "cifUsersByProjectTypeCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -37195,7 +36237,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectTypeCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -37203,7 +36245,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectStatusArchivedByAndCreatedBy", + "name": "cifUsersByProjectTypeCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -37310,7 +36352,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectStatusArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectTypeCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -37318,7 +36360,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectStatusArchivedByAndUpdatedBy", + "name": "cifUsersByProjectTypeUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -37425,7 +36467,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectStatusArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectTypeUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -37433,7 +36475,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectStatusCreatedByAndArchivedBy", + "name": "cifUsersByProjectTypeUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -37540,7 +36582,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectStatusCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByProjectTypeUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -37548,7 +36590,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectStatusCreatedByAndUpdatedBy", + "name": "cifUsersByProjectUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -37655,7 +36697,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectStatusCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -37663,7 +36705,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectStatusUpdatedByAndArchivedBy", + "name": "cifUsersByProjectUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -37770,7 +36812,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectStatusUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByProjectUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -37778,7 +36820,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectStatusUpdatedByAndCreatedBy", + "name": "cifUsersByReportTypeArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -37885,7 +36927,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectStatusUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByReportTypeArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -37893,7 +36935,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectTypeArchivedByAndCreatedBy", + "name": "cifUsersByReportTypeArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -38000,7 +37042,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectTypeArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByReportTypeArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -38008,7 +37050,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectTypeArchivedByAndUpdatedBy", + "name": "cifUsersByReportTypeCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -38115,7 +37157,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectTypeArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByReportTypeCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -38123,7 +37165,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectTypeCreatedByAndArchivedBy", + "name": "cifUsersByReportTypeCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -38230,7 +37272,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectTypeCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByReportTypeCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -38238,7 +37280,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectTypeCreatedByAndUpdatedBy", + "name": "cifUsersByReportTypeUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -38345,7 +37387,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectTypeCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByReportTypeUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -38353,7 +37395,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectTypeUpdatedByAndArchivedBy", + "name": "cifUsersByReportTypeUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -38460,7 +37502,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectTypeUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByReportTypeUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -38468,7 +37510,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectTypeUpdatedByAndCreatedBy", + "name": "cifUsersByReportingRequirementArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -38575,7 +37617,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectTypeUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByReportingRequirementArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -38583,7 +37625,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectUpdatedByAndArchivedBy", + "name": "cifUsersByReportingRequirementArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -38690,7 +37732,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByReportingRequirementArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -38698,7 +37740,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectUpdatedByAndCreatedBy", + "name": "cifUsersByReportingRequirementCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -38805,7 +37847,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByReportingRequirementCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -38813,7 +37855,7 @@ "deprecationReason": null }, { - "name": "cifUsersByReportTypeArchivedByAndCreatedBy", + "name": "cifUsersByReportingRequirementCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -38920,7 +37962,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByReportTypeArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByReportingRequirementCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -38928,7 +37970,7 @@ "deprecationReason": null }, { - "name": "cifUsersByReportTypeArchivedByAndUpdatedBy", + "name": "cifUsersByReportingRequirementUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -39035,7 +38077,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByReportTypeArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByReportingRequirementUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -39043,7 +38085,7 @@ "deprecationReason": null }, { - "name": "cifUsersByReportTypeCreatedByAndArchivedBy", + "name": "cifUsersByReportingRequirementUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -39150,7 +38192,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByReportTypeCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByReportingRequirementUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -39158,7 +38200,7 @@ "deprecationReason": null }, { - "name": "cifUsersByReportTypeCreatedByAndUpdatedBy", + "name": "cifUsersByRevisionStatusArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -39265,7 +38307,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByReportTypeCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByRevisionStatusArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -39273,7 +38315,7 @@ "deprecationReason": null }, { - "name": "cifUsersByReportTypeUpdatedByAndArchivedBy", + "name": "cifUsersByRevisionStatusArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -39380,7 +38422,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByReportTypeUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByRevisionStatusArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -39388,7 +38430,7 @@ "deprecationReason": null }, { - "name": "cifUsersByReportTypeUpdatedByAndCreatedBy", + "name": "cifUsersByRevisionStatusCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -39495,7 +38537,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByReportTypeUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByRevisionStatusCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -39503,7 +38545,7 @@ "deprecationReason": null }, { - "name": "cifUsersByReportingRequirementArchivedByAndCreatedBy", + "name": "cifUsersByRevisionStatusCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -39610,7 +38652,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByReportingRequirementArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByRevisionStatusCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -39618,7 +38660,7 @@ "deprecationReason": null }, { - "name": "cifUsersByReportingRequirementArchivedByAndUpdatedBy", + "name": "cifUsersByRevisionStatusUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -39725,7 +38767,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByReportingRequirementArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByRevisionStatusUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -39733,7 +38775,7 @@ "deprecationReason": null }, { - "name": "cifUsersByReportingRequirementCreatedByAndArchivedBy", + "name": "cifUsersByRevisionStatusUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -39840,7 +38882,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByReportingRequirementCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByRevisionStatusUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -39848,7 +38890,7 @@ "deprecationReason": null }, { - "name": "cifUsersByReportingRequirementCreatedByAndUpdatedBy", + "name": "cifUsersByRevisionTypeArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -39955,7 +38997,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByReportingRequirementCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByRevisionTypeArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -39963,7 +39005,7 @@ "deprecationReason": null }, { - "name": "cifUsersByReportingRequirementUpdatedByAndArchivedBy", + "name": "cifUsersByRevisionTypeArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -40070,7 +39112,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByReportingRequirementUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByRevisionTypeArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -40078,7 +39120,7 @@ "deprecationReason": null }, { - "name": "cifUsersByReportingRequirementUpdatedByAndCreatedBy", + "name": "cifUsersByRevisionTypeCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -40185,7 +39227,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByReportingRequirementUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByRevisionTypeCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -40193,7 +39235,7 @@ "deprecationReason": null }, { - "name": "cifUsersByRevisionStatusArchivedByAndCreatedBy", + "name": "cifUsersByRevisionTypeCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -40300,7 +39342,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionStatusArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByRevisionTypeCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -40308,7 +39350,7 @@ "deprecationReason": null }, { - "name": "cifUsersByRevisionStatusArchivedByAndUpdatedBy", + "name": "cifUsersByRevisionTypeUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -40415,7 +39457,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionStatusArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByRevisionTypeUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -40423,7 +39465,7 @@ "deprecationReason": null }, { - "name": "cifUsersByRevisionStatusCreatedByAndArchivedBy", + "name": "cifUsersByRevisionTypeUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -40530,7 +39572,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionStatusCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByRevisionTypeUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -40538,7 +39580,7 @@ "deprecationReason": null }, { - "name": "cifUsersByRevisionStatusCreatedByAndUpdatedBy", + "name": "cifUsersBySectorArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -40645,7 +39687,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionStatusCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersBySectorArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -40653,7 +39695,7 @@ "deprecationReason": null }, { - "name": "cifUsersByRevisionStatusUpdatedByAndArchivedBy", + "name": "cifUsersBySectorArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -40760,7 +39802,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionStatusUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersBySectorArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -40768,7 +39810,7 @@ "deprecationReason": null }, { - "name": "cifUsersByRevisionStatusUpdatedByAndCreatedBy", + "name": "cifUsersBySectorCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -40875,7 +39917,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionStatusUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersBySectorCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -40883,7 +39925,7 @@ "deprecationReason": null }, { - "name": "cifUsersByRevisionTypeArchivedByAndCreatedBy", + "name": "cifUsersBySectorCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -40990,7 +40032,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionTypeArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersBySectorCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -40998,7 +40040,7 @@ "deprecationReason": null }, { - "name": "cifUsersByRevisionTypeArchivedByAndUpdatedBy", + "name": "cifUsersBySectorUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -41105,7 +40147,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionTypeArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersBySectorUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -41113,7 +40155,7 @@ "deprecationReason": null }, { - "name": "cifUsersByRevisionTypeCreatedByAndArchivedBy", + "name": "cifUsersBySectorUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -41220,7 +40262,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionTypeCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersBySectorUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -41228,7 +40270,7 @@ "deprecationReason": null }, { - "name": "cifUsersByRevisionTypeCreatedByAndUpdatedBy", + "name": "cifUsersByUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -41289,7 +40331,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -41335,7 +40377,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionTypeCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUsersConnection", "ofType": null } }, @@ -41343,8 +40385,8 @@ "deprecationReason": null }, { - "name": "cifUsersByRevisionTypeUpdatedByAndArchivedBy", - "description": "Reads and enables pagination through a set of `CifUser`.", + "name": "contactsByArchivedBy", + "description": "Reads and enables pagination through a set of `Contact`.", "args": [ { "name": "after", @@ -41371,7 +40413,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserCondition", + "name": "ContactCondition", "ofType": null }, "defaultValue": null @@ -41381,7 +40423,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserFilter", + "name": "ContactFilter", "ofType": null }, "defaultValue": null @@ -41404,7 +40446,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -41428,7 +40470,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `CifUser`.", + "description": "The method to use when ordering `Contact`.", "type": { "kind": "LIST", "name": null, @@ -41437,7 +40479,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "CifUsersOrderBy", + "name": "ContactsOrderBy", "ofType": null } } @@ -41450,7 +40492,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionTypeUpdatedByAndArchivedByManyToManyConnection", + "name": "ContactsConnection", "ofType": null } }, @@ -41458,8 +40500,8 @@ "deprecationReason": null }, { - "name": "cifUsersByRevisionTypeUpdatedByAndCreatedBy", - "description": "Reads and enables pagination through a set of `CifUser`.", + "name": "contactsByCreatedBy", + "description": "Reads and enables pagination through a set of `Contact`.", "args": [ { "name": "after", @@ -41486,7 +40528,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserCondition", + "name": "ContactCondition", "ofType": null }, "defaultValue": null @@ -41496,7 +40538,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserFilter", + "name": "ContactFilter", "ofType": null }, "defaultValue": null @@ -41519,7 +40561,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -41543,7 +40585,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `CifUser`.", + "description": "The method to use when ordering `Contact`.", "type": { "kind": "LIST", "name": null, @@ -41552,7 +40594,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "CifUsersOrderBy", + "name": "ContactsOrderBy", "ofType": null } } @@ -41565,7 +40607,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionTypeUpdatedByAndCreatedByManyToManyConnection", + "name": "ContactsConnection", "ofType": null } }, @@ -41573,8 +40615,8 @@ "deprecationReason": null }, { - "name": "cifUsersBySectorArchivedByAndCreatedBy", - "description": "Reads and enables pagination through a set of `CifUser`.", + "name": "contactsByProjectContactArchivedByAndContactId", + "description": "Reads and enables pagination through a set of `Contact`.", "args": [ { "name": "after", @@ -41601,7 +40643,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserCondition", + "name": "ContactCondition", "ofType": null }, "defaultValue": null @@ -41611,7 +40653,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserFilter", + "name": "ContactFilter", "ofType": null }, "defaultValue": null @@ -41658,7 +40700,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `CifUser`.", + "description": "The method to use when ordering `Contact`.", "type": { "kind": "LIST", "name": null, @@ -41667,7 +40709,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "CifUsersOrderBy", + "name": "ContactsOrderBy", "ofType": null } } @@ -41680,7 +40722,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersBySectorArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserContactsByProjectContactArchivedByAndContactIdManyToManyConnection", "ofType": null } }, @@ -41688,8 +40730,8 @@ "deprecationReason": null }, { - "name": "cifUsersBySectorArchivedByAndUpdatedBy", - "description": "Reads and enables pagination through a set of `CifUser`.", + "name": "contactsByProjectContactCreatedByAndContactId", + "description": "Reads and enables pagination through a set of `Contact`.", "args": [ { "name": "after", @@ -41716,7 +40758,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserCondition", + "name": "ContactCondition", "ofType": null }, "defaultValue": null @@ -41726,7 +40768,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserFilter", + "name": "ContactFilter", "ofType": null }, "defaultValue": null @@ -41773,7 +40815,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `CifUser`.", + "description": "The method to use when ordering `Contact`.", "type": { "kind": "LIST", "name": null, @@ -41782,7 +40824,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "CifUsersOrderBy", + "name": "ContactsOrderBy", "ofType": null } } @@ -41795,7 +40837,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersBySectorArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserContactsByProjectContactCreatedByAndContactIdManyToManyConnection", "ofType": null } }, @@ -41803,8 +40845,8 @@ "deprecationReason": null }, { - "name": "cifUsersBySectorCreatedByAndArchivedBy", - "description": "Reads and enables pagination through a set of `CifUser`.", + "name": "contactsByProjectContactUpdatedByAndContactId", + "description": "Reads and enables pagination through a set of `Contact`.", "args": [ { "name": "after", @@ -41831,7 +40873,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserCondition", + "name": "ContactCondition", "ofType": null }, "defaultValue": null @@ -41841,7 +40883,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserFilter", + "name": "ContactFilter", "ofType": null }, "defaultValue": null @@ -41888,7 +40930,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `CifUser`.", + "description": "The method to use when ordering `Contact`.", "type": { "kind": "LIST", "name": null, @@ -41897,7 +40939,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "CifUsersOrderBy", + "name": "ContactsOrderBy", "ofType": null } } @@ -41910,7 +40952,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersBySectorCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserContactsByProjectContactUpdatedByAndContactIdManyToManyConnection", "ofType": null } }, @@ -41918,8 +40960,8 @@ "deprecationReason": null }, { - "name": "cifUsersBySectorCreatedByAndUpdatedBy", - "description": "Reads and enables pagination through a set of `CifUser`.", + "name": "contactsByUpdatedBy", + "description": "Reads and enables pagination through a set of `Contact`.", "args": [ { "name": "after", @@ -41946,7 +40988,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserCondition", + "name": "ContactCondition", "ofType": null }, "defaultValue": null @@ -41956,7 +40998,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserFilter", + "name": "ContactFilter", "ofType": null }, "defaultValue": null @@ -41979,7 +41021,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -42003,7 +41045,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `CifUser`.", + "description": "The method to use when ordering `Contact`.", "type": { "kind": "LIST", "name": null, @@ -42012,7 +41054,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "CifUsersOrderBy", + "name": "ContactsOrderBy", "ofType": null } } @@ -42025,7 +41067,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersBySectorCreatedByAndUpdatedByManyToManyConnection", + "name": "ContactsConnection", "ofType": null } }, @@ -42033,8 +41075,48 @@ "deprecationReason": null }, { - "name": "cifUsersBySectorUpdatedByAndArchivedBy", - "description": "Reads and enables pagination through a set of `CifUser`.", + "name": "createdAt", + "description": "created at timestamp", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdBy", + "description": "created by user id", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "emailAddress", + "description": "User's email address", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "emissionIntensityPaymentPercentsByArchivedBy", + "description": "Reads and enables pagination through a set of `EmissionIntensityPaymentPercent`.", "args": [ { "name": "after", @@ -42061,7 +41143,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserCondition", + "name": "EmissionIntensityPaymentPercentCondition", "ofType": null }, "defaultValue": null @@ -42071,7 +41153,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserFilter", + "name": "EmissionIntensityPaymentPercentFilter", "ofType": null }, "defaultValue": null @@ -42094,7 +41176,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -42118,7 +41200,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `CifUser`.", + "description": "The method to use when ordering `EmissionIntensityPaymentPercent`.", "type": { "kind": "LIST", "name": null, @@ -42127,7 +41209,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "CifUsersOrderBy", + "name": "EmissionIntensityPaymentPercentsOrderBy", "ofType": null } } @@ -42140,7 +41222,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersBySectorUpdatedByAndArchivedByManyToManyConnection", + "name": "EmissionIntensityPaymentPercentsConnection", "ofType": null } }, @@ -42148,8 +41230,8 @@ "deprecationReason": null }, { - "name": "cifUsersBySectorUpdatedByAndCreatedBy", - "description": "Reads and enables pagination through a set of `CifUser`.", + "name": "emissionIntensityPaymentPercentsByCreatedBy", + "description": "Reads and enables pagination through a set of `EmissionIntensityPaymentPercent`.", "args": [ { "name": "after", @@ -42176,7 +41258,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserCondition", + "name": "EmissionIntensityPaymentPercentCondition", "ofType": null }, "defaultValue": null @@ -42186,7 +41268,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserFilter", + "name": "EmissionIntensityPaymentPercentFilter", "ofType": null }, "defaultValue": null @@ -42209,7 +41291,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -42233,7 +41315,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `CifUser`.", + "description": "The method to use when ordering `EmissionIntensityPaymentPercent`.", "type": { "kind": "LIST", "name": null, @@ -42242,7 +41324,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "CifUsersOrderBy", + "name": "EmissionIntensityPaymentPercentsOrderBy", "ofType": null } } @@ -42255,7 +41337,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersBySectorUpdatedByAndCreatedByManyToManyConnection", + "name": "EmissionIntensityPaymentPercentsConnection", "ofType": null } }, @@ -42263,8 +41345,8 @@ "deprecationReason": null }, { - "name": "cifUsersByUpdatedBy", - "description": "Reads and enables pagination through a set of `CifUser`.", + "name": "emissionIntensityPaymentPercentsByUpdatedBy", + "description": "Reads and enables pagination through a set of `EmissionIntensityPaymentPercent`.", "args": [ { "name": "after", @@ -42291,7 +41373,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserCondition", + "name": "EmissionIntensityPaymentPercentCondition", "ofType": null }, "defaultValue": null @@ -42301,7 +41383,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserFilter", + "name": "EmissionIntensityPaymentPercentFilter", "ofType": null }, "defaultValue": null @@ -42348,7 +41430,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `CifUser`.", + "description": "The method to use when ordering `EmissionIntensityPaymentPercent`.", "type": { "kind": "LIST", "name": null, @@ -42357,7 +41439,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "CifUsersOrderBy", + "name": "EmissionIntensityPaymentPercentsOrderBy", "ofType": null } } @@ -42370,7 +41452,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUsersConnection", + "name": "EmissionIntensityPaymentPercentsConnection", "ofType": null } }, @@ -42378,8 +41460,8 @@ "deprecationReason": null }, { - "name": "contactsByArchivedBy", - "description": "Reads and enables pagination through a set of `Contact`.", + "name": "emissionIntensityReportsByArchivedBy", + "description": "Reads and enables pagination through a set of `EmissionIntensityReport`.", "args": [ { "name": "after", @@ -42406,7 +41488,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ContactCondition", + "name": "EmissionIntensityReportCondition", "ofType": null }, "defaultValue": null @@ -42416,7 +41498,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ContactFilter", + "name": "EmissionIntensityReportFilter", "ofType": null }, "defaultValue": null @@ -42463,7 +41545,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Contact`.", + "description": "The method to use when ordering `EmissionIntensityReport`.", "type": { "kind": "LIST", "name": null, @@ -42472,7 +41554,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ContactsOrderBy", + "name": "EmissionIntensityReportsOrderBy", "ofType": null } } @@ -42485,7 +41567,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ContactsConnection", + "name": "EmissionIntensityReportsConnection", "ofType": null } }, @@ -42493,8 +41575,8 @@ "deprecationReason": null }, { - "name": "contactsByCreatedBy", - "description": "Reads and enables pagination through a set of `Contact`.", + "name": "emissionIntensityReportsByCreatedBy", + "description": "Reads and enables pagination through a set of `EmissionIntensityReport`.", "args": [ { "name": "after", @@ -42521,7 +41603,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ContactCondition", + "name": "EmissionIntensityReportCondition", "ofType": null }, "defaultValue": null @@ -42531,7 +41613,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ContactFilter", + "name": "EmissionIntensityReportFilter", "ofType": null }, "defaultValue": null @@ -42578,7 +41660,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Contact`.", + "description": "The method to use when ordering `EmissionIntensityReport`.", "type": { "kind": "LIST", "name": null, @@ -42587,7 +41669,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ContactsOrderBy", + "name": "EmissionIntensityReportsOrderBy", "ofType": null } } @@ -42600,7 +41682,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ContactsConnection", + "name": "EmissionIntensityReportsConnection", "ofType": null } }, @@ -42608,8 +41690,8 @@ "deprecationReason": null }, { - "name": "contactsByProjectContactArchivedByAndContactId", - "description": "Reads and enables pagination through a set of `Contact`.", + "name": "emissionIntensityReportsByUpdatedBy", + "description": "Reads and enables pagination through a set of `EmissionIntensityReport`.", "args": [ { "name": "after", @@ -42636,7 +41718,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ContactCondition", + "name": "EmissionIntensityReportCondition", "ofType": null }, "defaultValue": null @@ -42646,7 +41728,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ContactFilter", + "name": "EmissionIntensityReportFilter", "ofType": null }, "defaultValue": null @@ -42669,7 +41751,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -42693,7 +41775,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Contact`.", + "description": "The method to use when ordering `EmissionIntensityReport`.", "type": { "kind": "LIST", "name": null, @@ -42702,7 +41784,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ContactsOrderBy", + "name": "EmissionIntensityReportsOrderBy", "ofType": null } } @@ -42715,7 +41797,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserContactsByProjectContactArchivedByAndContactIdManyToManyConnection", + "name": "EmissionIntensityReportsConnection", "ofType": null } }, @@ -42723,8 +41805,20 @@ "deprecationReason": null }, { - "name": "contactsByProjectContactCreatedByAndContactId", - "description": "Reads and enables pagination through a set of `Contact`.", + "name": "familyName", + "description": "User's last name", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "formChangesByCreatedBy", + "description": "Reads and enables pagination through a set of `FormChange`.", "args": [ { "name": "after", @@ -42751,7 +41845,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ContactCondition", + "name": "FormChangeCondition", "ofType": null }, "defaultValue": null @@ -42761,7 +41855,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ContactFilter", + "name": "FormChangeFilter", "ofType": null }, "defaultValue": null @@ -42776,16 +41870,6 @@ }, "defaultValue": null }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -42808,7 +41892,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Contact`.", + "description": "The method to use when ordering `FormChange`.", "type": { "kind": "LIST", "name": null, @@ -42817,7 +41901,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ContactsOrderBy", + "name": "FormChangesOrderBy", "ofType": null } } @@ -42830,7 +41914,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserContactsByProjectContactCreatedByAndContactIdManyToManyConnection", + "name": "FormChangesConnection", "ofType": null } }, @@ -42838,8 +41922,8 @@ "deprecationReason": null }, { - "name": "contactsByProjectContactUpdatedByAndContactId", - "description": "Reads and enables pagination through a set of `Contact`.", + "name": "formChangesByFormChangeCreatedByAndPreviousFormChangeId", + "description": "Reads and enables pagination through a set of `FormChange`.", "args": [ { "name": "after", @@ -42866,7 +41950,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ContactCondition", + "name": "FormChangeCondition", "ofType": null }, "defaultValue": null @@ -42876,7 +41960,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ContactFilter", + "name": "FormChangeFilter", "ofType": null }, "defaultValue": null @@ -42891,16 +41975,6 @@ }, "defaultValue": null }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -42923,7 +41997,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Contact`.", + "description": "The method to use when ordering `FormChange`.", "type": { "kind": "LIST", "name": null, @@ -42932,7 +42006,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ContactsOrderBy", + "name": "FormChangesOrderBy", "ofType": null } } @@ -42945,7 +42019,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserContactsByProjectContactUpdatedByAndContactIdManyToManyConnection", + "name": "CifUserFormChangesByFormChangeCreatedByAndPreviousFormChangeIdManyToManyConnection", "ofType": null } }, @@ -42953,8 +42027,8 @@ "deprecationReason": null }, { - "name": "contactsByUpdatedBy", - "description": "Reads and enables pagination through a set of `Contact`.", + "name": "formChangesByFormChangeUpdatedByAndPreviousFormChangeId", + "description": "Reads and enables pagination through a set of `FormChange`.", "args": [ { "name": "after", @@ -42981,7 +42055,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ContactCondition", + "name": "FormChangeCondition", "ofType": null }, "defaultValue": null @@ -42991,7 +42065,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ContactFilter", + "name": "FormChangeFilter", "ofType": null }, "defaultValue": null @@ -43007,14 +42081,109 @@ "defaultValue": null }, { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", + "name": "last", + "description": "Only read the last `n` values of the set.", "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `FormChange`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FormChangesOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CifUserFormChangesByFormChangeUpdatedByAndPreviousFormChangeIdManyToManyConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "formChangesByUpdatedBy", + "description": "Reads and enables pagination through a set of `FormChange`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "FormChangeCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "FormChangeFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { "name": "last", @@ -43038,7 +42207,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Contact`.", + "description": "The method to use when ordering `FormChange`.", "type": { "kind": "LIST", "name": null, @@ -43047,7 +42216,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ContactsOrderBy", + "name": "FormChangesOrderBy", "ofType": null } } @@ -43060,23 +42229,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ContactsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": "created at timestamp", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Datetime", + "name": "FormChangesConnection", "ofType": null } }, @@ -43084,32 +42237,8 @@ "deprecationReason": null }, { - "name": "createdBy", - "description": "created by user id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "emailAddress", - "description": "User's email address", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "emissionIntensityPaymentPercentsByArchivedBy", - "description": "Reads and enables pagination through a set of `EmissionIntensityPaymentPercent`.", + "name": "formsByArchivedBy", + "description": "Reads and enables pagination through a set of `Form`.", "args": [ { "name": "after", @@ -43136,7 +42265,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityPaymentPercentCondition", + "name": "FormCondition", "ofType": null }, "defaultValue": null @@ -43146,7 +42275,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityPaymentPercentFilter", + "name": "FormFilter", "ofType": null }, "defaultValue": null @@ -43193,7 +42322,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `EmissionIntensityPaymentPercent`.", + "description": "The method to use when ordering `Form`.", "type": { "kind": "LIST", "name": null, @@ -43202,7 +42331,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "EmissionIntensityPaymentPercentsOrderBy", + "name": "FormsOrderBy", "ofType": null } } @@ -43215,7 +42344,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "EmissionIntensityPaymentPercentsConnection", + "name": "FormsConnection", "ofType": null } }, @@ -43223,8 +42352,8 @@ "deprecationReason": null }, { - "name": "emissionIntensityPaymentPercentsByCreatedBy", - "description": "Reads and enables pagination through a set of `EmissionIntensityPaymentPercent`.", + "name": "formsByCreatedBy", + "description": "Reads and enables pagination through a set of `Form`.", "args": [ { "name": "after", @@ -43251,7 +42380,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityPaymentPercentCondition", + "name": "FormCondition", "ofType": null }, "defaultValue": null @@ -43261,7 +42390,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityPaymentPercentFilter", + "name": "FormFilter", "ofType": null }, "defaultValue": null @@ -43308,7 +42437,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `EmissionIntensityPaymentPercent`.", + "description": "The method to use when ordering `Form`.", "type": { "kind": "LIST", "name": null, @@ -43317,7 +42446,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "EmissionIntensityPaymentPercentsOrderBy", + "name": "FormsOrderBy", "ofType": null } } @@ -43330,7 +42459,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "EmissionIntensityPaymentPercentsConnection", + "name": "FormsConnection", "ofType": null } }, @@ -43338,8 +42467,8 @@ "deprecationReason": null }, { - "name": "emissionIntensityPaymentPercentsByUpdatedBy", - "description": "Reads and enables pagination through a set of `EmissionIntensityPaymentPercent`.", + "name": "formsByFormChangeCreatedByAndJsonSchemaName", + "description": "Reads and enables pagination through a set of `Form`.", "args": [ { "name": "after", @@ -43366,7 +42495,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityPaymentPercentCondition", + "name": "FormCondition", "ofType": null }, "defaultValue": null @@ -43376,7 +42505,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityPaymentPercentFilter", + "name": "FormFilter", "ofType": null }, "defaultValue": null @@ -43399,7 +42528,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -43423,7 +42552,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `EmissionIntensityPaymentPercent`.", + "description": "The method to use when ordering `Form`.", "type": { "kind": "LIST", "name": null, @@ -43432,7 +42561,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "EmissionIntensityPaymentPercentsOrderBy", + "name": "FormsOrderBy", "ofType": null } } @@ -43445,7 +42574,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "EmissionIntensityPaymentPercentsConnection", + "name": "CifUserFormsByFormChangeCreatedByAndJsonSchemaNameManyToManyConnection", "ofType": null } }, @@ -43453,8 +42582,8 @@ "deprecationReason": null }, { - "name": "emissionIntensityReportsByArchivedBy", - "description": "Reads and enables pagination through a set of `EmissionIntensityReport`.", + "name": "formsByFormChangeUpdatedByAndJsonSchemaName", + "description": "Reads and enables pagination through a set of `Form`.", "args": [ { "name": "after", @@ -43481,7 +42610,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityReportCondition", + "name": "FormCondition", "ofType": null }, "defaultValue": null @@ -43491,7 +42620,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityReportFilter", + "name": "FormFilter", "ofType": null }, "defaultValue": null @@ -43514,7 +42643,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -43538,7 +42667,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `EmissionIntensityReport`.", + "description": "The method to use when ordering `Form`.", "type": { "kind": "LIST", "name": null, @@ -43547,7 +42676,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "EmissionIntensityReportsOrderBy", + "name": "FormsOrderBy", "ofType": null } } @@ -43560,7 +42689,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "EmissionIntensityReportsConnection", + "name": "CifUserFormsByFormChangeUpdatedByAndJsonSchemaNameManyToManyConnection", "ofType": null } }, @@ -43568,8 +42697,8 @@ "deprecationReason": null }, { - "name": "emissionIntensityReportsByCreatedBy", - "description": "Reads and enables pagination through a set of `EmissionIntensityReport`.", + "name": "formsByUpdatedBy", + "description": "Reads and enables pagination through a set of `Form`.", "args": [ { "name": "after", @@ -43596,7 +42725,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityReportCondition", + "name": "FormCondition", "ofType": null }, "defaultValue": null @@ -43606,7 +42735,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityReportFilter", + "name": "FormFilter", "ofType": null }, "defaultValue": null @@ -43653,7 +42782,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `EmissionIntensityReport`.", + "description": "The method to use when ordering `Form`.", "type": { "kind": "LIST", "name": null, @@ -43662,7 +42791,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "EmissionIntensityReportsOrderBy", + "name": "FormsOrderBy", "ofType": null } } @@ -43675,7 +42804,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "EmissionIntensityReportsConnection", + "name": "FormsConnection", "ofType": null } }, @@ -43683,8 +42812,20 @@ "deprecationReason": null }, { - "name": "emissionIntensityReportsByUpdatedBy", - "description": "Reads and enables pagination through a set of `EmissionIntensityReport`.", + "name": "fullName", + "description": "Displays a cif_user as: given_name family_name", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fundingParametersByArchivedBy", + "description": "Reads and enables pagination through a set of `FundingParameter`.", "args": [ { "name": "after", @@ -43711,7 +42852,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityReportCondition", + "name": "FundingParameterCondition", "ofType": null }, "defaultValue": null @@ -43721,7 +42862,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityReportFilter", + "name": "FundingParameterFilter", "ofType": null }, "defaultValue": null @@ -43768,7 +42909,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `EmissionIntensityReport`.", + "description": "The method to use when ordering `FundingParameter`.", "type": { "kind": "LIST", "name": null, @@ -43777,7 +42918,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "EmissionIntensityReportsOrderBy", + "name": "FundingParametersOrderBy", "ofType": null } } @@ -43790,7 +42931,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "EmissionIntensityReportsConnection", + "name": "FundingParametersConnection", "ofType": null } }, @@ -43798,20 +42939,8 @@ "deprecationReason": null }, { - "name": "familyName", - "description": "User's last name", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "formChangesByCreatedBy", - "description": "Reads and enables pagination through a set of `FormChange`.", + "name": "fundingParametersByCreatedBy", + "description": "Reads and enables pagination through a set of `FundingParameter`.", "args": [ { "name": "after", @@ -43838,7 +42967,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormChangeCondition", + "name": "FundingParameterCondition", "ofType": null }, "defaultValue": null @@ -43848,7 +42977,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormChangeFilter", + "name": "FundingParameterFilter", "ofType": null }, "defaultValue": null @@ -43863,6 +42992,16 @@ }, "defaultValue": null }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "INHERIT" + }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -43885,7 +43024,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FormChange`.", + "description": "The method to use when ordering `FundingParameter`.", "type": { "kind": "LIST", "name": null, @@ -43894,7 +43033,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FormChangesOrderBy", + "name": "FundingParametersOrderBy", "ofType": null } } @@ -43907,7 +43046,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FormChangesConnection", + "name": "FundingParametersConnection", "ofType": null } }, @@ -43915,8 +43054,8 @@ "deprecationReason": null }, { - "name": "formChangesByFormChangeCreatedByAndPreviousFormChangeId", - "description": "Reads and enables pagination through a set of `FormChange`.", + "name": "fundingParametersByUpdatedBy", + "description": "Reads and enables pagination through a set of `FundingParameter`.", "args": [ { "name": "after", @@ -43943,7 +43082,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormChangeCondition", + "name": "FundingParameterCondition", "ofType": null }, "defaultValue": null @@ -43953,7 +43092,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormChangeFilter", + "name": "FundingParameterFilter", "ofType": null }, "defaultValue": null @@ -43968,6 +43107,16 @@ }, "defaultValue": null }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "INHERIT" + }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -43990,7 +43139,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FormChange`.", + "description": "The method to use when ordering `FundingParameter`.", "type": { "kind": "LIST", "name": null, @@ -43999,7 +43148,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FormChangesOrderBy", + "name": "FundingParametersOrderBy", "ofType": null } } @@ -44012,7 +43161,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserFormChangesByFormChangeCreatedByAndPreviousFormChangeIdManyToManyConnection", + "name": "FundingParametersConnection", "ofType": null } }, @@ -44020,8 +43169,8 @@ "deprecationReason": null }, { - "name": "formChangesByFormChangeUpdatedByAndPreviousFormChangeId", - "description": "Reads and enables pagination through a set of `FormChange`.", + "name": "fundingStreamProjectStatusesByArchivedBy", + "description": "Reads and enables pagination through a set of `FundingStreamProjectStatus`.", "args": [ { "name": "after", @@ -44048,7 +43197,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormChangeCondition", + "name": "FundingStreamProjectStatusCondition", "ofType": null }, "defaultValue": null @@ -44058,7 +43207,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormChangeFilter", + "name": "FundingStreamProjectStatusFilter", "ofType": null }, "defaultValue": null @@ -44073,6 +43222,16 @@ }, "defaultValue": null }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "INHERIT" + }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -44095,7 +43254,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FormChange`.", + "description": "The method to use when ordering `FundingStreamProjectStatus`.", "type": { "kind": "LIST", "name": null, @@ -44104,7 +43263,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FormChangesOrderBy", + "name": "FundingStreamProjectStatusesOrderBy", "ofType": null } } @@ -44117,7 +43276,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserFormChangesByFormChangeUpdatedByAndPreviousFormChangeIdManyToManyConnection", + "name": "FundingStreamProjectStatusesConnection", "ofType": null } }, @@ -44125,8 +43284,8 @@ "deprecationReason": null }, { - "name": "formChangesByUpdatedBy", - "description": "Reads and enables pagination through a set of `FormChange`.", + "name": "fundingStreamProjectStatusesByCreatedBy", + "description": "Reads and enables pagination through a set of `FundingStreamProjectStatus`.", "args": [ { "name": "after", @@ -44153,7 +43312,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormChangeCondition", + "name": "FundingStreamProjectStatusCondition", "ofType": null }, "defaultValue": null @@ -44163,7 +43322,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormChangeFilter", + "name": "FundingStreamProjectStatusFilter", "ofType": null }, "defaultValue": null @@ -44178,6 +43337,16 @@ }, "defaultValue": null }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "INHERIT" + }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -44200,7 +43369,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FormChange`.", + "description": "The method to use when ordering `FundingStreamProjectStatus`.", "type": { "kind": "LIST", "name": null, @@ -44209,7 +43378,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FormChangesOrderBy", + "name": "FundingStreamProjectStatusesOrderBy", "ofType": null } } @@ -44222,7 +43391,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FormChangesConnection", + "name": "FundingStreamProjectStatusesConnection", "ofType": null } }, @@ -44230,8 +43399,8 @@ "deprecationReason": null }, { - "name": "formsByArchivedBy", - "description": "Reads and enables pagination through a set of `Form`.", + "name": "fundingStreamProjectStatusesByUpdatedBy", + "description": "Reads and enables pagination through a set of `FundingStreamProjectStatus`.", "args": [ { "name": "after", @@ -44258,7 +43427,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormCondition", + "name": "FundingStreamProjectStatusCondition", "ofType": null }, "defaultValue": null @@ -44268,7 +43437,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormFilter", + "name": "FundingStreamProjectStatusFilter", "ofType": null }, "defaultValue": null @@ -44315,7 +43484,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Form`.", + "description": "The method to use when ordering `FundingStreamProjectStatus`.", "type": { "kind": "LIST", "name": null, @@ -44324,7 +43493,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FormsOrderBy", + "name": "FundingStreamProjectStatusesOrderBy", "ofType": null } } @@ -44337,7 +43506,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FormsConnection", + "name": "FundingStreamProjectStatusesConnection", "ofType": null } }, @@ -44345,8 +43514,8 @@ "deprecationReason": null }, { - "name": "formsByCreatedBy", - "description": "Reads and enables pagination through a set of `Form`.", + "name": "fundingStreamRfpsByArchivedBy", + "description": "Reads and enables pagination through a set of `FundingStreamRfp`.", "args": [ { "name": "after", @@ -44373,7 +43542,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormCondition", + "name": "FundingStreamRfpCondition", "ofType": null }, "defaultValue": null @@ -44383,7 +43552,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormFilter", + "name": "FundingStreamRfpFilter", "ofType": null }, "defaultValue": null @@ -44430,7 +43599,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Form`.", + "description": "The method to use when ordering `FundingStreamRfp`.", "type": { "kind": "LIST", "name": null, @@ -44439,7 +43608,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FormsOrderBy", + "name": "FundingStreamRfpsOrderBy", "ofType": null } } @@ -44452,7 +43621,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FormsConnection", + "name": "FundingStreamRfpsConnection", "ofType": null } }, @@ -44460,8 +43629,8 @@ "deprecationReason": null }, { - "name": "formsByFormChangeCreatedByAndJsonSchemaName", - "description": "Reads and enables pagination through a set of `Form`.", + "name": "fundingStreamRfpsByCreatedBy", + "description": "Reads and enables pagination through a set of `FundingStreamRfp`.", "args": [ { "name": "after", @@ -44488,7 +43657,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormCondition", + "name": "FundingStreamRfpCondition", "ofType": null }, "defaultValue": null @@ -44498,7 +43667,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormFilter", + "name": "FundingStreamRfpFilter", "ofType": null }, "defaultValue": null @@ -44521,7 +43690,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -44545,7 +43714,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Form`.", + "description": "The method to use when ordering `FundingStreamRfp`.", "type": { "kind": "LIST", "name": null, @@ -44554,7 +43723,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FormsOrderBy", + "name": "FundingStreamRfpsOrderBy", "ofType": null } } @@ -44567,7 +43736,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserFormsByFormChangeCreatedByAndJsonSchemaNameManyToManyConnection", + "name": "FundingStreamRfpsConnection", "ofType": null } }, @@ -44575,8 +43744,8 @@ "deprecationReason": null }, { - "name": "formsByFormChangeUpdatedByAndJsonSchemaName", - "description": "Reads and enables pagination through a set of `Form`.", + "name": "fundingStreamRfpsByProjectArchivedByAndFundingStreamRfpId", + "description": "Reads and enables pagination through a set of `FundingStreamRfp`.", "args": [ { "name": "after", @@ -44603,7 +43772,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormCondition", + "name": "FundingStreamRfpCondition", "ofType": null }, "defaultValue": null @@ -44613,7 +43782,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormFilter", + "name": "FundingStreamRfpFilter", "ofType": null }, "defaultValue": null @@ -44660,7 +43829,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Form`.", + "description": "The method to use when ordering `FundingStreamRfp`.", "type": { "kind": "LIST", "name": null, @@ -44669,7 +43838,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FormsOrderBy", + "name": "FundingStreamRfpsOrderBy", "ofType": null } } @@ -44682,7 +43851,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserFormsByFormChangeUpdatedByAndJsonSchemaNameManyToManyConnection", + "name": "CifUserFundingStreamRfpsByProjectArchivedByAndFundingStreamRfpIdManyToManyConnection", "ofType": null } }, @@ -44690,8 +43859,8 @@ "deprecationReason": null }, { - "name": "formsByUpdatedBy", - "description": "Reads and enables pagination through a set of `Form`.", + "name": "fundingStreamRfpsByProjectCreatedByAndFundingStreamRfpId", + "description": "Reads and enables pagination through a set of `FundingStreamRfp`.", "args": [ { "name": "after", @@ -44718,7 +43887,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormCondition", + "name": "FundingStreamRfpCondition", "ofType": null }, "defaultValue": null @@ -44728,7 +43897,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormFilter", + "name": "FundingStreamRfpFilter", "ofType": null }, "defaultValue": null @@ -44751,7 +43920,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -44775,7 +43944,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Form`.", + "description": "The method to use when ordering `FundingStreamRfp`.", "type": { "kind": "LIST", "name": null, @@ -44784,7 +43953,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FormsOrderBy", + "name": "FundingStreamRfpsOrderBy", "ofType": null } } @@ -44797,7 +43966,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FormsConnection", + "name": "CifUserFundingStreamRfpsByProjectCreatedByAndFundingStreamRfpIdManyToManyConnection", "ofType": null } }, @@ -44805,20 +43974,123 @@ "deprecationReason": null }, { - "name": "fullName", - "description": "Displays a cif_user as: given_name family_name", - "args": [], + "name": "fundingStreamRfpsByProjectUpdatedByAndFundingStreamRfpId", + "description": "Reads and enables pagination through a set of `FundingStreamRfp`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "FundingStreamRfpCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "FundingStreamRfpFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `FundingStreamRfp`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FundingStreamRfpsOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CifUserFundingStreamRfpsByProjectUpdatedByAndFundingStreamRfpIdManyToManyConnection", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "fundingParametersByArchivedBy", - "description": "Reads and enables pagination through a set of `FundingParameter`.", + "name": "fundingStreamRfpsByUpdatedBy", + "description": "Reads and enables pagination through a set of `FundingStreamRfp`.", "args": [ { "name": "after", @@ -44845,7 +44117,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingParameterCondition", + "name": "FundingStreamRfpCondition", "ofType": null }, "defaultValue": null @@ -44855,7 +44127,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingParameterFilter", + "name": "FundingStreamRfpFilter", "ofType": null }, "defaultValue": null @@ -44902,7 +44174,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingParameter`.", + "description": "The method to use when ordering `FundingStreamRfp`.", "type": { "kind": "LIST", "name": null, @@ -44911,7 +44183,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingParametersOrderBy", + "name": "FundingStreamRfpsOrderBy", "ofType": null } } @@ -44924,7 +44196,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingParametersConnection", + "name": "FundingStreamRfpsConnection", "ofType": null } }, @@ -44932,8 +44204,8 @@ "deprecationReason": null }, { - "name": "fundingParametersByCreatedBy", - "description": "Reads and enables pagination through a set of `FundingParameter`.", + "name": "fundingStreamsByArchivedBy", + "description": "Reads and enables pagination through a set of `FundingStream`.", "args": [ { "name": "after", @@ -44960,7 +44232,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingParameterCondition", + "name": "FundingStreamCondition", "ofType": null }, "defaultValue": null @@ -44970,7 +44242,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingParameterFilter", + "name": "FundingStreamFilter", "ofType": null }, "defaultValue": null @@ -45017,7 +44289,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingParameter`.", + "description": "The method to use when ordering `FundingStream`.", "type": { "kind": "LIST", "name": null, @@ -45026,7 +44298,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingParametersOrderBy", + "name": "FundingStreamsOrderBy", "ofType": null } } @@ -45039,7 +44311,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingParametersConnection", + "name": "FundingStreamsConnection", "ofType": null } }, @@ -45047,8 +44319,8 @@ "deprecationReason": null }, { - "name": "fundingParametersByUpdatedBy", - "description": "Reads and enables pagination through a set of `FundingParameter`.", + "name": "fundingStreamsByCreatedBy", + "description": "Reads and enables pagination through a set of `FundingStream`.", "args": [ { "name": "after", @@ -45075,7 +44347,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingParameterCondition", + "name": "FundingStreamCondition", "ofType": null }, "defaultValue": null @@ -45085,7 +44357,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingParameterFilter", + "name": "FundingStreamFilter", "ofType": null }, "defaultValue": null @@ -45132,7 +44404,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingParameter`.", + "description": "The method to use when ordering `FundingStream`.", "type": { "kind": "LIST", "name": null, @@ -45141,7 +44413,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingParametersOrderBy", + "name": "FundingStreamsOrderBy", "ofType": null } } @@ -45154,7 +44426,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingParametersConnection", + "name": "FundingStreamsConnection", "ofType": null } }, @@ -45162,8 +44434,8 @@ "deprecationReason": null }, { - "name": "fundingStreamProjectStatusesByArchivedBy", - "description": "Reads and enables pagination through a set of `FundingStreamProjectStatus`.", + "name": "fundingStreamsByFundingStreamProjectStatusArchivedByAndFundingStreamId", + "description": "Reads and enables pagination through a set of `FundingStream`.", "args": [ { "name": "after", @@ -45190,7 +44462,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamProjectStatusCondition", + "name": "FundingStreamCondition", "ofType": null }, "defaultValue": null @@ -45200,7 +44472,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamProjectStatusFilter", + "name": "FundingStreamFilter", "ofType": null }, "defaultValue": null @@ -45223,7 +44495,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -45247,7 +44519,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStreamProjectStatus`.", + "description": "The method to use when ordering `FundingStream`.", "type": { "kind": "LIST", "name": null, @@ -45256,7 +44528,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamProjectStatusesOrderBy", + "name": "FundingStreamsOrderBy", "ofType": null } } @@ -45269,7 +44541,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingStreamProjectStatusesConnection", + "name": "CifUserFundingStreamsByFundingStreamProjectStatusArchivedByAndFundingStreamIdManyToManyConnection", "ofType": null } }, @@ -45277,8 +44549,8 @@ "deprecationReason": null }, { - "name": "fundingStreamProjectStatusesByCreatedBy", - "description": "Reads and enables pagination through a set of `FundingStreamProjectStatus`.", + "name": "fundingStreamsByFundingStreamProjectStatusCreatedByAndFundingStreamId", + "description": "Reads and enables pagination through a set of `FundingStream`.", "args": [ { "name": "after", @@ -45305,7 +44577,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamProjectStatusCondition", + "name": "FundingStreamCondition", "ofType": null }, "defaultValue": null @@ -45315,7 +44587,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamProjectStatusFilter", + "name": "FundingStreamFilter", "ofType": null }, "defaultValue": null @@ -45338,7 +44610,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -45362,7 +44634,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStreamProjectStatus`.", + "description": "The method to use when ordering `FundingStream`.", "type": { "kind": "LIST", "name": null, @@ -45371,7 +44643,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamProjectStatusesOrderBy", + "name": "FundingStreamsOrderBy", "ofType": null } } @@ -45384,7 +44656,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingStreamProjectStatusesConnection", + "name": "CifUserFundingStreamsByFundingStreamProjectStatusCreatedByAndFundingStreamIdManyToManyConnection", "ofType": null } }, @@ -45392,8 +44664,8 @@ "deprecationReason": null }, { - "name": "fundingStreamProjectStatusesByUpdatedBy", - "description": "Reads and enables pagination through a set of `FundingStreamProjectStatus`.", + "name": "fundingStreamsByFundingStreamProjectStatusUpdatedByAndFundingStreamId", + "description": "Reads and enables pagination through a set of `FundingStream`.", "args": [ { "name": "after", @@ -45420,7 +44692,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamProjectStatusCondition", + "name": "FundingStreamCondition", "ofType": null }, "defaultValue": null @@ -45430,7 +44702,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamProjectStatusFilter", + "name": "FundingStreamFilter", "ofType": null }, "defaultValue": null @@ -45453,7 +44725,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -45477,7 +44749,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStreamProjectStatus`.", + "description": "The method to use when ordering `FundingStream`.", "type": { "kind": "LIST", "name": null, @@ -45486,7 +44758,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamProjectStatusesOrderBy", + "name": "FundingStreamsOrderBy", "ofType": null } } @@ -45499,7 +44771,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingStreamProjectStatusesConnection", + "name": "CifUserFundingStreamsByFundingStreamProjectStatusUpdatedByAndFundingStreamIdManyToManyConnection", "ofType": null } }, @@ -45507,8 +44779,8 @@ "deprecationReason": null }, { - "name": "fundingStreamRfpsByArchivedBy", - "description": "Reads and enables pagination through a set of `FundingStreamRfp`.", + "name": "fundingStreamsByFundingStreamRfpArchivedByAndFundingStreamId", + "description": "Reads and enables pagination through a set of `FundingStream`.", "args": [ { "name": "after", @@ -45535,7 +44807,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamRfpCondition", + "name": "FundingStreamCondition", "ofType": null }, "defaultValue": null @@ -45545,7 +44817,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamRfpFilter", + "name": "FundingStreamFilter", "ofType": null }, "defaultValue": null @@ -45568,7 +44840,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -45592,7 +44864,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStreamRfp`.", + "description": "The method to use when ordering `FundingStream`.", "type": { "kind": "LIST", "name": null, @@ -45601,7 +44873,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamRfpsOrderBy", + "name": "FundingStreamsOrderBy", "ofType": null } } @@ -45614,7 +44886,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingStreamRfpsConnection", + "name": "CifUserFundingStreamsByFundingStreamRfpArchivedByAndFundingStreamIdManyToManyConnection", "ofType": null } }, @@ -45622,8 +44894,8 @@ "deprecationReason": null }, { - "name": "fundingStreamRfpsByCreatedBy", - "description": "Reads and enables pagination through a set of `FundingStreamRfp`.", + "name": "fundingStreamsByFundingStreamRfpCreatedByAndFundingStreamId", + "description": "Reads and enables pagination through a set of `FundingStream`.", "args": [ { "name": "after", @@ -45650,7 +44922,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamRfpCondition", + "name": "FundingStreamCondition", "ofType": null }, "defaultValue": null @@ -45660,7 +44932,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamRfpFilter", + "name": "FundingStreamFilter", "ofType": null }, "defaultValue": null @@ -45683,7 +44955,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -45707,7 +44979,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStreamRfp`.", + "description": "The method to use when ordering `FundingStream`.", "type": { "kind": "LIST", "name": null, @@ -45716,7 +44988,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamRfpsOrderBy", + "name": "FundingStreamsOrderBy", "ofType": null } } @@ -45729,7 +45001,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingStreamRfpsConnection", + "name": "CifUserFundingStreamsByFundingStreamRfpCreatedByAndFundingStreamIdManyToManyConnection", "ofType": null } }, @@ -45737,8 +45009,8 @@ "deprecationReason": null }, { - "name": "fundingStreamRfpsByProjectArchivedByAndFundingStreamRfpId", - "description": "Reads and enables pagination through a set of `FundingStreamRfp`.", + "name": "fundingStreamsByFundingStreamRfpUpdatedByAndFundingStreamId", + "description": "Reads and enables pagination through a set of `FundingStream`.", "args": [ { "name": "after", @@ -45765,7 +45037,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamRfpCondition", + "name": "FundingStreamCondition", "ofType": null }, "defaultValue": null @@ -45775,7 +45047,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamRfpFilter", + "name": "FundingStreamFilter", "ofType": null }, "defaultValue": null @@ -45822,7 +45094,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStreamRfp`.", + "description": "The method to use when ordering `FundingStream`.", "type": { "kind": "LIST", "name": null, @@ -45831,7 +45103,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamRfpsOrderBy", + "name": "FundingStreamsOrderBy", "ofType": null } } @@ -45844,7 +45116,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserFundingStreamRfpsByProjectArchivedByAndFundingStreamRfpIdManyToManyConnection", + "name": "CifUserFundingStreamsByFundingStreamRfpUpdatedByAndFundingStreamIdManyToManyConnection", "ofType": null } }, @@ -45852,8 +45124,8 @@ "deprecationReason": null }, { - "name": "fundingStreamRfpsByProjectCreatedByAndFundingStreamRfpId", - "description": "Reads and enables pagination through a set of `FundingStreamRfp`.", + "name": "fundingStreamsByUpdatedBy", + "description": "Reads and enables pagination through a set of `FundingStream`.", "args": [ { "name": "after", @@ -45880,7 +45152,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamRfpCondition", + "name": "FundingStreamCondition", "ofType": null }, "defaultValue": null @@ -45890,7 +45162,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamRfpFilter", + "name": "FundingStreamFilter", "ofType": null }, "defaultValue": null @@ -45913,7 +45185,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -45937,7 +45209,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStreamRfp`.", + "description": "The method to use when ordering `FundingStream`.", "type": { "kind": "LIST", "name": null, @@ -45946,7 +45218,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamRfpsOrderBy", + "name": "FundingStreamsOrderBy", "ofType": null } } @@ -45959,7 +45231,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserFundingStreamRfpsByProjectCreatedByAndFundingStreamRfpIdManyToManyConnection", + "name": "FundingStreamsConnection", "ofType": null } }, @@ -45967,114 +45239,27 @@ "deprecationReason": null }, { - "name": "fundingStreamRfpsByProjectUpdatedByAndFundingStreamRfpId", - "description": "Reads and enables pagination through a set of `FundingStreamRfp`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "FundingStreamRfpCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "FundingStreamRfpFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `FundingStreamRfp`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "FundingStreamRfpsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], + "name": "givenName", + "description": "User's first name", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "A globally unique identifier. Can be used in various places throughout the system to identify this single value.", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "CifUserFundingStreamRfpsByProjectUpdatedByAndFundingStreamRfpIdManyToManyConnection", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, @@ -46082,8 +45267,8 @@ "deprecationReason": null }, { - "name": "fundingStreamRfpsByUpdatedBy", - "description": "Reads and enables pagination through a set of `FundingStreamRfp`.", + "name": "milestoneReportsByArchivedBy", + "description": "Reads and enables pagination through a set of `MilestoneReport`.", "args": [ { "name": "after", @@ -46110,7 +45295,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamRfpCondition", + "name": "MilestoneReportCondition", "ofType": null }, "defaultValue": null @@ -46120,7 +45305,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamRfpFilter", + "name": "MilestoneReportFilter", "ofType": null }, "defaultValue": null @@ -46167,7 +45352,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStreamRfp`.", + "description": "The method to use when ordering `MilestoneReport`.", "type": { "kind": "LIST", "name": null, @@ -46176,7 +45361,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamRfpsOrderBy", + "name": "MilestoneReportsOrderBy", "ofType": null } } @@ -46189,7 +45374,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingStreamRfpsConnection", + "name": "MilestoneReportsConnection", "ofType": null } }, @@ -46197,8 +45382,8 @@ "deprecationReason": null }, { - "name": "fundingStreamsByArchivedBy", - "description": "Reads and enables pagination through a set of `FundingStream`.", + "name": "milestoneReportsByCreatedBy", + "description": "Reads and enables pagination through a set of `MilestoneReport`.", "args": [ { "name": "after", @@ -46225,7 +45410,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamCondition", + "name": "MilestoneReportCondition", "ofType": null }, "defaultValue": null @@ -46235,7 +45420,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamFilter", + "name": "MilestoneReportFilter", "ofType": null }, "defaultValue": null @@ -46282,7 +45467,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStream`.", + "description": "The method to use when ordering `MilestoneReport`.", "type": { "kind": "LIST", "name": null, @@ -46291,7 +45476,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamsOrderBy", + "name": "MilestoneReportsOrderBy", "ofType": null } } @@ -46304,7 +45489,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingStreamsConnection", + "name": "MilestoneReportsConnection", "ofType": null } }, @@ -46312,8 +45497,8 @@ "deprecationReason": null }, { - "name": "fundingStreamsByCreatedBy", - "description": "Reads and enables pagination through a set of `FundingStream`.", + "name": "milestoneReportsByUpdatedBy", + "description": "Reads and enables pagination through a set of `MilestoneReport`.", "args": [ { "name": "after", @@ -46340,7 +45525,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamCondition", + "name": "MilestoneReportCondition", "ofType": null }, "defaultValue": null @@ -46350,7 +45535,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamFilter", + "name": "MilestoneReportFilter", "ofType": null }, "defaultValue": null @@ -46397,7 +45582,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStream`.", + "description": "The method to use when ordering `MilestoneReport`.", "type": { "kind": "LIST", "name": null, @@ -46406,7 +45591,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamsOrderBy", + "name": "MilestoneReportsOrderBy", "ofType": null } } @@ -46419,7 +45604,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingStreamsConnection", + "name": "MilestoneReportsConnection", "ofType": null } }, @@ -46427,8 +45612,8 @@ "deprecationReason": null }, { - "name": "fundingStreamsByFundingStreamProjectStatusArchivedByAndFundingStreamId", - "description": "Reads and enables pagination through a set of `FundingStream`.", + "name": "operatorsByArchivedBy", + "description": "Reads and enables pagination through a set of `Operator`.", "args": [ { "name": "after", @@ -46455,7 +45640,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamCondition", + "name": "OperatorCondition", "ofType": null }, "defaultValue": null @@ -46465,7 +45650,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamFilter", + "name": "OperatorFilter", "ofType": null }, "defaultValue": null @@ -46488,7 +45673,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -46512,7 +45697,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStream`.", + "description": "The method to use when ordering `Operator`.", "type": { "kind": "LIST", "name": null, @@ -46521,7 +45706,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamsOrderBy", + "name": "OperatorsOrderBy", "ofType": null } } @@ -46534,7 +45719,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserFundingStreamsByFundingStreamProjectStatusArchivedByAndFundingStreamIdManyToManyConnection", + "name": "OperatorsConnection", "ofType": null } }, @@ -46542,8 +45727,8 @@ "deprecationReason": null }, { - "name": "fundingStreamsByFundingStreamProjectStatusCreatedByAndFundingStreamId", - "description": "Reads and enables pagination through a set of `FundingStream`.", + "name": "operatorsByCreatedBy", + "description": "Reads and enables pagination through a set of `Operator`.", "args": [ { "name": "after", @@ -46570,122 +45755,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "FundingStreamFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `FundingStream`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "FundingStreamsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CifUserFundingStreamsByFundingStreamProjectStatusCreatedByAndFundingStreamIdManyToManyConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fundingStreamsByFundingStreamProjectStatusUpdatedByAndFundingStreamId", - "description": "Reads and enables pagination through a set of `FundingStream`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "FundingStreamCondition", + "name": "OperatorCondition", "ofType": null }, "defaultValue": null @@ -46695,7 +45765,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamFilter", + "name": "OperatorFilter", "ofType": null }, "defaultValue": null @@ -46718,7 +45788,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -46742,7 +45812,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStream`.", + "description": "The method to use when ordering `Operator`.", "type": { "kind": "LIST", "name": null, @@ -46751,7 +45821,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamsOrderBy", + "name": "OperatorsOrderBy", "ofType": null } } @@ -46764,7 +45834,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserFundingStreamsByFundingStreamProjectStatusUpdatedByAndFundingStreamIdManyToManyConnection", + "name": "OperatorsConnection", "ofType": null } }, @@ -46772,8 +45842,8 @@ "deprecationReason": null }, { - "name": "fundingStreamsByFundingStreamRfpArchivedByAndFundingStreamId", - "description": "Reads and enables pagination through a set of `FundingStream`.", + "name": "operatorsByProjectArchivedByAndOperatorId", + "description": "Reads and enables pagination through a set of `Operator`.", "args": [ { "name": "after", @@ -46800,7 +45870,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamCondition", + "name": "OperatorCondition", "ofType": null }, "defaultValue": null @@ -46810,7 +45880,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamFilter", + "name": "OperatorFilter", "ofType": null }, "defaultValue": null @@ -46857,7 +45927,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStream`.", + "description": "The method to use when ordering `Operator`.", "type": { "kind": "LIST", "name": null, @@ -46866,7 +45936,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamsOrderBy", + "name": "OperatorsOrderBy", "ofType": null } } @@ -46879,7 +45949,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserFundingStreamsByFundingStreamRfpArchivedByAndFundingStreamIdManyToManyConnection", + "name": "CifUserOperatorsByProjectArchivedByAndOperatorIdManyToManyConnection", "ofType": null } }, @@ -46887,8 +45957,8 @@ "deprecationReason": null }, { - "name": "fundingStreamsByFundingStreamRfpCreatedByAndFundingStreamId", - "description": "Reads and enables pagination through a set of `FundingStream`.", + "name": "operatorsByProjectCreatedByAndOperatorId", + "description": "Reads and enables pagination through a set of `Operator`.", "args": [ { "name": "after", @@ -46915,7 +45985,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamCondition", + "name": "OperatorCondition", "ofType": null }, "defaultValue": null @@ -46925,7 +45995,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamFilter", + "name": "OperatorFilter", "ofType": null }, "defaultValue": null @@ -46972,7 +46042,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStream`.", + "description": "The method to use when ordering `Operator`.", "type": { "kind": "LIST", "name": null, @@ -46981,7 +46051,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamsOrderBy", + "name": "OperatorsOrderBy", "ofType": null } } @@ -46994,7 +46064,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserFundingStreamsByFundingStreamRfpCreatedByAndFundingStreamIdManyToManyConnection", + "name": "CifUserOperatorsByProjectCreatedByAndOperatorIdManyToManyConnection", "ofType": null } }, @@ -47002,8 +46072,8 @@ "deprecationReason": null }, { - "name": "fundingStreamsByFundingStreamRfpUpdatedByAndFundingStreamId", - "description": "Reads and enables pagination through a set of `FundingStream`.", + "name": "operatorsByProjectUpdatedByAndOperatorId", + "description": "Reads and enables pagination through a set of `Operator`.", "args": [ { "name": "after", @@ -47030,7 +46100,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamCondition", + "name": "OperatorCondition", "ofType": null }, "defaultValue": null @@ -47040,7 +46110,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamFilter", + "name": "OperatorFilter", "ofType": null }, "defaultValue": null @@ -47087,7 +46157,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStream`.", + "description": "The method to use when ordering `Operator`.", "type": { "kind": "LIST", "name": null, @@ -47096,7 +46166,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamsOrderBy", + "name": "OperatorsOrderBy", "ofType": null } } @@ -47109,7 +46179,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserFundingStreamsByFundingStreamRfpUpdatedByAndFundingStreamIdManyToManyConnection", + "name": "CifUserOperatorsByProjectUpdatedByAndOperatorIdManyToManyConnection", "ofType": null } }, @@ -47117,8 +46187,8 @@ "deprecationReason": null }, { - "name": "fundingStreamsByUpdatedBy", - "description": "Reads and enables pagination through a set of `FundingStream`.", + "name": "operatorsByUpdatedBy", + "description": "Reads and enables pagination through a set of `Operator`.", "args": [ { "name": "after", @@ -47145,7 +46215,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamCondition", + "name": "OperatorCondition", "ofType": null }, "defaultValue": null @@ -47155,7 +46225,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamFilter", + "name": "OperatorFilter", "ofType": null }, "defaultValue": null @@ -47202,7 +46272,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStream`.", + "description": "The method to use when ordering `Operator`.", "type": { "kind": "LIST", "name": null, @@ -47211,7 +46281,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamsOrderBy", + "name": "OperatorsOrderBy", "ofType": null } } @@ -47224,35 +46294,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingStreamsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "givenName", - "description": "User's first name", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "A globally unique identifier. Can be used in various places throughout the system to identify this single value.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", + "name": "OperatorsConnection", "ofType": null } }, @@ -47260,8 +46302,8 @@ "deprecationReason": null }, { - "name": "milestoneReportsByArchivedBy", - "description": "Reads and enables pagination through a set of `MilestoneReport`.", + "name": "paymentsByArchivedBy", + "description": "Reads and enables pagination through a set of `Payment`.", "args": [ { "name": "after", @@ -47288,7 +46330,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "MilestoneReportCondition", + "name": "PaymentCondition", "ofType": null }, "defaultValue": null @@ -47298,7 +46340,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "MilestoneReportFilter", + "name": "PaymentFilter", "ofType": null }, "defaultValue": null @@ -47345,7 +46387,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `MilestoneReport`.", + "description": "The method to use when ordering `Payment`.", "type": { "kind": "LIST", "name": null, @@ -47354,7 +46396,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "MilestoneReportsOrderBy", + "name": "PaymentsOrderBy", "ofType": null } } @@ -47367,7 +46409,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "MilestoneReportsConnection", + "name": "PaymentsConnection", "ofType": null } }, @@ -47375,8 +46417,8 @@ "deprecationReason": null }, { - "name": "milestoneReportsByCreatedBy", - "description": "Reads and enables pagination through a set of `MilestoneReport`.", + "name": "paymentsByCreatedBy", + "description": "Reads and enables pagination through a set of `Payment`.", "args": [ { "name": "after", @@ -47403,7 +46445,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "MilestoneReportCondition", + "name": "PaymentCondition", "ofType": null }, "defaultValue": null @@ -47413,7 +46455,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "MilestoneReportFilter", + "name": "PaymentFilter", "ofType": null }, "defaultValue": null @@ -47460,7 +46502,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `MilestoneReport`.", + "description": "The method to use when ordering `Payment`.", "type": { "kind": "LIST", "name": null, @@ -47469,7 +46511,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "MilestoneReportsOrderBy", + "name": "PaymentsOrderBy", "ofType": null } } @@ -47482,7 +46524,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "MilestoneReportsConnection", + "name": "PaymentsConnection", "ofType": null } }, @@ -47490,8 +46532,8 @@ "deprecationReason": null }, { - "name": "milestoneReportsByUpdatedBy", - "description": "Reads and enables pagination through a set of `MilestoneReport`.", + "name": "paymentsByUpdatedBy", + "description": "Reads and enables pagination through a set of `Payment`.", "args": [ { "name": "after", @@ -47518,7 +46560,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "MilestoneReportCondition", + "name": "PaymentCondition", "ofType": null }, "defaultValue": null @@ -47528,7 +46570,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "MilestoneReportFilter", + "name": "PaymentFilter", "ofType": null }, "defaultValue": null @@ -47575,7 +46617,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `MilestoneReport`.", + "description": "The method to use when ordering `Payment`.", "type": { "kind": "LIST", "name": null, @@ -47584,7 +46626,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "MilestoneReportsOrderBy", + "name": "PaymentsOrderBy", "ofType": null } } @@ -47597,7 +46639,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "MilestoneReportsConnection", + "name": "PaymentsConnection", "ofType": null } }, @@ -47605,8 +46647,8 @@ "deprecationReason": null }, { - "name": "operatorsByArchivedBy", - "description": "Reads and enables pagination through a set of `Operator`.", + "name": "projectContactsByArchivedBy", + "description": "Reads and enables pagination through a set of `ProjectContact`.", "args": [ { "name": "after", @@ -47633,7 +46675,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "OperatorCondition", + "name": "ProjectContactCondition", "ofType": null }, "defaultValue": null @@ -47643,7 +46685,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "OperatorFilter", + "name": "ProjectContactFilter", "ofType": null }, "defaultValue": null @@ -47690,7 +46732,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Operator`.", + "description": "The method to use when ordering `ProjectContact`.", "type": { "kind": "LIST", "name": null, @@ -47699,7 +46741,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "OperatorsOrderBy", + "name": "ProjectContactsOrderBy", "ofType": null } } @@ -47712,7 +46754,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "OperatorsConnection", + "name": "ProjectContactsConnection", "ofType": null } }, @@ -47720,8 +46762,8 @@ "deprecationReason": null }, { - "name": "operatorsByCreatedBy", - "description": "Reads and enables pagination through a set of `Operator`.", + "name": "projectContactsByCreatedBy", + "description": "Reads and enables pagination through a set of `ProjectContact`.", "args": [ { "name": "after", @@ -47748,7 +46790,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "OperatorCondition", + "name": "ProjectContactCondition", "ofType": null }, "defaultValue": null @@ -47758,7 +46800,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "OperatorFilter", + "name": "ProjectContactFilter", "ofType": null }, "defaultValue": null @@ -47805,7 +46847,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Operator`.", + "description": "The method to use when ordering `ProjectContact`.", "type": { "kind": "LIST", "name": null, @@ -47814,7 +46856,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "OperatorsOrderBy", + "name": "ProjectContactsOrderBy", "ofType": null } } @@ -47827,7 +46869,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "OperatorsConnection", + "name": "ProjectContactsConnection", "ofType": null } }, @@ -47835,8 +46877,8 @@ "deprecationReason": null }, { - "name": "operatorsByProjectArchivedByAndOperatorId", - "description": "Reads and enables pagination through a set of `Operator`.", + "name": "projectContactsByUpdatedBy", + "description": "Reads and enables pagination through a set of `ProjectContact`.", "args": [ { "name": "after", @@ -47863,7 +46905,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "OperatorCondition", + "name": "ProjectContactCondition", "ofType": null }, "defaultValue": null @@ -47873,7 +46915,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "OperatorFilter", + "name": "ProjectContactFilter", "ofType": null }, "defaultValue": null @@ -47896,7 +46938,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -47920,7 +46962,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Operator`.", + "description": "The method to use when ordering `ProjectContact`.", "type": { "kind": "LIST", "name": null, @@ -47929,7 +46971,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "OperatorsOrderBy", + "name": "ProjectContactsOrderBy", "ofType": null } } @@ -47942,7 +46984,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserOperatorsByProjectArchivedByAndOperatorIdManyToManyConnection", + "name": "ProjectContactsConnection", "ofType": null } }, @@ -47950,8 +46992,8 @@ "deprecationReason": null }, { - "name": "operatorsByProjectCreatedByAndOperatorId", - "description": "Reads and enables pagination through a set of `Operator`.", + "name": "projectManagerLabelsByArchivedBy", + "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", "args": [ { "name": "after", @@ -47978,7 +47020,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "OperatorCondition", + "name": "ProjectManagerLabelCondition", "ofType": null }, "defaultValue": null @@ -47988,7 +47030,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "OperatorFilter", + "name": "ProjectManagerLabelFilter", "ofType": null }, "defaultValue": null @@ -48011,7 +47053,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -48035,7 +47077,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Operator`.", + "description": "The method to use when ordering `ProjectManagerLabel`.", "type": { "kind": "LIST", "name": null, @@ -48044,7 +47086,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "OperatorsOrderBy", + "name": "ProjectManagerLabelsOrderBy", "ofType": null } } @@ -48057,7 +47099,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserOperatorsByProjectCreatedByAndOperatorIdManyToManyConnection", + "name": "ProjectManagerLabelsConnection", "ofType": null } }, @@ -48065,8 +47107,8 @@ "deprecationReason": null }, { - "name": "operatorsByProjectUpdatedByAndOperatorId", - "description": "Reads and enables pagination through a set of `Operator`.", + "name": "projectManagerLabelsByCreatedBy", + "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", "args": [ { "name": "after", @@ -48093,7 +47135,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "OperatorCondition", + "name": "ProjectManagerLabelCondition", "ofType": null }, "defaultValue": null @@ -48103,7 +47145,122 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "OperatorFilter", + "name": "ProjectManagerLabelFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "INHERIT" + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `ProjectManagerLabel`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectManagerLabelsOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectManagerLabelsConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectManagerLabelsByProjectManagerArchivedByAndProjectManagerLabelId", + "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectManagerLabelCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectManagerLabelFilter", "ofType": null }, "defaultValue": null @@ -48150,7 +47307,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Operator`.", + "description": "The method to use when ordering `ProjectManagerLabel`.", "type": { "kind": "LIST", "name": null, @@ -48159,7 +47316,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "OperatorsOrderBy", + "name": "ProjectManagerLabelsOrderBy", "ofType": null } } @@ -48172,7 +47329,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserOperatorsByProjectUpdatedByAndOperatorIdManyToManyConnection", + "name": "CifUserProjectManagerLabelsByProjectManagerArchivedByAndProjectManagerLabelIdManyToManyConnection", "ofType": null } }, @@ -48180,8 +47337,8 @@ "deprecationReason": null }, { - "name": "operatorsByUpdatedBy", - "description": "Reads and enables pagination through a set of `Operator`.", + "name": "projectManagerLabelsByProjectManagerCifUserIdAndProjectManagerLabelId", + "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", "args": [ { "name": "after", @@ -48208,7 +47365,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "OperatorCondition", + "name": "ProjectManagerLabelCondition", "ofType": null }, "defaultValue": null @@ -48218,7 +47375,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "OperatorFilter", + "name": "ProjectManagerLabelFilter", "ofType": null }, "defaultValue": null @@ -48241,7 +47398,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -48265,7 +47422,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Operator`.", + "description": "The method to use when ordering `ProjectManagerLabel`.", "type": { "kind": "LIST", "name": null, @@ -48274,7 +47431,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "OperatorsOrderBy", + "name": "ProjectManagerLabelsOrderBy", "ofType": null } } @@ -48287,7 +47444,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "OperatorsConnection", + "name": "CifUserProjectManagerLabelsByProjectManagerCifUserIdAndProjectManagerLabelIdManyToManyConnection", "ofType": null } }, @@ -48295,8 +47452,8 @@ "deprecationReason": null }, { - "name": "paymentsByArchivedBy", - "description": "Reads and enables pagination through a set of `Payment`.", + "name": "projectManagerLabelsByProjectManagerCreatedByAndProjectManagerLabelId", + "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", "args": [ { "name": "after", @@ -48323,7 +47480,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "PaymentCondition", + "name": "ProjectManagerLabelCondition", "ofType": null }, "defaultValue": null @@ -48333,7 +47490,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "PaymentFilter", + "name": "ProjectManagerLabelFilter", "ofType": null }, "defaultValue": null @@ -48356,7 +47513,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -48380,7 +47537,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Payment`.", + "description": "The method to use when ordering `ProjectManagerLabel`.", "type": { "kind": "LIST", "name": null, @@ -48389,7 +47546,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "PaymentsOrderBy", + "name": "ProjectManagerLabelsOrderBy", "ofType": null } } @@ -48402,7 +47559,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PaymentsConnection", + "name": "CifUserProjectManagerLabelsByProjectManagerCreatedByAndProjectManagerLabelIdManyToManyConnection", "ofType": null } }, @@ -48410,8 +47567,8 @@ "deprecationReason": null }, { - "name": "paymentsByCreatedBy", - "description": "Reads and enables pagination through a set of `Payment`.", + "name": "projectManagerLabelsByProjectManagerUpdatedByAndProjectManagerLabelId", + "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", "args": [ { "name": "after", @@ -48438,7 +47595,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "PaymentCondition", + "name": "ProjectManagerLabelCondition", "ofType": null }, "defaultValue": null @@ -48448,7 +47605,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "PaymentFilter", + "name": "ProjectManagerLabelFilter", "ofType": null }, "defaultValue": null @@ -48471,7 +47628,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -48495,7 +47652,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Payment`.", + "description": "The method to use when ordering `ProjectManagerLabel`.", "type": { "kind": "LIST", "name": null, @@ -48504,7 +47661,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "PaymentsOrderBy", + "name": "ProjectManagerLabelsOrderBy", "ofType": null } } @@ -48517,7 +47674,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PaymentsConnection", + "name": "CifUserProjectManagerLabelsByProjectManagerUpdatedByAndProjectManagerLabelIdManyToManyConnection", "ofType": null } }, @@ -48525,8 +47682,8 @@ "deprecationReason": null }, { - "name": "paymentsByUpdatedBy", - "description": "Reads and enables pagination through a set of `Payment`.", + "name": "projectManagerLabelsByUpdatedBy", + "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", "args": [ { "name": "after", @@ -48553,7 +47710,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "PaymentCondition", + "name": "ProjectManagerLabelCondition", "ofType": null }, "defaultValue": null @@ -48563,7 +47720,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "PaymentFilter", + "name": "ProjectManagerLabelFilter", "ofType": null }, "defaultValue": null @@ -48610,7 +47767,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Payment`.", + "description": "The method to use when ordering `ProjectManagerLabel`.", "type": { "kind": "LIST", "name": null, @@ -48619,7 +47776,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "PaymentsOrderBy", + "name": "ProjectManagerLabelsOrderBy", "ofType": null } } @@ -48632,7 +47789,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PaymentsConnection", + "name": "ProjectManagerLabelsConnection", "ofType": null } }, @@ -48640,8 +47797,8 @@ "deprecationReason": null }, { - "name": "projectAttachmentsByArchivedBy", - "description": "Reads and enables pagination through a set of `ProjectAttachment`.", + "name": "projectManagersByArchivedBy", + "description": "Reads and enables pagination through a set of `ProjectManager`.", "args": [ { "name": "after", @@ -48668,7 +47825,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentCondition", + "name": "ProjectManagerCondition", "ofType": null }, "defaultValue": null @@ -48678,7 +47835,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentFilter", + "name": "ProjectManagerFilter", "ofType": null }, "defaultValue": null @@ -48725,7 +47882,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectAttachment`.", + "description": "The method to use when ordering `ProjectManager`.", "type": { "kind": "LIST", "name": null, @@ -48734,7 +47891,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectAttachmentsOrderBy", + "name": "ProjectManagersOrderBy", "ofType": null } } @@ -48747,7 +47904,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectAttachmentsConnection", + "name": "ProjectManagersConnection", "ofType": null } }, @@ -48755,8 +47912,8 @@ "deprecationReason": null }, { - "name": "projectAttachmentsByCreatedBy", - "description": "Reads and enables pagination through a set of `ProjectAttachment`.", + "name": "projectManagersByCifUserId", + "description": "Reads and enables pagination through a set of `ProjectManager`.", "args": [ { "name": "after", @@ -48783,7 +47940,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentCondition", + "name": "ProjectManagerCondition", "ofType": null }, "defaultValue": null @@ -48793,7 +47950,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentFilter", + "name": "ProjectManagerFilter", "ofType": null }, "defaultValue": null @@ -48840,7 +47997,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectAttachment`.", + "description": "The method to use when ordering `ProjectManager`.", "type": { "kind": "LIST", "name": null, @@ -48849,7 +48006,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectAttachmentsOrderBy", + "name": "ProjectManagersOrderBy", "ofType": null } } @@ -48862,7 +48019,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectAttachmentsConnection", + "name": "ProjectManagersConnection", "ofType": null } }, @@ -48870,8 +48027,8 @@ "deprecationReason": null }, { - "name": "projectAttachmentsByUpdatedBy", - "description": "Reads and enables pagination through a set of `ProjectAttachment`.", + "name": "projectManagersByCreatedBy", + "description": "Reads and enables pagination through a set of `ProjectManager`.", "args": [ { "name": "after", @@ -48898,7 +48055,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentCondition", + "name": "ProjectManagerCondition", "ofType": null }, "defaultValue": null @@ -48908,7 +48065,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentFilter", + "name": "ProjectManagerFilter", "ofType": null }, "defaultValue": null @@ -48955,7 +48112,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectAttachment`.", + "description": "The method to use when ordering `ProjectManager`.", "type": { "kind": "LIST", "name": null, @@ -48964,7 +48121,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectAttachmentsOrderBy", + "name": "ProjectManagersOrderBy", "ofType": null } } @@ -48977,7 +48134,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectAttachmentsConnection", + "name": "ProjectManagersConnection", "ofType": null } }, @@ -48985,8 +48142,8 @@ "deprecationReason": null }, { - "name": "projectContactsByArchivedBy", - "description": "Reads and enables pagination through a set of `ProjectContact`.", + "name": "projectManagersByUpdatedBy", + "description": "Reads and enables pagination through a set of `ProjectManager`.", "args": [ { "name": "after", @@ -49013,7 +48170,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactCondition", + "name": "ProjectManagerCondition", "ofType": null }, "defaultValue": null @@ -49023,7 +48180,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactFilter", + "name": "ProjectManagerFilter", "ofType": null }, "defaultValue": null @@ -49070,7 +48227,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectContact`.", + "description": "The method to use when ordering `ProjectManager`.", "type": { "kind": "LIST", "name": null, @@ -49079,7 +48236,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectContactsOrderBy", + "name": "ProjectManagersOrderBy", "ofType": null } } @@ -49092,7 +48249,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectContactsConnection", + "name": "ProjectManagersConnection", "ofType": null } }, @@ -49100,8 +48257,8 @@ "deprecationReason": null }, { - "name": "projectContactsByCreatedBy", - "description": "Reads and enables pagination through a set of `ProjectContact`.", + "name": "projectRevisionAmendmentTypesByArchivedBy", + "description": "Reads and enables pagination through a set of `ProjectRevisionAmendmentType`.", "args": [ { "name": "after", @@ -49128,7 +48285,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactCondition", + "name": "ProjectRevisionAmendmentTypeCondition", "ofType": null }, "defaultValue": null @@ -49138,7 +48295,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactFilter", + "name": "ProjectRevisionAmendmentTypeFilter", "ofType": null }, "defaultValue": null @@ -49185,7 +48342,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectContact`.", + "description": "The method to use when ordering `ProjectRevisionAmendmentType`.", "type": { "kind": "LIST", "name": null, @@ -49194,7 +48351,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectContactsOrderBy", + "name": "ProjectRevisionAmendmentTypesOrderBy", "ofType": null } } @@ -49207,7 +48364,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectContactsConnection", + "name": "ProjectRevisionAmendmentTypesConnection", "ofType": null } }, @@ -49215,8 +48372,8 @@ "deprecationReason": null }, { - "name": "projectContactsByUpdatedBy", - "description": "Reads and enables pagination through a set of `ProjectContact`.", + "name": "projectRevisionAmendmentTypesByCreatedBy", + "description": "Reads and enables pagination through a set of `ProjectRevisionAmendmentType`.", "args": [ { "name": "after", @@ -49243,7 +48400,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactCondition", + "name": "ProjectRevisionAmendmentTypeCondition", "ofType": null }, "defaultValue": null @@ -49253,7 +48410,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactFilter", + "name": "ProjectRevisionAmendmentTypeFilter", "ofType": null }, "defaultValue": null @@ -49300,7 +48457,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectContact`.", + "description": "The method to use when ordering `ProjectRevisionAmendmentType`.", "type": { "kind": "LIST", "name": null, @@ -49309,7 +48466,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectContactsOrderBy", + "name": "ProjectRevisionAmendmentTypesOrderBy", "ofType": null } } @@ -49322,7 +48479,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectContactsConnection", + "name": "ProjectRevisionAmendmentTypesConnection", "ofType": null } }, @@ -49330,8 +48487,8 @@ "deprecationReason": null }, { - "name": "projectManagerLabelsByArchivedBy", - "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", + "name": "projectRevisionAmendmentTypesByUpdatedBy", + "description": "Reads and enables pagination through a set of `ProjectRevisionAmendmentType`.", "args": [ { "name": "after", @@ -49358,7 +48515,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelCondition", + "name": "ProjectRevisionAmendmentTypeCondition", "ofType": null }, "defaultValue": null @@ -49368,7 +48525,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelFilter", + "name": "ProjectRevisionAmendmentTypeFilter", "ofType": null }, "defaultValue": null @@ -49415,7 +48572,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManagerLabel`.", + "description": "The method to use when ordering `ProjectRevisionAmendmentType`.", "type": { "kind": "LIST", "name": null, @@ -49424,7 +48581,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagerLabelsOrderBy", + "name": "ProjectRevisionAmendmentTypesOrderBy", "ofType": null } } @@ -49437,7 +48594,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectManagerLabelsConnection", + "name": "ProjectRevisionAmendmentTypesConnection", "ofType": null } }, @@ -49445,8 +48602,8 @@ "deprecationReason": null }, { - "name": "projectManagerLabelsByCreatedBy", - "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", + "name": "projectRevisionsByCreatedBy", + "description": "Reads and enables pagination through a set of `ProjectRevision`.", "args": [ { "name": "after", @@ -49473,7 +48630,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelCondition", + "name": "ProjectRevisionCondition", "ofType": null }, "defaultValue": null @@ -49483,7 +48640,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelFilter", + "name": "ProjectRevisionFilter", "ofType": null }, "defaultValue": null @@ -49498,16 +48655,6 @@ }, "defaultValue": null }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "INHERIT" - }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -49530,7 +48677,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManagerLabel`.", + "description": "The method to use when ordering `ProjectRevision`.", "type": { "kind": "LIST", "name": null, @@ -49539,7 +48686,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagerLabelsOrderBy", + "name": "ProjectRevisionsOrderBy", "ofType": null } } @@ -49552,7 +48699,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectManagerLabelsConnection", + "name": "ProjectRevisionsConnection", "ofType": null } }, @@ -49560,8 +48707,8 @@ "deprecationReason": null }, { - "name": "projectManagerLabelsByProjectManagerArchivedByAndProjectManagerLabelId", - "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", + "name": "projectRevisionsByFormChangeCreatedByAndProjectRevisionId", + "description": "Reads and enables pagination through a set of `ProjectRevision`.", "args": [ { "name": "after", @@ -49588,7 +48735,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelCondition", + "name": "ProjectRevisionCondition", "ofType": null }, "defaultValue": null @@ -49598,7 +48745,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelFilter", + "name": "ProjectRevisionFilter", "ofType": null }, "defaultValue": null @@ -49613,16 +48760,6 @@ }, "defaultValue": null }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -49645,7 +48782,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManagerLabel`.", + "description": "The method to use when ordering `ProjectRevision`.", "type": { "kind": "LIST", "name": null, @@ -49654,7 +48791,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagerLabelsOrderBy", + "name": "ProjectRevisionsOrderBy", "ofType": null } } @@ -49667,7 +48804,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectManagerLabelsByProjectManagerArchivedByAndProjectManagerLabelIdManyToManyConnection", + "name": "CifUserProjectRevisionsByFormChangeCreatedByAndProjectRevisionIdManyToManyConnection", "ofType": null } }, @@ -49675,8 +48812,8 @@ "deprecationReason": null }, { - "name": "projectManagerLabelsByProjectManagerCifUserIdAndProjectManagerLabelId", - "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", + "name": "projectRevisionsByFormChangeUpdatedByAndProjectRevisionId", + "description": "Reads and enables pagination through a set of `ProjectRevision`.", "args": [ { "name": "after", @@ -49703,7 +48840,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelCondition", + "name": "ProjectRevisionCondition", "ofType": null }, "defaultValue": null @@ -49713,7 +48850,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelFilter", + "name": "ProjectRevisionFilter", "ofType": null }, "defaultValue": null @@ -49728,16 +48865,6 @@ }, "defaultValue": null }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -49760,7 +48887,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManagerLabel`.", + "description": "The method to use when ordering `ProjectRevision`.", "type": { "kind": "LIST", "name": null, @@ -49769,7 +48896,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagerLabelsOrderBy", + "name": "ProjectRevisionsOrderBy", "ofType": null } } @@ -49782,7 +48909,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectManagerLabelsByProjectManagerCifUserIdAndProjectManagerLabelIdManyToManyConnection", + "name": "CifUserProjectRevisionsByFormChangeUpdatedByAndProjectRevisionIdManyToManyConnection", "ofType": null } }, @@ -49790,8 +48917,8 @@ "deprecationReason": null }, { - "name": "projectManagerLabelsByProjectManagerCreatedByAndProjectManagerLabelId", - "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", + "name": "projectRevisionsByProjectRevisionAmendmentTypeArchivedByAndProjectRevisionId", + "description": "Reads and enables pagination through a set of `ProjectRevision`.", "args": [ { "name": "after", @@ -49818,7 +48945,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelCondition", + "name": "ProjectRevisionCondition", "ofType": null }, "defaultValue": null @@ -49828,7 +48955,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelFilter", + "name": "ProjectRevisionFilter", "ofType": null }, "defaultValue": null @@ -49843,16 +48970,6 @@ }, "defaultValue": null }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -49875,7 +48992,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManagerLabel`.", + "description": "The method to use when ordering `ProjectRevision`.", "type": { "kind": "LIST", "name": null, @@ -49884,7 +49001,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagerLabelsOrderBy", + "name": "ProjectRevisionsOrderBy", "ofType": null } } @@ -49897,7 +49014,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectManagerLabelsByProjectManagerCreatedByAndProjectManagerLabelIdManyToManyConnection", + "name": "CifUserProjectRevisionsByProjectRevisionAmendmentTypeArchivedByAndProjectRevisionIdManyToManyConnection", "ofType": null } }, @@ -49905,8 +49022,8 @@ "deprecationReason": null }, { - "name": "projectManagerLabelsByProjectManagerUpdatedByAndProjectManagerLabelId", - "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", + "name": "projectRevisionsByProjectRevisionAmendmentTypeCreatedByAndProjectRevisionId", + "description": "Reads and enables pagination through a set of `ProjectRevision`.", "args": [ { "name": "after", @@ -49933,7 +49050,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelCondition", + "name": "ProjectRevisionCondition", "ofType": null }, "defaultValue": null @@ -49943,7 +49060,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelFilter", + "name": "ProjectRevisionFilter", "ofType": null }, "defaultValue": null @@ -49958,16 +49075,6 @@ }, "defaultValue": null }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -49990,7 +49097,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManagerLabel`.", + "description": "The method to use when ordering `ProjectRevision`.", "type": { "kind": "LIST", "name": null, @@ -49999,7 +49106,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagerLabelsOrderBy", + "name": "ProjectRevisionsOrderBy", "ofType": null } } @@ -50012,7 +49119,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectManagerLabelsByProjectManagerUpdatedByAndProjectManagerLabelIdManyToManyConnection", + "name": "CifUserProjectRevisionsByProjectRevisionAmendmentTypeCreatedByAndProjectRevisionIdManyToManyConnection", "ofType": null } }, @@ -50020,8 +49127,8 @@ "deprecationReason": null }, { - "name": "projectManagerLabelsByUpdatedBy", - "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", + "name": "projectRevisionsByProjectRevisionAmendmentTypeUpdatedByAndProjectRevisionId", + "description": "Reads and enables pagination through a set of `ProjectRevision`.", "args": [ { "name": "after", @@ -50048,7 +49155,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelCondition", + "name": "ProjectRevisionCondition", "ofType": null }, "defaultValue": null @@ -50058,7 +49165,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelFilter", + "name": "ProjectRevisionFilter", "ofType": null }, "defaultValue": null @@ -50073,16 +49180,6 @@ }, "defaultValue": null }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "INHERIT" - }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -50105,7 +49202,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManagerLabel`.", + "description": "The method to use when ordering `ProjectRevision`.", "type": { "kind": "LIST", "name": null, @@ -50114,7 +49211,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagerLabelsOrderBy", + "name": "ProjectRevisionsOrderBy", "ofType": null } } @@ -50127,7 +49224,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectManagerLabelsConnection", + "name": "CifUserProjectRevisionsByProjectRevisionAmendmentTypeUpdatedByAndProjectRevisionIdManyToManyConnection", "ofType": null } }, @@ -50135,8 +49232,8 @@ "deprecationReason": null }, { - "name": "projectManagersByArchivedBy", - "description": "Reads and enables pagination through a set of `ProjectManager`.", + "name": "projectRevisionsByUpdatedBy", + "description": "Reads and enables pagination through a set of `ProjectRevision`.", "args": [ { "name": "after", @@ -50163,7 +49260,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerCondition", + "name": "ProjectRevisionCondition", "ofType": null }, "defaultValue": null @@ -50173,7 +49270,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerFilter", + "name": "ProjectRevisionFilter", "ofType": null }, "defaultValue": null @@ -50188,16 +49285,6 @@ }, "defaultValue": null }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "INHERIT" - }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -50220,7 +49307,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManager`.", + "description": "The method to use when ordering `ProjectRevision`.", "type": { "kind": "LIST", "name": null, @@ -50229,7 +49316,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagersOrderBy", + "name": "ProjectRevisionsOrderBy", "ofType": null } } @@ -50242,7 +49329,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectManagersConnection", + "name": "ProjectRevisionsConnection", "ofType": null } }, @@ -50250,8 +49337,8 @@ "deprecationReason": null }, { - "name": "projectManagersByCifUserId", - "description": "Reads and enables pagination through a set of `ProjectManager`.", + "name": "projectStatusesByArchivedBy", + "description": "Reads and enables pagination through a set of `ProjectStatus`.", "args": [ { "name": "after", @@ -50278,7 +49365,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerCondition", + "name": "ProjectStatusCondition", "ofType": null }, "defaultValue": null @@ -50288,7 +49375,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerFilter", + "name": "ProjectStatusFilter", "ofType": null }, "defaultValue": null @@ -50335,7 +49422,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManager`.", + "description": "The method to use when ordering `ProjectStatus`.", "type": { "kind": "LIST", "name": null, @@ -50344,7 +49431,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagersOrderBy", + "name": "ProjectStatusesOrderBy", "ofType": null } } @@ -50357,7 +49444,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectManagersConnection", + "name": "ProjectStatusesConnection", "ofType": null } }, @@ -50365,8 +49452,8 @@ "deprecationReason": null }, { - "name": "projectManagersByCreatedBy", - "description": "Reads and enables pagination through a set of `ProjectManager`.", + "name": "projectStatusesByAttachmentArchivedByAndProjectStatusId", + "description": "Reads and enables pagination through a set of `ProjectStatus`.", "args": [ { "name": "after", @@ -50393,7 +49480,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerCondition", + "name": "ProjectStatusCondition", "ofType": null }, "defaultValue": null @@ -50403,7 +49490,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerFilter", + "name": "ProjectStatusFilter", "ofType": null }, "defaultValue": null @@ -50426,7 +49513,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -50450,7 +49537,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManager`.", + "description": "The method to use when ordering `ProjectStatus`.", "type": { "kind": "LIST", "name": null, @@ -50459,7 +49546,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagersOrderBy", + "name": "ProjectStatusesOrderBy", "ofType": null } } @@ -50472,7 +49559,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectManagersConnection", + "name": "CifUserProjectStatusesByAttachmentArchivedByAndProjectStatusIdManyToManyConnection", "ofType": null } }, @@ -50480,8 +49567,8 @@ "deprecationReason": null }, { - "name": "projectManagersByUpdatedBy", - "description": "Reads and enables pagination through a set of `ProjectManager`.", + "name": "projectStatusesByAttachmentCreatedByAndProjectStatusId", + "description": "Reads and enables pagination through a set of `ProjectStatus`.", "args": [ { "name": "after", @@ -50508,7 +49595,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerCondition", + "name": "ProjectStatusCondition", "ofType": null }, "defaultValue": null @@ -50518,7 +49605,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerFilter", + "name": "ProjectStatusFilter", "ofType": null }, "defaultValue": null @@ -50541,7 +49628,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -50565,7 +49652,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManager`.", + "description": "The method to use when ordering `ProjectStatus`.", "type": { "kind": "LIST", "name": null, @@ -50574,7 +49661,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagersOrderBy", + "name": "ProjectStatusesOrderBy", "ofType": null } } @@ -50587,7 +49674,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectManagersConnection", + "name": "CifUserProjectStatusesByAttachmentCreatedByAndProjectStatusIdManyToManyConnection", "ofType": null } }, @@ -50595,8 +49682,8 @@ "deprecationReason": null }, { - "name": "projectRevisionAmendmentTypesByArchivedBy", - "description": "Reads and enables pagination through a set of `ProjectRevisionAmendmentType`.", + "name": "projectStatusesByAttachmentUpdatedByAndProjectStatusId", + "description": "Reads and enables pagination through a set of `ProjectStatus`.", "args": [ { "name": "after", @@ -50623,7 +49710,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionAmendmentTypeCondition", + "name": "ProjectStatusCondition", "ofType": null }, "defaultValue": null @@ -50633,7 +49720,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionAmendmentTypeFilter", + "name": "ProjectStatusFilter", "ofType": null }, "defaultValue": null @@ -50656,7 +49743,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -50680,7 +49767,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectRevisionAmendmentType`.", + "description": "The method to use when ordering `ProjectStatus`.", "type": { "kind": "LIST", "name": null, @@ -50689,7 +49776,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectRevisionAmendmentTypesOrderBy", + "name": "ProjectStatusesOrderBy", "ofType": null } } @@ -50702,7 +49789,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectRevisionAmendmentTypesConnection", + "name": "CifUserProjectStatusesByAttachmentUpdatedByAndProjectStatusIdManyToManyConnection", "ofType": null } }, @@ -50710,8 +49797,8 @@ "deprecationReason": null }, { - "name": "projectRevisionAmendmentTypesByCreatedBy", - "description": "Reads and enables pagination through a set of `ProjectRevisionAmendmentType`.", + "name": "projectStatusesByCreatedBy", + "description": "Reads and enables pagination through a set of `ProjectStatus`.", "args": [ { "name": "after", @@ -50738,7 +49825,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionAmendmentTypeCondition", + "name": "ProjectStatusCondition", "ofType": null }, "defaultValue": null @@ -50748,7 +49835,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionAmendmentTypeFilter", + "name": "ProjectStatusFilter", "ofType": null }, "defaultValue": null @@ -50795,7 +49882,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectRevisionAmendmentType`.", + "description": "The method to use when ordering `ProjectStatus`.", "type": { "kind": "LIST", "name": null, @@ -50804,7 +49891,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectRevisionAmendmentTypesOrderBy", + "name": "ProjectStatusesOrderBy", "ofType": null } } @@ -50817,7 +49904,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectRevisionAmendmentTypesConnection", + "name": "ProjectStatusesConnection", "ofType": null } }, @@ -50825,8 +49912,8 @@ "deprecationReason": null }, { - "name": "projectRevisionAmendmentTypesByUpdatedBy", - "description": "Reads and enables pagination through a set of `ProjectRevisionAmendmentType`.", + "name": "projectStatusesByFundingStreamProjectStatusArchivedByAndProjectStatusId", + "description": "Reads and enables pagination through a set of `ProjectStatus`.", "args": [ { "name": "after", @@ -50853,7 +49940,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionAmendmentTypeCondition", + "name": "ProjectStatusCondition", "ofType": null }, "defaultValue": null @@ -50863,7 +49950,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionAmendmentTypeFilter", + "name": "ProjectStatusFilter", "ofType": null }, "defaultValue": null @@ -50886,7 +49973,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -50910,7 +49997,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectRevisionAmendmentType`.", + "description": "The method to use when ordering `ProjectStatus`.", "type": { "kind": "LIST", "name": null, @@ -50919,7 +50006,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectRevisionAmendmentTypesOrderBy", + "name": "ProjectStatusesOrderBy", "ofType": null } } @@ -50932,7 +50019,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectRevisionAmendmentTypesConnection", + "name": "CifUserProjectStatusesByFundingStreamProjectStatusArchivedByAndProjectStatusIdManyToManyConnection", "ofType": null } }, @@ -50940,8 +50027,8 @@ "deprecationReason": null }, { - "name": "projectRevisionsByCreatedBy", - "description": "Reads and enables pagination through a set of `ProjectRevision`.", + "name": "projectStatusesByFundingStreamProjectStatusCreatedByAndProjectStatusId", + "description": "Reads and enables pagination through a set of `ProjectStatus`.", "args": [ { "name": "after", @@ -50968,7 +50055,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionCondition", + "name": "ProjectStatusCondition", "ofType": null }, "defaultValue": null @@ -50978,7 +50065,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionFilter", + "name": "ProjectStatusFilter", "ofType": null }, "defaultValue": null @@ -50994,109 +50081,14 @@ "defaultValue": null }, { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `ProjectRevision`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProjectRevisionsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectRevisionsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectRevisionsByFormChangeCreatedByAndProjectRevisionId", - "description": "Reads and enables pagination through a set of `ProjectRevision`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectRevisionCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectRevisionFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": null + "defaultValue": "NO" }, { "name": "last", @@ -51120,7 +50112,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectRevision`.", + "description": "The method to use when ordering `ProjectStatus`.", "type": { "kind": "LIST", "name": null, @@ -51129,7 +50121,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectRevisionsOrderBy", + "name": "ProjectStatusesOrderBy", "ofType": null } } @@ -51142,7 +50134,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectRevisionsByFormChangeCreatedByAndProjectRevisionIdManyToManyConnection", + "name": "CifUserProjectStatusesByFundingStreamProjectStatusCreatedByAndProjectStatusIdManyToManyConnection", "ofType": null } }, @@ -51150,8 +50142,8 @@ "deprecationReason": null }, { - "name": "projectRevisionsByFormChangeUpdatedByAndProjectRevisionId", - "description": "Reads and enables pagination through a set of `ProjectRevision`.", + "name": "projectStatusesByFundingStreamProjectStatusUpdatedByAndProjectStatusId", + "description": "Reads and enables pagination through a set of `ProjectStatus`.", "args": [ { "name": "after", @@ -51178,7 +50170,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionCondition", + "name": "ProjectStatusCondition", "ofType": null }, "defaultValue": null @@ -51188,7 +50180,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionFilter", + "name": "ProjectStatusFilter", "ofType": null }, "defaultValue": null @@ -51203,6 +50195,16 @@ }, "defaultValue": null }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -51225,7 +50227,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectRevision`.", + "description": "The method to use when ordering `ProjectStatus`.", "type": { "kind": "LIST", "name": null, @@ -51234,7 +50236,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectRevisionsOrderBy", + "name": "ProjectStatusesOrderBy", "ofType": null } } @@ -51247,7 +50249,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectRevisionsByFormChangeUpdatedByAndProjectRevisionIdManyToManyConnection", + "name": "CifUserProjectStatusesByFundingStreamProjectStatusUpdatedByAndProjectStatusIdManyToManyConnection", "ofType": null } }, @@ -51255,8 +50257,8 @@ "deprecationReason": null }, { - "name": "projectRevisionsByProjectRevisionAmendmentTypeArchivedByAndProjectRevisionId", - "description": "Reads and enables pagination through a set of `ProjectRevision`.", + "name": "projectStatusesByProjectArchivedByAndProjectStatusId", + "description": "Reads and enables pagination through a set of `ProjectStatus`.", "args": [ { "name": "after", @@ -51283,7 +50285,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionCondition", + "name": "ProjectStatusCondition", "ofType": null }, "defaultValue": null @@ -51293,7 +50295,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionFilter", + "name": "ProjectStatusFilter", "ofType": null }, "defaultValue": null @@ -51308,6 +50310,16 @@ }, "defaultValue": null }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -51330,7 +50342,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectRevision`.", + "description": "The method to use when ordering `ProjectStatus`.", "type": { "kind": "LIST", "name": null, @@ -51339,7 +50351,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectRevisionsOrderBy", + "name": "ProjectStatusesOrderBy", "ofType": null } } @@ -51352,7 +50364,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectRevisionsByProjectRevisionAmendmentTypeArchivedByAndProjectRevisionIdManyToManyConnection", + "name": "CifUserProjectStatusesByProjectArchivedByAndProjectStatusIdManyToManyConnection", "ofType": null } }, @@ -51360,8 +50372,8 @@ "deprecationReason": null }, { - "name": "projectRevisionsByProjectRevisionAmendmentTypeCreatedByAndProjectRevisionId", - "description": "Reads and enables pagination through a set of `ProjectRevision`.", + "name": "projectStatusesByProjectCreatedByAndProjectStatusId", + "description": "Reads and enables pagination through a set of `ProjectStatus`.", "args": [ { "name": "after", @@ -51388,7 +50400,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionCondition", + "name": "ProjectStatusCondition", "ofType": null }, "defaultValue": null @@ -51398,7 +50410,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionFilter", + "name": "ProjectStatusFilter", "ofType": null }, "defaultValue": null @@ -51413,6 +50425,16 @@ }, "defaultValue": null }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -51435,7 +50457,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectRevision`.", + "description": "The method to use when ordering `ProjectStatus`.", "type": { "kind": "LIST", "name": null, @@ -51444,7 +50466,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectRevisionsOrderBy", + "name": "ProjectStatusesOrderBy", "ofType": null } } @@ -51457,7 +50479,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectRevisionsByProjectRevisionAmendmentTypeCreatedByAndProjectRevisionIdManyToManyConnection", + "name": "CifUserProjectStatusesByProjectCreatedByAndProjectStatusIdManyToManyConnection", "ofType": null } }, @@ -51465,8 +50487,8 @@ "deprecationReason": null }, { - "name": "projectRevisionsByProjectRevisionAmendmentTypeUpdatedByAndProjectRevisionId", - "description": "Reads and enables pagination through a set of `ProjectRevision`.", + "name": "projectStatusesByProjectUpdatedByAndProjectStatusId", + "description": "Reads and enables pagination through a set of `ProjectStatus`.", "args": [ { "name": "after", @@ -51493,7 +50515,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionCondition", + "name": "ProjectStatusCondition", "ofType": null }, "defaultValue": null @@ -51503,7 +50525,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionFilter", + "name": "ProjectStatusFilter", "ofType": null }, "defaultValue": null @@ -51519,109 +50541,14 @@ "defaultValue": null }, { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `ProjectRevision`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProjectRevisionsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CifUserProjectRevisionsByProjectRevisionAmendmentTypeUpdatedByAndProjectRevisionIdManyToManyConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectRevisionsByUpdatedBy", - "description": "Reads and enables pagination through a set of `ProjectRevision`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectRevisionCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectRevisionFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": null + "defaultValue": "NO" }, { "name": "last", @@ -51645,7 +50572,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectRevision`.", + "description": "The method to use when ordering `ProjectStatus`.", "type": { "kind": "LIST", "name": null, @@ -51654,7 +50581,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectRevisionsOrderBy", + "name": "ProjectStatusesOrderBy", "ofType": null } } @@ -51667,7 +50594,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectRevisionsConnection", + "name": "CifUserProjectStatusesByProjectUpdatedByAndProjectStatusIdManyToManyConnection", "ofType": null } }, @@ -51675,7 +50602,7 @@ "deprecationReason": null }, { - "name": "projectStatusesByArchivedBy", + "name": "projectStatusesByUpdatedBy", "description": "Reads and enables pagination through a set of `ProjectStatus`.", "args": [ { @@ -51790,8 +50717,8 @@ "deprecationReason": null }, { - "name": "projectStatusesByCreatedBy", - "description": "Reads and enables pagination through a set of `ProjectStatus`.", + "name": "projectTypesByArchivedBy", + "description": "Reads and enables pagination through a set of `ProjectType`.", "args": [ { "name": "after", @@ -51818,7 +50745,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusCondition", + "name": "ProjectTypeCondition", "ofType": null }, "defaultValue": null @@ -51828,7 +50755,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusFilter", + "name": "ProjectTypeFilter", "ofType": null }, "defaultValue": null @@ -51875,7 +50802,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectStatus`.", + "description": "The method to use when ordering `ProjectType`.", "type": { "kind": "LIST", "name": null, @@ -51884,7 +50811,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectStatusesOrderBy", + "name": "ProjectTypesOrderBy", "ofType": null } } @@ -51897,7 +50824,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectStatusesConnection", + "name": "ProjectTypesConnection", "ofType": null } }, @@ -51905,8 +50832,8 @@ "deprecationReason": null }, { - "name": "projectStatusesByFundingStreamProjectStatusArchivedByAndProjectStatusId", - "description": "Reads and enables pagination through a set of `ProjectStatus`.", + "name": "projectTypesByCreatedBy", + "description": "Reads and enables pagination through a set of `ProjectType`.", "args": [ { "name": "after", @@ -51933,7 +50860,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusCondition", + "name": "ProjectTypeCondition", "ofType": null }, "defaultValue": null @@ -51943,7 +50870,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusFilter", + "name": "ProjectTypeFilter", "ofType": null }, "defaultValue": null @@ -51966,7 +50893,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -51990,7 +50917,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectStatus`.", + "description": "The method to use when ordering `ProjectType`.", "type": { "kind": "LIST", "name": null, @@ -51999,7 +50926,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectStatusesOrderBy", + "name": "ProjectTypesOrderBy", "ofType": null } } @@ -52012,7 +50939,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectStatusesByFundingStreamProjectStatusArchivedByAndProjectStatusIdManyToManyConnection", + "name": "ProjectTypesConnection", "ofType": null } }, @@ -52020,8 +50947,8 @@ "deprecationReason": null }, { - "name": "projectStatusesByFundingStreamProjectStatusCreatedByAndProjectStatusId", - "description": "Reads and enables pagination through a set of `ProjectStatus`.", + "name": "projectTypesByProjectArchivedByAndProjectType", + "description": "Reads and enables pagination through a set of `ProjectType`.", "args": [ { "name": "after", @@ -52048,7 +50975,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusCondition", + "name": "ProjectTypeCondition", "ofType": null }, "defaultValue": null @@ -52058,7 +50985,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusFilter", + "name": "ProjectTypeFilter", "ofType": null }, "defaultValue": null @@ -52105,7 +51032,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectStatus`.", + "description": "The method to use when ordering `ProjectType`.", "type": { "kind": "LIST", "name": null, @@ -52114,7 +51041,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectStatusesOrderBy", + "name": "ProjectTypesOrderBy", "ofType": null } } @@ -52127,7 +51054,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectStatusesByFundingStreamProjectStatusCreatedByAndProjectStatusIdManyToManyConnection", + "name": "CifUserProjectTypesByProjectArchivedByAndProjectTypeManyToManyConnection", "ofType": null } }, @@ -52135,8 +51062,8 @@ "deprecationReason": null }, { - "name": "projectStatusesByFundingStreamProjectStatusUpdatedByAndProjectStatusId", - "description": "Reads and enables pagination through a set of `ProjectStatus`.", + "name": "projectTypesByProjectCreatedByAndProjectType", + "description": "Reads and enables pagination through a set of `ProjectType`.", "args": [ { "name": "after", @@ -52163,7 +51090,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusCondition", + "name": "ProjectTypeCondition", "ofType": null }, "defaultValue": null @@ -52173,7 +51100,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusFilter", + "name": "ProjectTypeFilter", "ofType": null }, "defaultValue": null @@ -52220,7 +51147,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectStatus`.", + "description": "The method to use when ordering `ProjectType`.", "type": { "kind": "LIST", "name": null, @@ -52229,7 +51156,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectStatusesOrderBy", + "name": "ProjectTypesOrderBy", "ofType": null } } @@ -52242,7 +51169,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectStatusesByFundingStreamProjectStatusUpdatedByAndProjectStatusIdManyToManyConnection", + "name": "CifUserProjectTypesByProjectCreatedByAndProjectTypeManyToManyConnection", "ofType": null } }, @@ -52250,8 +51177,8 @@ "deprecationReason": null }, { - "name": "projectStatusesByProjectArchivedByAndProjectStatusId", - "description": "Reads and enables pagination through a set of `ProjectStatus`.", + "name": "projectTypesByProjectUpdatedByAndProjectType", + "description": "Reads and enables pagination through a set of `ProjectType`.", "args": [ { "name": "after", @@ -52278,7 +51205,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusCondition", + "name": "ProjectTypeCondition", "ofType": null }, "defaultValue": null @@ -52288,7 +51215,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusFilter", + "name": "ProjectTypeFilter", "ofType": null }, "defaultValue": null @@ -52335,7 +51262,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectStatus`.", + "description": "The method to use when ordering `ProjectType`.", "type": { "kind": "LIST", "name": null, @@ -52344,7 +51271,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectStatusesOrderBy", + "name": "ProjectTypesOrderBy", "ofType": null } } @@ -52357,7 +51284,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectStatusesByProjectArchivedByAndProjectStatusIdManyToManyConnection", + "name": "CifUserProjectTypesByProjectUpdatedByAndProjectTypeManyToManyConnection", "ofType": null } }, @@ -52365,8 +51292,8 @@ "deprecationReason": null }, { - "name": "projectStatusesByProjectCreatedByAndProjectStatusId", - "description": "Reads and enables pagination through a set of `ProjectStatus`.", + "name": "projectTypesByUpdatedBy", + "description": "Reads and enables pagination through a set of `ProjectType`.", "args": [ { "name": "after", @@ -52393,7 +51320,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusCondition", + "name": "ProjectTypeCondition", "ofType": null }, "defaultValue": null @@ -52403,7 +51330,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusFilter", + "name": "ProjectTypeFilter", "ofType": null }, "defaultValue": null @@ -52426,7 +51353,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -52450,7 +51377,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectStatus`.", + "description": "The method to use when ordering `ProjectType`.", "type": { "kind": "LIST", "name": null, @@ -52459,7 +51386,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectStatusesOrderBy", + "name": "ProjectTypesOrderBy", "ofType": null } } @@ -52472,7 +51399,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectStatusesByProjectCreatedByAndProjectStatusIdManyToManyConnection", + "name": "ProjectTypesConnection", "ofType": null } }, @@ -52480,8 +51407,8 @@ "deprecationReason": null }, { - "name": "projectStatusesByProjectUpdatedByAndProjectStatusId", - "description": "Reads and enables pagination through a set of `ProjectStatus`.", + "name": "projectsByAdditionalFundingSourceArchivedByAndProjectId", + "description": "Reads and enables pagination through a set of `Project`.", "args": [ { "name": "after", @@ -52508,7 +51435,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusCondition", + "name": "ProjectCondition", "ofType": null }, "defaultValue": null @@ -52518,7 +51445,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusFilter", + "name": "ProjectFilter", "ofType": null }, "defaultValue": null @@ -52565,7 +51492,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectStatus`.", + "description": "The method to use when ordering `Project`.", "type": { "kind": "LIST", "name": null, @@ -52574,7 +51501,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectStatusesOrderBy", + "name": "ProjectsOrderBy", "ofType": null } } @@ -52587,7 +51514,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectStatusesByProjectUpdatedByAndProjectStatusIdManyToManyConnection", + "name": "CifUserProjectsByAdditionalFundingSourceArchivedByAndProjectIdManyToManyConnection", "ofType": null } }, @@ -52595,8 +51522,8 @@ "deprecationReason": null }, { - "name": "projectStatusesByUpdatedBy", - "description": "Reads and enables pagination through a set of `ProjectStatus`.", + "name": "projectsByAdditionalFundingSourceCreatedByAndProjectId", + "description": "Reads and enables pagination through a set of `Project`.", "args": [ { "name": "after", @@ -52623,7 +51550,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusCondition", + "name": "ProjectCondition", "ofType": null }, "defaultValue": null @@ -52633,7 +51560,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusFilter", + "name": "ProjectFilter", "ofType": null }, "defaultValue": null @@ -52656,7 +51583,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -52680,7 +51607,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectStatus`.", + "description": "The method to use when ordering `Project`.", "type": { "kind": "LIST", "name": null, @@ -52689,7 +51616,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectStatusesOrderBy", + "name": "ProjectsOrderBy", "ofType": null } } @@ -52702,7 +51629,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectStatusesConnection", + "name": "CifUserProjectsByAdditionalFundingSourceCreatedByAndProjectIdManyToManyConnection", "ofType": null } }, @@ -52710,8 +51637,8 @@ "deprecationReason": null }, { - "name": "projectTypesByArchivedBy", - "description": "Reads and enables pagination through a set of `ProjectType`.", + "name": "projectsByAdditionalFundingSourceUpdatedByAndProjectId", + "description": "Reads and enables pagination through a set of `Project`.", "args": [ { "name": "after", @@ -52738,7 +51665,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTypeCondition", + "name": "ProjectCondition", "ofType": null }, "defaultValue": null @@ -52748,7 +51675,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTypeFilter", + "name": "ProjectFilter", "ofType": null }, "defaultValue": null @@ -52771,7 +51698,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -52795,7 +51722,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectType`.", + "description": "The method to use when ordering `Project`.", "type": { "kind": "LIST", "name": null, @@ -52804,7 +51731,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectTypesOrderBy", + "name": "ProjectsOrderBy", "ofType": null } } @@ -52817,7 +51744,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectTypesConnection", + "name": "CifUserProjectsByAdditionalFundingSourceUpdatedByAndProjectIdManyToManyConnection", "ofType": null } }, @@ -52825,8 +51752,8 @@ "deprecationReason": null }, { - "name": "projectTypesByCreatedBy", - "description": "Reads and enables pagination through a set of `ProjectType`.", + "name": "projectsByArchivedBy", + "description": "Reads and enables pagination through a set of `Project`.", "args": [ { "name": "after", @@ -52853,7 +51780,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTypeCondition", + "name": "ProjectCondition", "ofType": null }, "defaultValue": null @@ -52863,7 +51790,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTypeFilter", + "name": "ProjectFilter", "ofType": null }, "defaultValue": null @@ -52910,7 +51837,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectType`.", + "description": "The method to use when ordering `Project`.", "type": { "kind": "LIST", "name": null, @@ -52919,7 +51846,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectTypesOrderBy", + "name": "ProjectsOrderBy", "ofType": null } } @@ -52932,7 +51859,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectTypesConnection", + "name": "ProjectsConnection", "ofType": null } }, @@ -52940,8 +51867,8 @@ "deprecationReason": null }, { - "name": "projectTypesByProjectArchivedByAndProjectType", - "description": "Reads and enables pagination through a set of `ProjectType`.", + "name": "projectsByAttachmentArchivedByAndProjectId", + "description": "Reads and enables pagination through a set of `Project`.", "args": [ { "name": "after", @@ -52968,7 +51895,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTypeCondition", + "name": "ProjectCondition", "ofType": null }, "defaultValue": null @@ -52978,7 +51905,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTypeFilter", + "name": "ProjectFilter", "ofType": null }, "defaultValue": null @@ -53025,7 +51952,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectType`.", + "description": "The method to use when ordering `Project`.", "type": { "kind": "LIST", "name": null, @@ -53034,7 +51961,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectTypesOrderBy", + "name": "ProjectsOrderBy", "ofType": null } } @@ -53047,7 +51974,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectTypesByProjectArchivedByAndProjectTypeManyToManyConnection", + "name": "CifUserProjectsByAttachmentArchivedByAndProjectIdManyToManyConnection", "ofType": null } }, @@ -53055,8 +51982,8 @@ "deprecationReason": null }, { - "name": "projectTypesByProjectCreatedByAndProjectType", - "description": "Reads and enables pagination through a set of `ProjectType`.", + "name": "projectsByAttachmentCreatedByAndProjectId", + "description": "Reads and enables pagination through a set of `Project`.", "args": [ { "name": "after", @@ -53083,7 +52010,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTypeCondition", + "name": "ProjectCondition", "ofType": null }, "defaultValue": null @@ -53093,7 +52020,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTypeFilter", + "name": "ProjectFilter", "ofType": null }, "defaultValue": null @@ -53140,7 +52067,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectType`.", + "description": "The method to use when ordering `Project`.", "type": { "kind": "LIST", "name": null, @@ -53149,7 +52076,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectTypesOrderBy", + "name": "ProjectsOrderBy", "ofType": null } } @@ -53162,7 +52089,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectTypesByProjectCreatedByAndProjectTypeManyToManyConnection", + "name": "CifUserProjectsByAttachmentCreatedByAndProjectIdManyToManyConnection", "ofType": null } }, @@ -53170,8 +52097,8 @@ "deprecationReason": null }, { - "name": "projectTypesByProjectUpdatedByAndProjectType", - "description": "Reads and enables pagination through a set of `ProjectType`.", + "name": "projectsByAttachmentUpdatedByAndProjectId", + "description": "Reads and enables pagination through a set of `Project`.", "args": [ { "name": "after", @@ -53198,7 +52125,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTypeCondition", + "name": "ProjectCondition", "ofType": null }, "defaultValue": null @@ -53208,7 +52135,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTypeFilter", + "name": "ProjectFilter", "ofType": null }, "defaultValue": null @@ -53255,7 +52182,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectType`.", + "description": "The method to use when ordering `Project`.", "type": { "kind": "LIST", "name": null, @@ -53264,7 +52191,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectTypesOrderBy", + "name": "ProjectsOrderBy", "ofType": null } } @@ -53277,7 +52204,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectTypesByProjectUpdatedByAndProjectTypeManyToManyConnection", + "name": "CifUserProjectsByAttachmentUpdatedByAndProjectIdManyToManyConnection", "ofType": null } }, @@ -53285,8 +52212,8 @@ "deprecationReason": null }, { - "name": "projectTypesByUpdatedBy", - "description": "Reads and enables pagination through a set of `ProjectType`.", + "name": "projectsByCreatedBy", + "description": "Reads and enables pagination through a set of `Project`.", "args": [ { "name": "after", @@ -53313,7 +52240,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTypeCondition", + "name": "ProjectCondition", "ofType": null }, "defaultValue": null @@ -53323,7 +52250,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTypeFilter", + "name": "ProjectFilter", "ofType": null }, "defaultValue": null @@ -53370,7 +52297,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectType`.", + "description": "The method to use when ordering `Project`.", "type": { "kind": "LIST", "name": null, @@ -53379,7 +52306,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectTypesOrderBy", + "name": "ProjectsOrderBy", "ofType": null } } @@ -53392,7 +52319,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectTypesConnection", + "name": "ProjectsConnection", "ofType": null } }, @@ -53400,7 +52327,7 @@ "deprecationReason": null }, { - "name": "projectsByAdditionalFundingSourceArchivedByAndProjectId", + "name": "projectsByFundingParameterArchivedByAndProjectId", "description": "Reads and enables pagination through a set of `Project`.", "args": [ { @@ -53507,7 +52434,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByAdditionalFundingSourceArchivedByAndProjectIdManyToManyConnection", + "name": "CifUserProjectsByFundingParameterArchivedByAndProjectIdManyToManyConnection", "ofType": null } }, @@ -53515,7 +52442,7 @@ "deprecationReason": null }, { - "name": "projectsByAdditionalFundingSourceCreatedByAndProjectId", + "name": "projectsByFundingParameterCreatedByAndProjectId", "description": "Reads and enables pagination through a set of `Project`.", "args": [ { @@ -53622,7 +52549,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByAdditionalFundingSourceCreatedByAndProjectIdManyToManyConnection", + "name": "CifUserProjectsByFundingParameterCreatedByAndProjectIdManyToManyConnection", "ofType": null } }, @@ -53630,7 +52557,7 @@ "deprecationReason": null }, { - "name": "projectsByAdditionalFundingSourceUpdatedByAndProjectId", + "name": "projectsByFundingParameterUpdatedByAndProjectId", "description": "Reads and enables pagination through a set of `Project`.", "args": [ { @@ -53737,7 +52664,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByAdditionalFundingSourceUpdatedByAndProjectIdManyToManyConnection", + "name": "CifUserProjectsByFundingParameterUpdatedByAndProjectIdManyToManyConnection", "ofType": null } }, @@ -53745,7 +52672,7 @@ "deprecationReason": null }, { - "name": "projectsByArchivedBy", + "name": "projectsByProjectContactArchivedByAndProjectId", "description": "Reads and enables pagination through a set of `Project`.", "args": [ { @@ -53806,7 +52733,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -53852,7 +52779,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectsConnection", + "name": "CifUserProjectsByProjectContactArchivedByAndProjectIdManyToManyConnection", "ofType": null } }, @@ -53860,7 +52787,7 @@ "deprecationReason": null }, { - "name": "projectsByCreatedBy", + "name": "projectsByProjectContactCreatedByAndProjectId", "description": "Reads and enables pagination through a set of `Project`.", "args": [ { @@ -53921,7 +52848,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -53967,7 +52894,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectsConnection", + "name": "CifUserProjectsByProjectContactCreatedByAndProjectIdManyToManyConnection", "ofType": null } }, @@ -53975,7 +52902,7 @@ "deprecationReason": null }, { - "name": "projectsByFundingParameterArchivedByAndProjectId", + "name": "projectsByProjectContactUpdatedByAndProjectId", "description": "Reads and enables pagination through a set of `Project`.", "args": [ { @@ -54082,7 +53009,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByFundingParameterArchivedByAndProjectIdManyToManyConnection", + "name": "CifUserProjectsByProjectContactUpdatedByAndProjectIdManyToManyConnection", "ofType": null } }, @@ -54090,7 +53017,7 @@ "deprecationReason": null }, { - "name": "projectsByFundingParameterCreatedByAndProjectId", + "name": "projectsByProjectManagerArchivedByAndProjectId", "description": "Reads and enables pagination through a set of `Project`.", "args": [ { @@ -54197,7 +53124,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByFundingParameterCreatedByAndProjectIdManyToManyConnection", + "name": "CifUserProjectsByProjectManagerArchivedByAndProjectIdManyToManyConnection", "ofType": null } }, @@ -54205,7 +53132,7 @@ "deprecationReason": null }, { - "name": "projectsByFundingParameterUpdatedByAndProjectId", + "name": "projectsByProjectManagerCifUserIdAndProjectId", "description": "Reads and enables pagination through a set of `Project`.", "args": [ { @@ -54312,7 +53239,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByFundingParameterUpdatedByAndProjectIdManyToManyConnection", + "name": "CifUserProjectsByProjectManagerCifUserIdAndProjectIdManyToManyConnection", "ofType": null } }, @@ -54320,7 +53247,7 @@ "deprecationReason": null }, { - "name": "projectsByProjectAttachmentArchivedByAndProjectId", + "name": "projectsByProjectManagerCreatedByAndProjectId", "description": "Reads and enables pagination through a set of `Project`.", "args": [ { @@ -54427,7 +53354,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByProjectAttachmentArchivedByAndProjectIdManyToManyConnection", + "name": "CifUserProjectsByProjectManagerCreatedByAndProjectIdManyToManyConnection", "ofType": null } }, @@ -54435,7 +53362,7 @@ "deprecationReason": null }, { - "name": "projectsByProjectAttachmentCreatedByAndProjectId", + "name": "projectsByProjectManagerUpdatedByAndProjectId", "description": "Reads and enables pagination through a set of `Project`.", "args": [ { @@ -54542,7 +53469,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByProjectAttachmentCreatedByAndProjectIdManyToManyConnection", + "name": "CifUserProjectsByProjectManagerUpdatedByAndProjectIdManyToManyConnection", "ofType": null } }, @@ -54550,7 +53477,7 @@ "deprecationReason": null }, { - "name": "projectsByProjectAttachmentUpdatedByAndProjectId", + "name": "projectsByProjectRevisionCreatedByAndProjectId", "description": "Reads and enables pagination through a set of `Project`.", "args": [ { @@ -54657,7 +53584,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByProjectAttachmentUpdatedByAndProjectIdManyToManyConnection", + "name": "CifUserProjectsByProjectRevisionCreatedByAndProjectIdManyToManyConnection", "ofType": null } }, @@ -54665,7 +53592,7 @@ "deprecationReason": null }, { - "name": "projectsByProjectContactArchivedByAndProjectId", + "name": "projectsByProjectRevisionUpdatedByAndProjectId", "description": "Reads and enables pagination through a set of `Project`.", "args": [ { @@ -54772,7 +53699,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByProjectContactArchivedByAndProjectIdManyToManyConnection", + "name": "CifUserProjectsByProjectRevisionUpdatedByAndProjectIdManyToManyConnection", "ofType": null } }, @@ -54780,7 +53707,7 @@ "deprecationReason": null }, { - "name": "projectsByProjectContactCreatedByAndProjectId", + "name": "projectsByReportingRequirementArchivedByAndProjectId", "description": "Reads and enables pagination through a set of `Project`.", "args": [ { @@ -54887,7 +53814,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByProjectContactCreatedByAndProjectIdManyToManyConnection", + "name": "CifUserProjectsByReportingRequirementArchivedByAndProjectIdManyToManyConnection", "ofType": null } }, @@ -54895,7 +53822,7 @@ "deprecationReason": null }, { - "name": "projectsByProjectContactUpdatedByAndProjectId", + "name": "projectsByReportingRequirementCreatedByAndProjectId", "description": "Reads and enables pagination through a set of `Project`.", "args": [ { @@ -55002,7 +53929,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByProjectContactUpdatedByAndProjectIdManyToManyConnection", + "name": "CifUserProjectsByReportingRequirementCreatedByAndProjectIdManyToManyConnection", "ofType": null } }, @@ -55010,7 +53937,7 @@ "deprecationReason": null }, { - "name": "projectsByProjectManagerArchivedByAndProjectId", + "name": "projectsByReportingRequirementUpdatedByAndProjectId", "description": "Reads and enables pagination through a set of `Project`.", "args": [ { @@ -55117,7 +54044,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByProjectManagerArchivedByAndProjectIdManyToManyConnection", + "name": "CifUserProjectsByReportingRequirementUpdatedByAndProjectIdManyToManyConnection", "ofType": null } }, @@ -55125,7 +54052,7 @@ "deprecationReason": null }, { - "name": "projectsByProjectManagerCifUserIdAndProjectId", + "name": "projectsByUpdatedBy", "description": "Reads and enables pagination through a set of `Project`.", "args": [ { @@ -55186,7 +54113,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -55232,7 +54159,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByProjectManagerCifUserIdAndProjectIdManyToManyConnection", + "name": "ProjectsConnection", "ofType": null } }, @@ -55240,8 +54167,8 @@ "deprecationReason": null }, { - "name": "projectsByProjectManagerCreatedByAndProjectId", - "description": "Reads and enables pagination through a set of `Project`.", + "name": "reportTypesByArchivedBy", + "description": "Reads and enables pagination through a set of `ReportType`.", "args": [ { "name": "after", @@ -55268,7 +54195,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCondition", + "name": "ReportTypeCondition", "ofType": null }, "defaultValue": null @@ -55278,7 +54205,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectFilter", + "name": "ReportTypeFilter", "ofType": null }, "defaultValue": null @@ -55301,7 +54228,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -55325,7 +54252,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Project`.", + "description": "The method to use when ordering `ReportType`.", "type": { "kind": "LIST", "name": null, @@ -55334,7 +54261,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectsOrderBy", + "name": "ReportTypesOrderBy", "ofType": null } } @@ -55347,7 +54274,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByProjectManagerCreatedByAndProjectIdManyToManyConnection", + "name": "ReportTypesConnection", "ofType": null } }, @@ -55355,8 +54282,8 @@ "deprecationReason": null }, { - "name": "projectsByProjectManagerUpdatedByAndProjectId", - "description": "Reads and enables pagination through a set of `Project`.", + "name": "reportTypesByCreatedBy", + "description": "Reads and enables pagination through a set of `ReportType`.", "args": [ { "name": "after", @@ -55383,7 +54310,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCondition", + "name": "ReportTypeCondition", "ofType": null }, "defaultValue": null @@ -55393,7 +54320,122 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectFilter", + "name": "ReportTypeFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "INHERIT" + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `ReportType`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ReportTypesOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ReportTypesConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reportTypesByReportingRequirementArchivedByAndReportType", + "description": "Reads and enables pagination through a set of `ReportType`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ReportTypeCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ReportTypeFilter", "ofType": null }, "defaultValue": null @@ -55440,122 +54482,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Project`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProjectsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CifUserProjectsByProjectManagerUpdatedByAndProjectIdManyToManyConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectsByProjectRevisionCreatedByAndProjectId", - "description": "Reads and enables pagination through a set of `Project`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Project`.", + "description": "The method to use when ordering `ReportType`.", "type": { "kind": "LIST", "name": null, @@ -55564,7 +54491,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectsOrderBy", + "name": "ReportTypesOrderBy", "ofType": null } } @@ -55577,7 +54504,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByProjectRevisionCreatedByAndProjectIdManyToManyConnection", + "name": "CifUserReportTypesByReportingRequirementArchivedByAndReportTypeManyToManyConnection", "ofType": null } }, @@ -55585,8 +54512,8 @@ "deprecationReason": null }, { - "name": "projectsByProjectRevisionUpdatedByAndProjectId", - "description": "Reads and enables pagination through a set of `Project`.", + "name": "reportTypesByReportingRequirementCreatedByAndReportType", + "description": "Reads and enables pagination through a set of `ReportType`.", "args": [ { "name": "after", @@ -55613,7 +54540,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCondition", + "name": "ReportTypeCondition", "ofType": null }, "defaultValue": null @@ -55623,7 +54550,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectFilter", + "name": "ReportTypeFilter", "ofType": null }, "defaultValue": null @@ -55670,7 +54597,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Project`.", + "description": "The method to use when ordering `ReportType`.", "type": { "kind": "LIST", "name": null, @@ -55679,7 +54606,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectsOrderBy", + "name": "ReportTypesOrderBy", "ofType": null } } @@ -55692,7 +54619,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByProjectRevisionUpdatedByAndProjectIdManyToManyConnection", + "name": "CifUserReportTypesByReportingRequirementCreatedByAndReportTypeManyToManyConnection", "ofType": null } }, @@ -55700,8 +54627,8 @@ "deprecationReason": null }, { - "name": "projectsByReportingRequirementArchivedByAndProjectId", - "description": "Reads and enables pagination through a set of `Project`.", + "name": "reportTypesByReportingRequirementUpdatedByAndReportType", + "description": "Reads and enables pagination through a set of `ReportType`.", "args": [ { "name": "after", @@ -55728,7 +54655,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCondition", + "name": "ReportTypeCondition", "ofType": null }, "defaultValue": null @@ -55738,7 +54665,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectFilter", + "name": "ReportTypeFilter", "ofType": null }, "defaultValue": null @@ -55785,7 +54712,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Project`.", + "description": "The method to use when ordering `ReportType`.", "type": { "kind": "LIST", "name": null, @@ -55794,7 +54721,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectsOrderBy", + "name": "ReportTypesOrderBy", "ofType": null } } @@ -55807,7 +54734,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByReportingRequirementArchivedByAndProjectIdManyToManyConnection", + "name": "CifUserReportTypesByReportingRequirementUpdatedByAndReportTypeManyToManyConnection", "ofType": null } }, @@ -55815,8 +54742,8 @@ "deprecationReason": null }, { - "name": "projectsByReportingRequirementCreatedByAndProjectId", - "description": "Reads and enables pagination through a set of `Project`.", + "name": "reportTypesByUpdatedBy", + "description": "Reads and enables pagination through a set of `ReportType`.", "args": [ { "name": "after", @@ -55843,7 +54770,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCondition", + "name": "ReportTypeCondition", "ofType": null }, "defaultValue": null @@ -55853,7 +54780,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectFilter", + "name": "ReportTypeFilter", "ofType": null }, "defaultValue": null @@ -55876,7 +54803,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -55900,7 +54827,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Project`.", + "description": "The method to use when ordering `ReportType`.", "type": { "kind": "LIST", "name": null, @@ -55909,7 +54836,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectsOrderBy", + "name": "ReportTypesOrderBy", "ofType": null } } @@ -55922,7 +54849,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByReportingRequirementCreatedByAndProjectIdManyToManyConnection", + "name": "ReportTypesConnection", "ofType": null } }, @@ -55930,8 +54857,8 @@ "deprecationReason": null }, { - "name": "projectsByReportingRequirementUpdatedByAndProjectId", - "description": "Reads and enables pagination through a set of `Project`.", + "name": "reportingRequirementsByArchivedBy", + "description": "Reads and enables pagination through a set of `ReportingRequirement`.", "args": [ { "name": "after", @@ -55958,7 +54885,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCondition", + "name": "ReportingRequirementCondition", "ofType": null }, "defaultValue": null @@ -55968,7 +54895,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectFilter", + "name": "ReportingRequirementFilter", "ofType": null }, "defaultValue": null @@ -55991,7 +54918,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -56015,7 +54942,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Project`.", + "description": "The method to use when ordering `ReportingRequirement`.", "type": { "kind": "LIST", "name": null, @@ -56024,7 +54951,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectsOrderBy", + "name": "ReportingRequirementsOrderBy", "ofType": null } } @@ -56037,7 +54964,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByReportingRequirementUpdatedByAndProjectIdManyToManyConnection", + "name": "ReportingRequirementsConnection", "ofType": null } }, @@ -56045,8 +54972,8 @@ "deprecationReason": null }, { - "name": "projectsByUpdatedBy", - "description": "Reads and enables pagination through a set of `Project`.", + "name": "reportingRequirementsByCreatedBy", + "description": "Reads and enables pagination through a set of `ReportingRequirement`.", "args": [ { "name": "after", @@ -56073,7 +55000,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCondition", + "name": "ReportingRequirementCondition", "ofType": null }, "defaultValue": null @@ -56083,7 +55010,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectFilter", + "name": "ReportingRequirementFilter", "ofType": null }, "defaultValue": null @@ -56130,7 +55057,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Project`.", + "description": "The method to use when ordering `ReportingRequirement`.", "type": { "kind": "LIST", "name": null, @@ -56139,7 +55066,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectsOrderBy", + "name": "ReportingRequirementsOrderBy", "ofType": null } } @@ -56152,7 +55079,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectsConnection", + "name": "ReportingRequirementsConnection", "ofType": null } }, @@ -56160,8 +55087,8 @@ "deprecationReason": null }, { - "name": "reportTypesByArchivedBy", - "description": "Reads and enables pagination through a set of `ReportType`.", + "name": "reportingRequirementsByEmissionIntensityReportArchivedByAndReportingRequirementId", + "description": "Reads and enables pagination through a set of `ReportingRequirement`.", "args": [ { "name": "after", @@ -56188,7 +55115,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportTypeCondition", + "name": "ReportingRequirementCondition", "ofType": null }, "defaultValue": null @@ -56198,7 +55125,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportTypeFilter", + "name": "ReportingRequirementFilter", "ofType": null }, "defaultValue": null @@ -56221,7 +55148,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -56245,7 +55172,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportType`.", + "description": "The method to use when ordering `ReportingRequirement`.", "type": { "kind": "LIST", "name": null, @@ -56254,7 +55181,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportTypesOrderBy", + "name": "ReportingRequirementsOrderBy", "ofType": null } } @@ -56267,7 +55194,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ReportTypesConnection", + "name": "CifUserReportingRequirementsByEmissionIntensityReportArchivedByAndReportingRequirementIdManyToManyConnection", "ofType": null } }, @@ -56275,8 +55202,8 @@ "deprecationReason": null }, { - "name": "reportTypesByCreatedBy", - "description": "Reads and enables pagination through a set of `ReportType`.", + "name": "reportingRequirementsByEmissionIntensityReportCreatedByAndReportingRequirementId", + "description": "Reads and enables pagination through a set of `ReportingRequirement`.", "args": [ { "name": "after", @@ -56303,7 +55230,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportTypeCondition", + "name": "ReportingRequirementCondition", "ofType": null }, "defaultValue": null @@ -56313,7 +55240,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportTypeFilter", + "name": "ReportingRequirementFilter", "ofType": null }, "defaultValue": null @@ -56336,7 +55263,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -56360,7 +55287,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportType`.", + "description": "The method to use when ordering `ReportingRequirement`.", "type": { "kind": "LIST", "name": null, @@ -56369,7 +55296,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportTypesOrderBy", + "name": "ReportingRequirementsOrderBy", "ofType": null } } @@ -56382,7 +55309,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ReportTypesConnection", + "name": "CifUserReportingRequirementsByEmissionIntensityReportCreatedByAndReportingRequirementIdManyToManyConnection", "ofType": null } }, @@ -56390,8 +55317,8 @@ "deprecationReason": null }, { - "name": "reportTypesByReportingRequirementArchivedByAndReportType", - "description": "Reads and enables pagination through a set of `ReportType`.", + "name": "reportingRequirementsByEmissionIntensityReportUpdatedByAndReportingRequirementId", + "description": "Reads and enables pagination through a set of `ReportingRequirement`.", "args": [ { "name": "after", @@ -56418,7 +55345,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportTypeCondition", + "name": "ReportingRequirementCondition", "ofType": null }, "defaultValue": null @@ -56428,7 +55355,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportTypeFilter", + "name": "ReportingRequirementFilter", "ofType": null }, "defaultValue": null @@ -56475,7 +55402,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportType`.", + "description": "The method to use when ordering `ReportingRequirement`.", "type": { "kind": "LIST", "name": null, @@ -56484,7 +55411,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportTypesOrderBy", + "name": "ReportingRequirementsOrderBy", "ofType": null } } @@ -56497,7 +55424,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserReportTypesByReportingRequirementArchivedByAndReportTypeManyToManyConnection", + "name": "CifUserReportingRequirementsByEmissionIntensityReportUpdatedByAndReportingRequirementIdManyToManyConnection", "ofType": null } }, @@ -56505,8 +55432,8 @@ "deprecationReason": null }, { - "name": "reportTypesByReportingRequirementCreatedByAndReportType", - "description": "Reads and enables pagination through a set of `ReportType`.", + "name": "reportingRequirementsByMilestoneReportArchivedByAndReportingRequirementId", + "description": "Reads and enables pagination through a set of `ReportingRequirement`.", "args": [ { "name": "after", @@ -56533,7 +55460,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportTypeCondition", + "name": "ReportingRequirementCondition", "ofType": null }, "defaultValue": null @@ -56543,7 +55470,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportTypeFilter", + "name": "ReportingRequirementFilter", "ofType": null }, "defaultValue": null @@ -56590,7 +55517,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportType`.", + "description": "The method to use when ordering `ReportingRequirement`.", "type": { "kind": "LIST", "name": null, @@ -56599,7 +55526,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportTypesOrderBy", + "name": "ReportingRequirementsOrderBy", "ofType": null } } @@ -56612,7 +55539,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserReportTypesByReportingRequirementCreatedByAndReportTypeManyToManyConnection", + "name": "CifUserReportingRequirementsByMilestoneReportArchivedByAndReportingRequirementIdManyToManyConnection", "ofType": null } }, @@ -56620,8 +55547,8 @@ "deprecationReason": null }, { - "name": "reportTypesByReportingRequirementUpdatedByAndReportType", - "description": "Reads and enables pagination through a set of `ReportType`.", + "name": "reportingRequirementsByMilestoneReportCreatedByAndReportingRequirementId", + "description": "Reads and enables pagination through a set of `ReportingRequirement`.", "args": [ { "name": "after", @@ -56648,7 +55575,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportTypeCondition", + "name": "ReportingRequirementCondition", "ofType": null }, "defaultValue": null @@ -56658,7 +55585,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportTypeFilter", + "name": "ReportingRequirementFilter", "ofType": null }, "defaultValue": null @@ -56705,7 +55632,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportType`.", + "description": "The method to use when ordering `ReportingRequirement`.", "type": { "kind": "LIST", "name": null, @@ -56714,7 +55641,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportTypesOrderBy", + "name": "ReportingRequirementsOrderBy", "ofType": null } } @@ -56727,7 +55654,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserReportTypesByReportingRequirementUpdatedByAndReportTypeManyToManyConnection", + "name": "CifUserReportingRequirementsByMilestoneReportCreatedByAndReportingRequirementIdManyToManyConnection", "ofType": null } }, @@ -56735,8 +55662,8 @@ "deprecationReason": null }, { - "name": "reportTypesByUpdatedBy", - "description": "Reads and enables pagination through a set of `ReportType`.", + "name": "reportingRequirementsByMilestoneReportUpdatedByAndReportingRequirementId", + "description": "Reads and enables pagination through a set of `ReportingRequirement`.", "args": [ { "name": "after", @@ -56763,7 +55690,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportTypeCondition", + "name": "ReportingRequirementCondition", "ofType": null }, "defaultValue": null @@ -56773,7 +55700,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportTypeFilter", + "name": "ReportingRequirementFilter", "ofType": null }, "defaultValue": null @@ -56796,7 +55723,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -56820,7 +55747,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportType`.", + "description": "The method to use when ordering `ReportingRequirement`.", "type": { "kind": "LIST", "name": null, @@ -56829,7 +55756,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportTypesOrderBy", + "name": "ReportingRequirementsOrderBy", "ofType": null } } @@ -56842,7 +55769,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ReportTypesConnection", + "name": "CifUserReportingRequirementsByMilestoneReportUpdatedByAndReportingRequirementIdManyToManyConnection", "ofType": null } }, @@ -56850,7 +55777,7 @@ "deprecationReason": null }, { - "name": "reportingRequirementsByArchivedBy", + "name": "reportingRequirementsByPaymentArchivedByAndReportingRequirementId", "description": "Reads and enables pagination through a set of `ReportingRequirement`.", "args": [ { @@ -56911,7 +55838,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -56957,7 +55884,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ReportingRequirementsConnection", + "name": "CifUserReportingRequirementsByPaymentArchivedByAndReportingRequirementIdManyToManyConnection", "ofType": null } }, @@ -56965,7 +55892,7 @@ "deprecationReason": null }, { - "name": "reportingRequirementsByCreatedBy", + "name": "reportingRequirementsByPaymentCreatedByAndReportingRequirementId", "description": "Reads and enables pagination through a set of `ReportingRequirement`.", "args": [ { @@ -57026,7 +55953,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -57072,7 +55999,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ReportingRequirementsConnection", + "name": "CifUserReportingRequirementsByPaymentCreatedByAndReportingRequirementIdManyToManyConnection", "ofType": null } }, @@ -57080,7 +56007,7 @@ "deprecationReason": null }, { - "name": "reportingRequirementsByEmissionIntensityReportArchivedByAndReportingRequirementId", + "name": "reportingRequirementsByPaymentUpdatedByAndReportingRequirementId", "description": "Reads and enables pagination through a set of `ReportingRequirement`.", "args": [ { @@ -57187,7 +56114,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByEmissionIntensityReportArchivedByAndReportingRequirementIdManyToManyConnection", + "name": "CifUserReportingRequirementsByPaymentUpdatedByAndReportingRequirementIdManyToManyConnection", "ofType": null } }, @@ -57195,7 +56122,7 @@ "deprecationReason": null }, { - "name": "reportingRequirementsByEmissionIntensityReportCreatedByAndReportingRequirementId", + "name": "reportingRequirementsByUpdatedBy", "description": "Reads and enables pagination through a set of `ReportingRequirement`.", "args": [ { @@ -57256,7 +56183,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -57302,7 +56229,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByEmissionIntensityReportCreatedByAndReportingRequirementIdManyToManyConnection", + "name": "ReportingRequirementsConnection", "ofType": null } }, @@ -57310,8 +56237,8 @@ "deprecationReason": null }, { - "name": "reportingRequirementsByEmissionIntensityReportUpdatedByAndReportingRequirementId", - "description": "Reads and enables pagination through a set of `ReportingRequirement`.", + "name": "revisionStatusesByArchivedBy", + "description": "Reads and enables pagination through a set of `RevisionStatus`.", "args": [ { "name": "after", @@ -57338,7 +56265,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementCondition", + "name": "RevisionStatusCondition", "ofType": null }, "defaultValue": null @@ -57348,7 +56275,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementFilter", + "name": "RevisionStatusFilter", "ofType": null }, "defaultValue": null @@ -57371,7 +56298,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -57395,7 +56322,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportingRequirement`.", + "description": "The method to use when ordering `RevisionStatus`.", "type": { "kind": "LIST", "name": null, @@ -57404,7 +56331,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportingRequirementsOrderBy", + "name": "RevisionStatusesOrderBy", "ofType": null } } @@ -57417,7 +56344,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByEmissionIntensityReportUpdatedByAndReportingRequirementIdManyToManyConnection", + "name": "RevisionStatusesConnection", "ofType": null } }, @@ -57425,8 +56352,8 @@ "deprecationReason": null }, { - "name": "reportingRequirementsByMilestoneReportArchivedByAndReportingRequirementId", - "description": "Reads and enables pagination through a set of `ReportingRequirement`.", + "name": "revisionStatusesByCreatedBy", + "description": "Reads and enables pagination through a set of `RevisionStatus`.", "args": [ { "name": "after", @@ -57453,7 +56380,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementCondition", + "name": "RevisionStatusCondition", "ofType": null }, "defaultValue": null @@ -57463,7 +56390,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementFilter", + "name": "RevisionStatusFilter", "ofType": null }, "defaultValue": null @@ -57486,7 +56413,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -57510,7 +56437,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportingRequirement`.", + "description": "The method to use when ordering `RevisionStatus`.", "type": { "kind": "LIST", "name": null, @@ -57519,7 +56446,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportingRequirementsOrderBy", + "name": "RevisionStatusesOrderBy", "ofType": null } } @@ -57532,7 +56459,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByMilestoneReportArchivedByAndReportingRequirementIdManyToManyConnection", + "name": "RevisionStatusesConnection", "ofType": null } }, @@ -57540,8 +56467,8 @@ "deprecationReason": null }, { - "name": "reportingRequirementsByMilestoneReportCreatedByAndReportingRequirementId", - "description": "Reads and enables pagination through a set of `ReportingRequirement`.", + "name": "revisionStatusesByProjectRevisionCreatedByAndRevisionStatus", + "description": "Reads and enables pagination through a set of `RevisionStatus`.", "args": [ { "name": "after", @@ -57568,7 +56495,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementCondition", + "name": "RevisionStatusCondition", "ofType": null }, "defaultValue": null @@ -57578,7 +56505,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementFilter", + "name": "RevisionStatusFilter", "ofType": null }, "defaultValue": null @@ -57625,7 +56552,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportingRequirement`.", + "description": "The method to use when ordering `RevisionStatus`.", "type": { "kind": "LIST", "name": null, @@ -57634,7 +56561,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportingRequirementsOrderBy", + "name": "RevisionStatusesOrderBy", "ofType": null } } @@ -57647,7 +56574,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByMilestoneReportCreatedByAndReportingRequirementIdManyToManyConnection", + "name": "CifUserRevisionStatusesByProjectRevisionCreatedByAndRevisionStatusManyToManyConnection", "ofType": null } }, @@ -57655,8 +56582,8 @@ "deprecationReason": null }, { - "name": "reportingRequirementsByMilestoneReportUpdatedByAndReportingRequirementId", - "description": "Reads and enables pagination through a set of `ReportingRequirement`.", + "name": "revisionStatusesByProjectRevisionUpdatedByAndRevisionStatus", + "description": "Reads and enables pagination through a set of `RevisionStatus`.", "args": [ { "name": "after", @@ -57683,7 +56610,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementCondition", + "name": "RevisionStatusCondition", "ofType": null }, "defaultValue": null @@ -57693,7 +56620,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementFilter", + "name": "RevisionStatusFilter", "ofType": null }, "defaultValue": null @@ -57740,7 +56667,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportingRequirement`.", + "description": "The method to use when ordering `RevisionStatus`.", "type": { "kind": "LIST", "name": null, @@ -57749,7 +56676,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportingRequirementsOrderBy", + "name": "RevisionStatusesOrderBy", "ofType": null } } @@ -57762,7 +56689,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByMilestoneReportUpdatedByAndReportingRequirementIdManyToManyConnection", + "name": "CifUserRevisionStatusesByProjectRevisionUpdatedByAndRevisionStatusManyToManyConnection", "ofType": null } }, @@ -57770,8 +56697,8 @@ "deprecationReason": null }, { - "name": "reportingRequirementsByPaymentArchivedByAndReportingRequirementId", - "description": "Reads and enables pagination through a set of `ReportingRequirement`.", + "name": "revisionStatusesByUpdatedBy", + "description": "Reads and enables pagination through a set of `RevisionStatus`.", "args": [ { "name": "after", @@ -57798,7 +56725,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementCondition", + "name": "RevisionStatusCondition", "ofType": null }, "defaultValue": null @@ -57808,7 +56735,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementFilter", + "name": "RevisionStatusFilter", "ofType": null }, "defaultValue": null @@ -57831,7 +56758,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -57855,7 +56782,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportingRequirement`.", + "description": "The method to use when ordering `RevisionStatus`.", "type": { "kind": "LIST", "name": null, @@ -57864,7 +56791,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportingRequirementsOrderBy", + "name": "RevisionStatusesOrderBy", "ofType": null } } @@ -57877,7 +56804,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByPaymentArchivedByAndReportingRequirementIdManyToManyConnection", + "name": "RevisionStatusesConnection", "ofType": null } }, @@ -57885,8 +56812,8 @@ "deprecationReason": null }, { - "name": "reportingRequirementsByPaymentCreatedByAndReportingRequirementId", - "description": "Reads and enables pagination through a set of `ReportingRequirement`.", + "name": "revisionTypesByArchivedBy", + "description": "Reads and enables pagination through a set of `RevisionType`.", "args": [ { "name": "after", @@ -57913,7 +56840,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementCondition", + "name": "RevisionTypeCondition", "ofType": null }, "defaultValue": null @@ -57923,7 +56850,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementFilter", + "name": "RevisionTypeFilter", "ofType": null }, "defaultValue": null @@ -57946,7 +56873,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -57970,7 +56897,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportingRequirement`.", + "description": "The method to use when ordering `RevisionType`.", "type": { "kind": "LIST", "name": null, @@ -57979,7 +56906,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportingRequirementsOrderBy", + "name": "RevisionTypesOrderBy", "ofType": null } } @@ -57992,7 +56919,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByPaymentCreatedByAndReportingRequirementIdManyToManyConnection", + "name": "RevisionTypesConnection", "ofType": null } }, @@ -58000,8 +56927,8 @@ "deprecationReason": null }, { - "name": "reportingRequirementsByPaymentUpdatedByAndReportingRequirementId", - "description": "Reads and enables pagination through a set of `ReportingRequirement`.", + "name": "revisionTypesByCreatedBy", + "description": "Reads and enables pagination through a set of `RevisionType`.", "args": [ { "name": "after", @@ -58028,7 +56955,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementCondition", + "name": "RevisionTypeCondition", "ofType": null }, "defaultValue": null @@ -58038,7 +56965,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementFilter", + "name": "RevisionTypeFilter", "ofType": null }, "defaultValue": null @@ -58061,7 +56988,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -58085,7 +57012,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportingRequirement`.", + "description": "The method to use when ordering `RevisionType`.", "type": { "kind": "LIST", "name": null, @@ -58094,7 +57021,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportingRequirementsOrderBy", + "name": "RevisionTypesOrderBy", "ofType": null } } @@ -58107,7 +57034,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByPaymentUpdatedByAndReportingRequirementIdManyToManyConnection", + "name": "RevisionTypesConnection", "ofType": null } }, @@ -58115,8 +57042,8 @@ "deprecationReason": null }, { - "name": "reportingRequirementsByUpdatedBy", - "description": "Reads and enables pagination through a set of `ReportingRequirement`.", + "name": "revisionTypesByProjectRevisionCreatedByAndRevisionType", + "description": "Reads and enables pagination through a set of `RevisionType`.", "args": [ { "name": "after", @@ -58143,7 +57070,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementCondition", + "name": "RevisionTypeCondition", "ofType": null }, "defaultValue": null @@ -58153,7 +57080,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementFilter", + "name": "RevisionTypeFilter", "ofType": null }, "defaultValue": null @@ -58176,7 +57103,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -58200,7 +57127,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportingRequirement`.", + "description": "The method to use when ordering `RevisionType`.", "type": { "kind": "LIST", "name": null, @@ -58209,7 +57136,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportingRequirementsOrderBy", + "name": "RevisionTypesOrderBy", "ofType": null } } @@ -58222,7 +57149,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ReportingRequirementsConnection", + "name": "CifUserRevisionTypesByProjectRevisionCreatedByAndRevisionTypeManyToManyConnection", "ofType": null } }, @@ -58230,8 +57157,8 @@ "deprecationReason": null }, { - "name": "revisionStatusesByArchivedBy", - "description": "Reads and enables pagination through a set of `RevisionStatus`.", + "name": "revisionTypesByProjectRevisionUpdatedByAndRevisionType", + "description": "Reads and enables pagination through a set of `RevisionType`.", "args": [ { "name": "after", @@ -58258,7 +57185,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionStatusCondition", + "name": "RevisionTypeCondition", "ofType": null }, "defaultValue": null @@ -58268,7 +57195,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionStatusFilter", + "name": "RevisionTypeFilter", "ofType": null }, "defaultValue": null @@ -58291,7 +57218,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -58315,7 +57242,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `RevisionStatus`.", + "description": "The method to use when ordering `RevisionType`.", "type": { "kind": "LIST", "name": null, @@ -58324,7 +57251,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "RevisionStatusesOrderBy", + "name": "RevisionTypesOrderBy", "ofType": null } } @@ -58337,7 +57264,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RevisionStatusesConnection", + "name": "CifUserRevisionTypesByProjectRevisionUpdatedByAndRevisionTypeManyToManyConnection", "ofType": null } }, @@ -58345,8 +57272,8 @@ "deprecationReason": null }, { - "name": "revisionStatusesByCreatedBy", - "description": "Reads and enables pagination through a set of `RevisionStatus`.", + "name": "revisionTypesByUpdatedBy", + "description": "Reads and enables pagination through a set of `RevisionType`.", "args": [ { "name": "after", @@ -58373,7 +57300,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionStatusCondition", + "name": "RevisionTypeCondition", "ofType": null }, "defaultValue": null @@ -58383,7 +57310,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionStatusFilter", + "name": "RevisionTypeFilter", "ofType": null }, "defaultValue": null @@ -58430,7 +57357,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `RevisionStatus`.", + "description": "The method to use when ordering `RevisionType`.", "type": { "kind": "LIST", "name": null, @@ -58439,7 +57366,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "RevisionStatusesOrderBy", + "name": "RevisionTypesOrderBy", "ofType": null } } @@ -58452,7 +57379,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RevisionStatusesConnection", + "name": "RevisionTypesConnection", "ofType": null } }, @@ -58460,8 +57387,24 @@ "deprecationReason": null }, { - "name": "revisionStatusesByProjectRevisionCreatedByAndRevisionStatus", - "description": "Reads and enables pagination through a set of `RevisionStatus`.", + "name": "rowId", + "description": "Unique ID for the user", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sectorsByArchivedBy", + "description": "Reads and enables pagination through a set of `Sector`.", "args": [ { "name": "after", @@ -58488,7 +57431,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionStatusCondition", + "name": "SectorCondition", "ofType": null }, "defaultValue": null @@ -58498,7 +57441,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionStatusFilter", + "name": "SectorFilter", "ofType": null }, "defaultValue": null @@ -58521,7 +57464,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -58545,7 +57488,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `RevisionStatus`.", + "description": "The method to use when ordering `Sector`.", "type": { "kind": "LIST", "name": null, @@ -58554,7 +57497,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "RevisionStatusesOrderBy", + "name": "SectorsOrderBy", "ofType": null } } @@ -58567,7 +57510,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserRevisionStatusesByProjectRevisionCreatedByAndRevisionStatusManyToManyConnection", + "name": "SectorsConnection", "ofType": null } }, @@ -58575,8 +57518,8 @@ "deprecationReason": null }, { - "name": "revisionStatusesByProjectRevisionUpdatedByAndRevisionStatus", - "description": "Reads and enables pagination through a set of `RevisionStatus`.", + "name": "sectorsByCreatedBy", + "description": "Reads and enables pagination through a set of `Sector`.", "args": [ { "name": "after", @@ -58603,7 +57546,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionStatusCondition", + "name": "SectorCondition", "ofType": null }, "defaultValue": null @@ -58613,7 +57556,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionStatusFilter", + "name": "SectorFilter", "ofType": null }, "defaultValue": null @@ -58636,7 +57579,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -58660,7 +57603,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `RevisionStatus`.", + "description": "The method to use when ordering `Sector`.", "type": { "kind": "LIST", "name": null, @@ -58669,7 +57612,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "RevisionStatusesOrderBy", + "name": "SectorsOrderBy", "ofType": null } } @@ -58682,7 +57625,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserRevisionStatusesByProjectRevisionUpdatedByAndRevisionStatusManyToManyConnection", + "name": "SectorsConnection", "ofType": null } }, @@ -58690,8 +57633,8 @@ "deprecationReason": null }, { - "name": "revisionStatusesByUpdatedBy", - "description": "Reads and enables pagination through a set of `RevisionStatus`.", + "name": "sectorsByProjectArchivedByAndSectorName", + "description": "Reads and enables pagination through a set of `Sector`.", "args": [ { "name": "after", @@ -58718,7 +57661,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionStatusCondition", + "name": "SectorCondition", "ofType": null }, "defaultValue": null @@ -58728,7 +57671,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionStatusFilter", + "name": "SectorFilter", "ofType": null }, "defaultValue": null @@ -58751,7 +57694,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -58775,7 +57718,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `RevisionStatus`.", + "description": "The method to use when ordering `Sector`.", "type": { "kind": "LIST", "name": null, @@ -58784,7 +57727,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "RevisionStatusesOrderBy", + "name": "SectorsOrderBy", "ofType": null } } @@ -58797,7 +57740,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RevisionStatusesConnection", + "name": "CifUserSectorsByProjectArchivedByAndSectorNameManyToManyConnection", "ofType": null } }, @@ -58805,8 +57748,8 @@ "deprecationReason": null }, { - "name": "revisionTypesByArchivedBy", - "description": "Reads and enables pagination through a set of `RevisionType`.", + "name": "sectorsByProjectCreatedByAndSectorName", + "description": "Reads and enables pagination through a set of `Sector`.", "args": [ { "name": "after", @@ -58833,7 +57776,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionTypeCondition", + "name": "SectorCondition", "ofType": null }, "defaultValue": null @@ -58843,7 +57786,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionTypeFilter", + "name": "SectorFilter", "ofType": null }, "defaultValue": null @@ -58866,7 +57809,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -58890,7 +57833,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `RevisionType`.", + "description": "The method to use when ordering `Sector`.", "type": { "kind": "LIST", "name": null, @@ -58899,7 +57842,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "RevisionTypesOrderBy", + "name": "SectorsOrderBy", "ofType": null } } @@ -58912,7 +57855,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RevisionTypesConnection", + "name": "CifUserSectorsByProjectCreatedByAndSectorNameManyToManyConnection", "ofType": null } }, @@ -58920,8 +57863,8 @@ "deprecationReason": null }, { - "name": "revisionTypesByCreatedBy", - "description": "Reads and enables pagination through a set of `RevisionType`.", + "name": "sectorsByProjectUpdatedByAndSectorName", + "description": "Reads and enables pagination through a set of `Sector`.", "args": [ { "name": "after", @@ -58948,7 +57891,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionTypeCondition", + "name": "SectorCondition", "ofType": null }, "defaultValue": null @@ -58958,7 +57901,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionTypeFilter", + "name": "SectorFilter", "ofType": null }, "defaultValue": null @@ -58981,7 +57924,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -59005,7 +57948,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `RevisionType`.", + "description": "The method to use when ordering `Sector`.", "type": { "kind": "LIST", "name": null, @@ -59014,7 +57957,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "RevisionTypesOrderBy", + "name": "SectorsOrderBy", "ofType": null } } @@ -59027,7 +57970,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RevisionTypesConnection", + "name": "CifUserSectorsByProjectUpdatedByAndSectorNameManyToManyConnection", "ofType": null } }, @@ -59035,8 +57978,8 @@ "deprecationReason": null }, { - "name": "revisionTypesByProjectRevisionCreatedByAndRevisionType", - "description": "Reads and enables pagination through a set of `RevisionType`.", + "name": "sectorsByUpdatedBy", + "description": "Reads and enables pagination through a set of `Sector`.", "args": [ { "name": "after", @@ -59063,7 +58006,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionTypeCondition", + "name": "SectorCondition", "ofType": null }, "defaultValue": null @@ -59073,7 +58016,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionTypeFilter", + "name": "SectorFilter", "ofType": null }, "defaultValue": null @@ -59096,7 +58039,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -59120,7 +58063,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `RevisionType`.", + "description": "The method to use when ordering `Sector`.", "type": { "kind": "LIST", "name": null, @@ -59129,7 +58072,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "RevisionTypesOrderBy", + "name": "SectorsOrderBy", "ofType": null } } @@ -59142,7 +58085,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserRevisionTypesByProjectRevisionCreatedByAndRevisionTypeManyToManyConnection", + "name": "SectorsConnection", "ofType": null } }, @@ -59150,114 +58093,120 @@ "deprecationReason": null }, { - "name": "revisionTypesByProjectRevisionUpdatedByAndRevisionType", - "description": "Reads and enables pagination through a set of `RevisionType`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "RevisionTypeCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "RevisionTypeFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `RevisionType`.", - "type": { - "kind": "LIST", + "name": "sessionSub", + "description": "Universally Unique ID for the user, defined by the single sign-on provider", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "updated at timestamp", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedBy", + "description": "updated by user id", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CifUserAdditionalFundingSourceStatusesByAdditionalFundingSourceArchivedByAndStatusManyToManyConnection", + "description": "A connection to a list of `AdditionalFundingSourceStatus` values, with data from `AdditionalFundingSource`.", + "fields": [ + { + "name": "edges", + "description": "A list of edges which contains the `AdditionalFundingSourceStatus`, info from the `AdditionalFundingSource`, and the cursor to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "RevisionTypesOrderBy", - "ofType": null - } + "kind": "OBJECT", + "name": "CifUserAdditionalFundingSourceStatusesByAdditionalFundingSourceArchivedByAndStatusManyToManyEdge", + "ofType": null } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" + } } - ], + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": "A list of `AdditionalFundingSourceStatus` objects.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AdditionalFundingSourceStatus", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserRevisionTypesByProjectRevisionUpdatedByAndRevisionTypeManyToManyConnection", + "name": "PageInfo", "ofType": null } }, @@ -59265,8 +58214,35 @@ "deprecationReason": null }, { - "name": "revisionTypesByUpdatedBy", - "description": "Reads and enables pagination through a set of `RevisionType`.", + "name": "totalCount", + "description": "The count of *all* `AdditionalFundingSourceStatus` you could get from the connection.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CifUserAdditionalFundingSourceStatusesByAdditionalFundingSourceArchivedByAndStatusManyToManyEdge", + "description": "A `AdditionalFundingSourceStatus` edge in the connection, with data from `AdditionalFundingSource`.", + "fields": [ + { + "name": "additionalFundingSourcesByStatus", + "description": "Reads and enables pagination through a set of `AdditionalFundingSource`.", "args": [ { "name": "after", @@ -59293,7 +58269,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionTypeCondition", + "name": "AdditionalFundingSourceCondition", "ofType": null }, "defaultValue": null @@ -59303,7 +58279,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionTypeFilter", + "name": "AdditionalFundingSourceFilter", "ofType": null }, "defaultValue": null @@ -59326,7 +58302,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -59350,713 +58326,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `RevisionType`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "RevisionTypesOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "RevisionTypesConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rowId", - "description": "Unique ID for the user", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sectorsByArchivedBy", - "description": "Reads and enables pagination through a set of `Sector`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SectorCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SectorFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "INHERIT" - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Sector`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SectorsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SectorsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sectorsByCreatedBy", - "description": "Reads and enables pagination through a set of `Sector`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SectorCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SectorFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "INHERIT" - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Sector`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SectorsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SectorsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sectorsByProjectArchivedByAndSectorName", - "description": "Reads and enables pagination through a set of `Sector`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SectorCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SectorFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Sector`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SectorsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CifUserSectorsByProjectArchivedByAndSectorNameManyToManyConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sectorsByProjectCreatedByAndSectorName", - "description": "Reads and enables pagination through a set of `Sector`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SectorCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SectorFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Sector`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SectorsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CifUserSectorsByProjectCreatedByAndSectorNameManyToManyConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sectorsByProjectUpdatedByAndSectorName", - "description": "Reads and enables pagination through a set of `Sector`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SectorCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SectorFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Sector`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SectorsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CifUserSectorsByProjectUpdatedByAndSectorNameManyToManyConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sectorsByUpdatedBy", - "description": "Reads and enables pagination through a set of `Sector`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SectorCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SectorFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "INHERIT" - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Sector`.", + "description": "The method to use when ordering `AdditionalFundingSource`.", "type": { "kind": "LIST", "name": null, @@ -60065,7 +58335,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "SectorsOrderBy", + "name": "AdditionalFundingSourcesOrderBy", "ofType": null } } @@ -60078,23 +58348,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SectorsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sessionSub", - "description": "Universally Unique ID for the user, defined by the single sign-on provider", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", + "name": "AdditionalFundingSourcesConnection", "ofType": null } }, @@ -60102,28 +58356,24 @@ "deprecationReason": null }, { - "name": "updatedAt", - "description": "updated at timestamp", + "name": "cursor", + "description": "A cursor for use in pagination.", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Datetime", - "ofType": null - } + "kind": "SCALAR", + "name": "Cursor", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updatedBy", - "description": "updated by user id", + "name": "node", + "description": "The `AdditionalFundingSourceStatus` at the end of the edge.", "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "AdditionalFundingSourceStatus", "ofType": null }, "isDeprecated": false, @@ -60131,19 +58381,13 @@ } ], "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "CifUserAdditionalFundingSourceStatusesByAdditionalFundingSourceArchivedByAndStatusManyToManyConnection", + "name": "CifUserAdditionalFundingSourceStatusesByAdditionalFundingSourceCreatedByAndStatusManyToManyConnection", "description": "A connection to a list of `AdditionalFundingSourceStatus` values, with data from `AdditionalFundingSource`.", "fields": [ { @@ -60161,7 +58405,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserAdditionalFundingSourceStatusesByAdditionalFundingSourceArchivedByAndStatusManyToManyEdge", + "name": "CifUserAdditionalFundingSourceStatusesByAdditionalFundingSourceCreatedByAndStatusManyToManyEdge", "ofType": null } } @@ -60230,7 +58474,7 @@ }, { "kind": "OBJECT", - "name": "CifUserAdditionalFundingSourceStatusesByAdditionalFundingSourceArchivedByAndStatusManyToManyEdge", + "name": "CifUserAdditionalFundingSourceStatusesByAdditionalFundingSourceCreatedByAndStatusManyToManyEdge", "description": "A `AdditionalFundingSourceStatus` edge in the connection, with data from `AdditionalFundingSource`.", "fields": [ { @@ -60380,7 +58624,7 @@ }, { "kind": "OBJECT", - "name": "CifUserAdditionalFundingSourceStatusesByAdditionalFundingSourceCreatedByAndStatusManyToManyConnection", + "name": "CifUserAdditionalFundingSourceStatusesByAdditionalFundingSourceUpdatedByAndStatusManyToManyConnection", "description": "A connection to a list of `AdditionalFundingSourceStatus` values, with data from `AdditionalFundingSource`.", "fields": [ { @@ -60398,7 +58642,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserAdditionalFundingSourceStatusesByAdditionalFundingSourceCreatedByAndStatusManyToManyEdge", + "name": "CifUserAdditionalFundingSourceStatusesByAdditionalFundingSourceUpdatedByAndStatusManyToManyEdge", "ofType": null } } @@ -60467,7 +58711,7 @@ }, { "kind": "OBJECT", - "name": "CifUserAdditionalFundingSourceStatusesByAdditionalFundingSourceCreatedByAndStatusManyToManyEdge", + "name": "CifUserAdditionalFundingSourceStatusesByAdditionalFundingSourceUpdatedByAndStatusManyToManyEdge", "description": "A `AdditionalFundingSourceStatus` edge in the connection, with data from `AdditionalFundingSource`.", "fields": [ { @@ -60617,12 +58861,12 @@ }, { "kind": "OBJECT", - "name": "CifUserAdditionalFundingSourceStatusesByAdditionalFundingSourceUpdatedByAndStatusManyToManyConnection", - "description": "A connection to a list of `AdditionalFundingSourceStatus` values, with data from `AdditionalFundingSource`.", + "name": "CifUserAmendmentTypesByProjectRevisionAmendmentTypeArchivedByAndAmendmentTypeManyToManyConnection", + "description": "A connection to a list of `AmendmentType` values, with data from `ProjectRevisionAmendmentType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `AdditionalFundingSourceStatus`, info from the `AdditionalFundingSource`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `AmendmentType`, info from the `ProjectRevisionAmendmentType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -60635,7 +58879,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserAdditionalFundingSourceStatusesByAdditionalFundingSourceUpdatedByAndStatusManyToManyEdge", + "name": "CifUserAmendmentTypesByProjectRevisionAmendmentTypeArchivedByAndAmendmentTypeManyToManyEdge", "ofType": null } } @@ -60646,7 +58890,7 @@ }, { "name": "nodes", - "description": "A list of `AdditionalFundingSourceStatus` objects.", + "description": "A list of `AmendmentType` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -60656,7 +58900,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AdditionalFundingSourceStatus", + "name": "AmendmentType", "ofType": null } } @@ -60682,7 +58926,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `AdditionalFundingSourceStatus` you could get from the connection.", + "description": "The count of *all* `AmendmentType` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -60704,12 +58948,36 @@ }, { "kind": "OBJECT", - "name": "CifUserAdditionalFundingSourceStatusesByAdditionalFundingSourceUpdatedByAndStatusManyToManyEdge", - "description": "A `AdditionalFundingSourceStatus` edge in the connection, with data from `AdditionalFundingSource`.", + "name": "CifUserAmendmentTypesByProjectRevisionAmendmentTypeArchivedByAndAmendmentTypeManyToManyEdge", + "description": "A `AmendmentType` edge in the connection, with data from `ProjectRevisionAmendmentType`.", "fields": [ { - "name": "additionalFundingSourcesByStatus", - "description": "Reads and enables pagination through a set of `AdditionalFundingSource`.", + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": "The `AmendmentType` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "AmendmentType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectRevisionAmendmentTypesByAmendmentType", + "description": "Reads and enables pagination through a set of `ProjectRevisionAmendmentType`.", "args": [ { "name": "after", @@ -60736,7 +59004,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceCondition", + "name": "ProjectRevisionAmendmentTypeCondition", "ofType": null }, "defaultValue": null @@ -60746,7 +59014,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceFilter", + "name": "ProjectRevisionAmendmentTypeFilter", "ofType": null }, "defaultValue": null @@ -60793,7 +59061,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `AdditionalFundingSource`.", + "description": "The method to use when ordering `ProjectRevisionAmendmentType`.", "type": { "kind": "LIST", "name": null, @@ -60802,7 +59070,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AdditionalFundingSourcesOrderBy", + "name": "ProjectRevisionAmendmentTypesOrderBy", "ofType": null } } @@ -60815,36 +59083,12 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AdditionalFundingSourcesConnection", + "name": "ProjectRevisionAmendmentTypesConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `AdditionalFundingSourceStatus` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "AdditionalFundingSourceStatus", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null } ], "inputFields": null, @@ -60854,7 +59098,7 @@ }, { "kind": "OBJECT", - "name": "CifUserAmendmentTypesByProjectRevisionAmendmentTypeArchivedByAndAmendmentTypeManyToManyConnection", + "name": "CifUserAmendmentTypesByProjectRevisionAmendmentTypeCreatedByAndAmendmentTypeManyToManyConnection", "description": "A connection to a list of `AmendmentType` values, with data from `ProjectRevisionAmendmentType`.", "fields": [ { @@ -60872,7 +59116,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserAmendmentTypesByProjectRevisionAmendmentTypeArchivedByAndAmendmentTypeManyToManyEdge", + "name": "CifUserAmendmentTypesByProjectRevisionAmendmentTypeCreatedByAndAmendmentTypeManyToManyEdge", "ofType": null } } @@ -60941,7 +59185,7 @@ }, { "kind": "OBJECT", - "name": "CifUserAmendmentTypesByProjectRevisionAmendmentTypeArchivedByAndAmendmentTypeManyToManyEdge", + "name": "CifUserAmendmentTypesByProjectRevisionAmendmentTypeCreatedByAndAmendmentTypeManyToManyEdge", "description": "A `AmendmentType` edge in the connection, with data from `ProjectRevisionAmendmentType`.", "fields": [ { @@ -61091,7 +59335,7 @@ }, { "kind": "OBJECT", - "name": "CifUserAmendmentTypesByProjectRevisionAmendmentTypeCreatedByAndAmendmentTypeManyToManyConnection", + "name": "CifUserAmendmentTypesByProjectRevisionAmendmentTypeUpdatedByAndAmendmentTypeManyToManyConnection", "description": "A connection to a list of `AmendmentType` values, with data from `ProjectRevisionAmendmentType`.", "fields": [ { @@ -61109,7 +59353,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserAmendmentTypesByProjectRevisionAmendmentTypeCreatedByAndAmendmentTypeManyToManyEdge", + "name": "CifUserAmendmentTypesByProjectRevisionAmendmentTypeUpdatedByAndAmendmentTypeManyToManyEdge", "ofType": null } } @@ -61178,7 +59422,7 @@ }, { "kind": "OBJECT", - "name": "CifUserAmendmentTypesByProjectRevisionAmendmentTypeCreatedByAndAmendmentTypeManyToManyEdge", + "name": "CifUserAmendmentTypesByProjectRevisionAmendmentTypeUpdatedByAndAmendmentTypeManyToManyEdge", "description": "A `AmendmentType` edge in the connection, with data from `ProjectRevisionAmendmentType`.", "fields": [ { @@ -61328,12 +59572,12 @@ }, { "kind": "OBJECT", - "name": "CifUserAmendmentTypesByProjectRevisionAmendmentTypeUpdatedByAndAmendmentTypeManyToManyConnection", - "description": "A connection to a list of `AmendmentType` values, with data from `ProjectRevisionAmendmentType`.", + "name": "CifUserChangeStatusesByFormChangeCreatedByAndChangeStatusManyToManyConnection", + "description": "A connection to a list of `ChangeStatus` values, with data from `FormChange`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `AmendmentType`, info from the `ProjectRevisionAmendmentType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `ChangeStatus`, info from the `FormChange`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -61346,7 +59590,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserAmendmentTypesByProjectRevisionAmendmentTypeUpdatedByAndAmendmentTypeManyToManyEdge", + "name": "CifUserChangeStatusesByFormChangeCreatedByAndChangeStatusManyToManyEdge", "ofType": null } } @@ -61357,7 +59601,7 @@ }, { "name": "nodes", - "description": "A list of `AmendmentType` objects.", + "description": "A list of `ChangeStatus` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -61367,7 +59611,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AmendmentType", + "name": "ChangeStatus", "ofType": null } } @@ -61393,7 +59637,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `AmendmentType` you could get from the connection.", + "description": "The count of *all* `ChangeStatus` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -61415,8 +59659,8 @@ }, { "kind": "OBJECT", - "name": "CifUserAmendmentTypesByProjectRevisionAmendmentTypeUpdatedByAndAmendmentTypeManyToManyEdge", - "description": "A `AmendmentType` edge in the connection, with data from `ProjectRevisionAmendmentType`.", + "name": "CifUserChangeStatusesByFormChangeCreatedByAndChangeStatusManyToManyEdge", + "description": "A `ChangeStatus` edge in the connection, with data from `FormChange`.", "fields": [ { "name": "cursor", @@ -61431,20 +59675,8 @@ "deprecationReason": null }, { - "name": "node", - "description": "The `AmendmentType` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "AmendmentType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectRevisionAmendmentTypesByAmendmentType", - "description": "Reads and enables pagination through a set of `ProjectRevisionAmendmentType`.", + "name": "formChangesByChangeStatus", + "description": "Reads and enables pagination through a set of `FormChange`.", "args": [ { "name": "after", @@ -61471,7 +59703,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionAmendmentTypeCondition", + "name": "FormChangeCondition", "ofType": null }, "defaultValue": null @@ -61481,7 +59713,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionAmendmentTypeFilter", + "name": "FormChangeFilter", "ofType": null }, "defaultValue": null @@ -61496,16 +59728,6 @@ }, "defaultValue": null }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -61528,7 +59750,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectRevisionAmendmentType`.", + "description": "The method to use when ordering `FormChange`.", "type": { "kind": "LIST", "name": null, @@ -61537,7 +59759,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectRevisionAmendmentTypesOrderBy", + "name": "FormChangesOrderBy", "ofType": null } } @@ -61550,12 +59772,24 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectRevisionAmendmentTypesConnection", + "name": "FormChangesConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "node", + "description": "The `ChangeStatus` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ChangeStatus", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -61565,12 +59799,12 @@ }, { "kind": "OBJECT", - "name": "CifUserAttachmentsByProjectAttachmentArchivedByAndAttachmentIdManyToManyConnection", - "description": "A connection to a list of `Attachment` values, with data from `ProjectAttachment`.", + "name": "CifUserChangeStatusesByFormChangeUpdatedByAndChangeStatusManyToManyConnection", + "description": "A connection to a list of `ChangeStatus` values, with data from `FormChange`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `Attachment`, info from the `ProjectAttachment`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `ChangeStatus`, info from the `FormChange`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -61583,7 +59817,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserAttachmentsByProjectAttachmentArchivedByAndAttachmentIdManyToManyEdge", + "name": "CifUserChangeStatusesByFormChangeUpdatedByAndChangeStatusManyToManyEdge", "ofType": null } } @@ -61594,7 +59828,7 @@ }, { "name": "nodes", - "description": "A list of `Attachment` objects.", + "description": "A list of `ChangeStatus` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -61604,7 +59838,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Attachment", + "name": "ChangeStatus", "ofType": null } } @@ -61630,7 +59864,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `Attachment` you could get from the connection.", + "description": "The count of *all* `ChangeStatus` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -61652,8 +59886,8 @@ }, { "kind": "OBJECT", - "name": "CifUserAttachmentsByProjectAttachmentArchivedByAndAttachmentIdManyToManyEdge", - "description": "A `Attachment` edge in the connection, with data from `ProjectAttachment`.", + "name": "CifUserChangeStatusesByFormChangeUpdatedByAndChangeStatusManyToManyEdge", + "description": "A `ChangeStatus` edge in the connection, with data from `FormChange`.", "fields": [ { "name": "cursor", @@ -61668,20 +59902,8 @@ "deprecationReason": null }, { - "name": "node", - "description": "The `Attachment` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Attachment", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectAttachmentsByAttachmentId", - "description": "Reads and enables pagination through a set of `ProjectAttachment`.", + "name": "formChangesByChangeStatus", + "description": "Reads and enables pagination through a set of `FormChange`.", "args": [ { "name": "after", @@ -61708,7 +59930,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentCondition", + "name": "FormChangeCondition", "ofType": null }, "defaultValue": null @@ -61718,7 +59940,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentFilter", + "name": "FormChangeFilter", "ofType": null }, "defaultValue": null @@ -61733,16 +59955,6 @@ }, "defaultValue": null }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -61765,7 +59977,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectAttachment`.", + "description": "The method to use when ordering `FormChange`.", "type": { "kind": "LIST", "name": null, @@ -61774,7 +59986,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectAttachmentsOrderBy", + "name": "FormChangesOrderBy", "ofType": null } } @@ -61787,12 +59999,24 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectAttachmentsConnection", + "name": "FormChangesConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "node", + "description": "The `ChangeStatus` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ChangeStatus", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -61802,12 +60026,12 @@ }, { "kind": "OBJECT", - "name": "CifUserAttachmentsByProjectAttachmentCreatedByAndAttachmentIdManyToManyConnection", - "description": "A connection to a list of `Attachment` values, with data from `ProjectAttachment`.", + "name": "CifUserChangeStatusesByProjectRevisionCreatedByAndChangeStatusManyToManyConnection", + "description": "A connection to a list of `ChangeStatus` values, with data from `ProjectRevision`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `Attachment`, info from the `ProjectAttachment`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `ChangeStatus`, info from the `ProjectRevision`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -61820,7 +60044,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserAttachmentsByProjectAttachmentCreatedByAndAttachmentIdManyToManyEdge", + "name": "CifUserChangeStatusesByProjectRevisionCreatedByAndChangeStatusManyToManyEdge", "ofType": null } } @@ -61831,7 +60055,7 @@ }, { "name": "nodes", - "description": "A list of `Attachment` objects.", + "description": "A list of `ChangeStatus` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -61841,7 +60065,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Attachment", + "name": "ChangeStatus", "ofType": null } } @@ -61867,7 +60091,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `Attachment` you could get from the connection.", + "description": "The count of *all* `ChangeStatus` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -61889,8 +60113,8 @@ }, { "kind": "OBJECT", - "name": "CifUserAttachmentsByProjectAttachmentCreatedByAndAttachmentIdManyToManyEdge", - "description": "A `Attachment` edge in the connection, with data from `ProjectAttachment`.", + "name": "CifUserChangeStatusesByProjectRevisionCreatedByAndChangeStatusManyToManyEdge", + "description": "A `ChangeStatus` edge in the connection, with data from `ProjectRevision`.", "fields": [ { "name": "cursor", @@ -61906,19 +60130,19 @@ }, { "name": "node", - "description": "The `Attachment` at the end of the edge.", + "description": "The `ChangeStatus` at the end of the edge.", "args": [], "type": { "kind": "OBJECT", - "name": "Attachment", + "name": "ChangeStatus", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectAttachmentsByAttachmentId", - "description": "Reads and enables pagination through a set of `ProjectAttachment`.", + "name": "projectRevisionsByChangeStatus", + "description": "Reads and enables pagination through a set of `ProjectRevision`.", "args": [ { "name": "after", @@ -61945,7 +60169,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentCondition", + "name": "ProjectRevisionCondition", "ofType": null }, "defaultValue": null @@ -61955,7 +60179,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentFilter", + "name": "ProjectRevisionFilter", "ofType": null }, "defaultValue": null @@ -61970,16 +60194,6 @@ }, "defaultValue": null }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -62002,7 +60216,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectAttachment`.", + "description": "The method to use when ordering `ProjectRevision`.", "type": { "kind": "LIST", "name": null, @@ -62011,7 +60225,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectAttachmentsOrderBy", + "name": "ProjectRevisionsOrderBy", "ofType": null } } @@ -62024,7 +60238,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectAttachmentsConnection", + "name": "ProjectRevisionsConnection", "ofType": null } }, @@ -62039,12 +60253,12 @@ }, { "kind": "OBJECT", - "name": "CifUserAttachmentsByProjectAttachmentUpdatedByAndAttachmentIdManyToManyConnection", - "description": "A connection to a list of `Attachment` values, with data from `ProjectAttachment`.", + "name": "CifUserChangeStatusesByProjectRevisionUpdatedByAndChangeStatusManyToManyConnection", + "description": "A connection to a list of `ChangeStatus` values, with data from `ProjectRevision`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `Attachment`, info from the `ProjectAttachment`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `ChangeStatus`, info from the `ProjectRevision`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -62057,7 +60271,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserAttachmentsByProjectAttachmentUpdatedByAndAttachmentIdManyToManyEdge", + "name": "CifUserChangeStatusesByProjectRevisionUpdatedByAndChangeStatusManyToManyEdge", "ofType": null } } @@ -62068,7 +60282,7 @@ }, { "name": "nodes", - "description": "A list of `Attachment` objects.", + "description": "A list of `ChangeStatus` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -62078,7 +60292,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Attachment", + "name": "ChangeStatus", "ofType": null } } @@ -62104,7 +60318,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `Attachment` you could get from the connection.", + "description": "The count of *all* `ChangeStatus` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -62126,8 +60340,8 @@ }, { "kind": "OBJECT", - "name": "CifUserAttachmentsByProjectAttachmentUpdatedByAndAttachmentIdManyToManyEdge", - "description": "A `Attachment` edge in the connection, with data from `ProjectAttachment`.", + "name": "CifUserChangeStatusesByProjectRevisionUpdatedByAndChangeStatusManyToManyEdge", + "description": "A `ChangeStatus` edge in the connection, with data from `ProjectRevision`.", "fields": [ { "name": "cursor", @@ -62143,19 +60357,19 @@ }, { "name": "node", - "description": "The `Attachment` at the end of the edge.", + "description": "The `ChangeStatus` at the end of the edge.", "args": [], "type": { "kind": "OBJECT", - "name": "Attachment", + "name": "ChangeStatus", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectAttachmentsByAttachmentId", - "description": "Reads and enables pagination through a set of `ProjectAttachment`.", + "name": "projectRevisionsByChangeStatus", + "description": "Reads and enables pagination through a set of `ProjectRevision`.", "args": [ { "name": "after", @@ -62182,7 +60396,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentCondition", + "name": "ProjectRevisionCondition", "ofType": null }, "defaultValue": null @@ -62192,7 +60406,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentFilter", + "name": "ProjectRevisionFilter", "ofType": null }, "defaultValue": null @@ -62207,16 +60421,6 @@ }, "defaultValue": null }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -62239,7 +60443,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectAttachment`.", + "description": "The method to use when ordering `ProjectRevision`.", "type": { "kind": "LIST", "name": null, @@ -62248,7 +60452,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectAttachmentsOrderBy", + "name": "ProjectRevisionsOrderBy", "ofType": null } } @@ -62261,7 +60465,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectAttachmentsConnection", + "name": "ProjectRevisionsConnection", "ofType": null } }, @@ -62276,12 +60480,12 @@ }, { "kind": "OBJECT", - "name": "CifUserChangeStatusesByFormChangeCreatedByAndChangeStatusManyToManyConnection", - "description": "A connection to a list of `ChangeStatus` values, with data from `FormChange`.", + "name": "CifUserCifUsersByAdditionalFundingSourceArchivedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `AdditionalFundingSource`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `ChangeStatus`, info from the `FormChange`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `AdditionalFundingSource`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -62294,7 +60498,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserChangeStatusesByFormChangeCreatedByAndChangeStatusManyToManyEdge", + "name": "CifUserCifUsersByAdditionalFundingSourceArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -62305,7 +60509,7 @@ }, { "name": "nodes", - "description": "A list of `ChangeStatus` objects.", + "description": "A list of `CifUser` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -62315,7 +60519,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ChangeStatus", + "name": "CifUser", "ofType": null } } @@ -62341,7 +60545,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `ChangeStatus` you could get from the connection.", + "description": "The count of *all* `CifUser` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -62363,24 +60567,12 @@ }, { "kind": "OBJECT", - "name": "CifUserChangeStatusesByFormChangeCreatedByAndChangeStatusManyToManyEdge", - "description": "A `ChangeStatus` edge in the connection, with data from `FormChange`.", + "name": "CifUserCifUsersByAdditionalFundingSourceArchivedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `AdditionalFundingSource`.", "fields": [ { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "formChangesByChangeStatus", - "description": "Reads and enables pagination through a set of `FormChange`.", + "name": "additionalFundingSourcesByCreatedBy", + "description": "Reads and enables pagination through a set of `AdditionalFundingSource`.", "args": [ { "name": "after", @@ -62407,7 +60599,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormChangeCondition", + "name": "AdditionalFundingSourceCondition", "ofType": null }, "defaultValue": null @@ -62417,7 +60609,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormChangeFilter", + "name": "AdditionalFundingSourceFilter", "ofType": null }, "defaultValue": null @@ -62432,6 +60624,16 @@ }, "defaultValue": null }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -62454,7 +60656,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FormChange`.", + "description": "The method to use when ordering `AdditionalFundingSource`.", "type": { "kind": "LIST", "name": null, @@ -62463,7 +60665,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FormChangesOrderBy", + "name": "AdditionalFundingSourcesOrderBy", "ofType": null } } @@ -62476,20 +60678,32 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FormChangesConnection", + "name": "AdditionalFundingSourcesConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, + { + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "node", - "description": "The `ChangeStatus` at the end of the edge.", + "description": "The `CifUser` at the end of the edge.", "args": [], "type": { "kind": "OBJECT", - "name": "ChangeStatus", + "name": "CifUser", "ofType": null }, "isDeprecated": false, @@ -62503,12 +60717,12 @@ }, { "kind": "OBJECT", - "name": "CifUserChangeStatusesByFormChangeUpdatedByAndChangeStatusManyToManyConnection", - "description": "A connection to a list of `ChangeStatus` values, with data from `FormChange`.", + "name": "CifUserCifUsersByAdditionalFundingSourceArchivedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `AdditionalFundingSource`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `ChangeStatus`, info from the `FormChange`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `AdditionalFundingSource`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -62521,7 +60735,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserChangeStatusesByFormChangeUpdatedByAndChangeStatusManyToManyEdge", + "name": "CifUserCifUsersByAdditionalFundingSourceArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -62532,7 +60746,7 @@ }, { "name": "nodes", - "description": "A list of `ChangeStatus` objects.", + "description": "A list of `CifUser` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -62542,7 +60756,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ChangeStatus", + "name": "CifUser", "ofType": null } } @@ -62568,7 +60782,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `ChangeStatus` you could get from the connection.", + "description": "The count of *all* `CifUser` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -62590,24 +60804,12 @@ }, { "kind": "OBJECT", - "name": "CifUserChangeStatusesByFormChangeUpdatedByAndChangeStatusManyToManyEdge", - "description": "A `ChangeStatus` edge in the connection, with data from `FormChange`.", + "name": "CifUserCifUsersByAdditionalFundingSourceArchivedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `AdditionalFundingSource`.", "fields": [ { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "formChangesByChangeStatus", - "description": "Reads and enables pagination through a set of `FormChange`.", + "name": "additionalFundingSourcesByUpdatedBy", + "description": "Reads and enables pagination through a set of `AdditionalFundingSource`.", "args": [ { "name": "after", @@ -62634,7 +60836,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormChangeCondition", + "name": "AdditionalFundingSourceCondition", "ofType": null }, "defaultValue": null @@ -62644,7 +60846,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormChangeFilter", + "name": "AdditionalFundingSourceFilter", "ofType": null }, "defaultValue": null @@ -62659,6 +60861,16 @@ }, "defaultValue": null }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -62681,7 +60893,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FormChange`.", + "description": "The method to use when ordering `AdditionalFundingSource`.", "type": { "kind": "LIST", "name": null, @@ -62690,7 +60902,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FormChangesOrderBy", + "name": "AdditionalFundingSourcesOrderBy", "ofType": null } } @@ -62703,20 +60915,32 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FormChangesConnection", + "name": "AdditionalFundingSourcesConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, + { + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "node", - "description": "The `ChangeStatus` at the end of the edge.", + "description": "The `CifUser` at the end of the edge.", "args": [], "type": { "kind": "OBJECT", - "name": "ChangeStatus", + "name": "CifUser", "ofType": null }, "isDeprecated": false, @@ -62730,12 +60954,12 @@ }, { "kind": "OBJECT", - "name": "CifUserChangeStatusesByProjectRevisionCreatedByAndChangeStatusManyToManyConnection", - "description": "A connection to a list of `ChangeStatus` values, with data from `ProjectRevision`.", + "name": "CifUserCifUsersByAdditionalFundingSourceCreatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `AdditionalFundingSource`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `ChangeStatus`, info from the `ProjectRevision`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `AdditionalFundingSource`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -62748,7 +60972,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserChangeStatusesByProjectRevisionCreatedByAndChangeStatusManyToManyEdge", + "name": "CifUserCifUsersByAdditionalFundingSourceCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -62759,7 +60983,7 @@ }, { "name": "nodes", - "description": "A list of `ChangeStatus` objects.", + "description": "A list of `CifUser` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -62769,7 +60993,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ChangeStatus", + "name": "CifUser", "ofType": null } } @@ -62795,7 +61019,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `ChangeStatus` you could get from the connection.", + "description": "The count of *all* `CifUser` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -62817,36 +61041,12 @@ }, { "kind": "OBJECT", - "name": "CifUserChangeStatusesByProjectRevisionCreatedByAndChangeStatusManyToManyEdge", - "description": "A `ChangeStatus` edge in the connection, with data from `ProjectRevision`.", + "name": "CifUserCifUsersByAdditionalFundingSourceCreatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `AdditionalFundingSource`.", "fields": [ { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `ChangeStatus` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ChangeStatus", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectRevisionsByChangeStatus", - "description": "Reads and enables pagination through a set of `ProjectRevision`.", + "name": "additionalFundingSourcesByArchivedBy", + "description": "Reads and enables pagination through a set of `AdditionalFundingSource`.", "args": [ { "name": "after", @@ -62873,7 +61073,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionCondition", + "name": "AdditionalFundingSourceCondition", "ofType": null }, "defaultValue": null @@ -62883,7 +61083,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionFilter", + "name": "AdditionalFundingSourceFilter", "ofType": null }, "defaultValue": null @@ -62898,6 +61098,16 @@ }, "defaultValue": null }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -62920,7 +61130,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectRevision`.", + "description": "The method to use when ordering `AdditionalFundingSource`.", "type": { "kind": "LIST", "name": null, @@ -62929,7 +61139,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectRevisionsOrderBy", + "name": "AdditionalFundingSourcesOrderBy", "ofType": null } } @@ -62942,12 +61152,36 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectRevisionsConnection", + "name": "AdditionalFundingSourcesConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": "The `CifUser` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "CifUser", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -62957,12 +61191,12 @@ }, { "kind": "OBJECT", - "name": "CifUserChangeStatusesByProjectRevisionUpdatedByAndChangeStatusManyToManyConnection", - "description": "A connection to a list of `ChangeStatus` values, with data from `ProjectRevision`.", + "name": "CifUserCifUsersByAdditionalFundingSourceCreatedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `AdditionalFundingSource`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `ChangeStatus`, info from the `ProjectRevision`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `AdditionalFundingSource`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -62975,7 +61209,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserChangeStatusesByProjectRevisionUpdatedByAndChangeStatusManyToManyEdge", + "name": "CifUserCifUsersByAdditionalFundingSourceCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -62986,7 +61220,7 @@ }, { "name": "nodes", - "description": "A list of `ChangeStatus` objects.", + "description": "A list of `CifUser` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -62996,7 +61230,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ChangeStatus", + "name": "CifUser", "ofType": null } } @@ -63022,7 +61256,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `ChangeStatus` you could get from the connection.", + "description": "The count of *all* `CifUser` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -63044,36 +61278,12 @@ }, { "kind": "OBJECT", - "name": "CifUserChangeStatusesByProjectRevisionUpdatedByAndChangeStatusManyToManyEdge", - "description": "A `ChangeStatus` edge in the connection, with data from `ProjectRevision`.", + "name": "CifUserCifUsersByAdditionalFundingSourceCreatedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `AdditionalFundingSource`.", "fields": [ { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `ChangeStatus` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ChangeStatus", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectRevisionsByChangeStatus", - "description": "Reads and enables pagination through a set of `ProjectRevision`.", + "name": "additionalFundingSourcesByUpdatedBy", + "description": "Reads and enables pagination through a set of `AdditionalFundingSource`.", "args": [ { "name": "after", @@ -63100,7 +61310,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionCondition", + "name": "AdditionalFundingSourceCondition", "ofType": null }, "defaultValue": null @@ -63110,7 +61320,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionFilter", + "name": "AdditionalFundingSourceFilter", "ofType": null }, "defaultValue": null @@ -63125,6 +61335,16 @@ }, "defaultValue": null }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -63147,7 +61367,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectRevision`.", + "description": "The method to use when ordering `AdditionalFundingSource`.", "type": { "kind": "LIST", "name": null, @@ -63156,7 +61376,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectRevisionsOrderBy", + "name": "AdditionalFundingSourcesOrderBy", "ofType": null } } @@ -63169,12 +61389,36 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectRevisionsConnection", + "name": "AdditionalFundingSourcesConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": "The `CifUser` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "CifUser", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -63184,12 +61428,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceArchivedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `AdditionalFundingSource`.", + "name": "CifUserCifUsersByAdditionalFundingSourceStatusArchivedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `AdditionalFundingSourceStatus`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `AdditionalFundingSource`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `AdditionalFundingSourceStatus`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -63202,7 +61446,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByAdditionalFundingSourceStatusArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -63271,12 +61515,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceArchivedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `AdditionalFundingSource`.", + "name": "CifUserCifUsersByAdditionalFundingSourceStatusArchivedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `AdditionalFundingSourceStatus`.", "fields": [ { - "name": "additionalFundingSourcesByCreatedBy", - "description": "Reads and enables pagination through a set of `AdditionalFundingSource`.", + "name": "additionalFundingSourceStatusesByCreatedBy", + "description": "Reads and enables pagination through a set of `AdditionalFundingSourceStatus`.", "args": [ { "name": "after", @@ -63303,7 +61547,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceCondition", + "name": "AdditionalFundingSourceStatusCondition", "ofType": null }, "defaultValue": null @@ -63313,7 +61557,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceFilter", + "name": "AdditionalFundingSourceStatusFilter", "ofType": null }, "defaultValue": null @@ -63360,7 +61604,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `AdditionalFundingSource`.", + "description": "The method to use when ordering `AdditionalFundingSourceStatus`.", "type": { "kind": "LIST", "name": null, @@ -63369,7 +61613,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AdditionalFundingSourcesOrderBy", + "name": "AdditionalFundingSourceStatusesOrderBy", "ofType": null } } @@ -63382,7 +61626,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AdditionalFundingSourcesConnection", + "name": "AdditionalFundingSourceStatusesConnection", "ofType": null } }, @@ -63421,12 +61665,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceArchivedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `AdditionalFundingSource`.", + "name": "CifUserCifUsersByAdditionalFundingSourceStatusArchivedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `AdditionalFundingSourceStatus`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `AdditionalFundingSource`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `AdditionalFundingSourceStatus`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -63439,7 +61683,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByAdditionalFundingSourceStatusArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -63508,12 +61752,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceArchivedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `AdditionalFundingSource`.", + "name": "CifUserCifUsersByAdditionalFundingSourceStatusArchivedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `AdditionalFundingSourceStatus`.", "fields": [ { - "name": "additionalFundingSourcesByUpdatedBy", - "description": "Reads and enables pagination through a set of `AdditionalFundingSource`.", + "name": "additionalFundingSourceStatusesByUpdatedBy", + "description": "Reads and enables pagination through a set of `AdditionalFundingSourceStatus`.", "args": [ { "name": "after", @@ -63540,7 +61784,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceCondition", + "name": "AdditionalFundingSourceStatusCondition", "ofType": null }, "defaultValue": null @@ -63550,7 +61794,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceFilter", + "name": "AdditionalFundingSourceStatusFilter", "ofType": null }, "defaultValue": null @@ -63597,7 +61841,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `AdditionalFundingSource`.", + "description": "The method to use when ordering `AdditionalFundingSourceStatus`.", "type": { "kind": "LIST", "name": null, @@ -63606,7 +61850,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AdditionalFundingSourcesOrderBy", + "name": "AdditionalFundingSourceStatusesOrderBy", "ofType": null } } @@ -63619,7 +61863,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AdditionalFundingSourcesConnection", + "name": "AdditionalFundingSourceStatusesConnection", "ofType": null } }, @@ -63658,12 +61902,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceCreatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `AdditionalFundingSource`.", + "name": "CifUserCifUsersByAdditionalFundingSourceStatusCreatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `AdditionalFundingSourceStatus`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `AdditionalFundingSource`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `AdditionalFundingSourceStatus`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -63676,7 +61920,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByAdditionalFundingSourceStatusCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -63745,12 +61989,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceCreatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `AdditionalFundingSource`.", + "name": "CifUserCifUsersByAdditionalFundingSourceStatusCreatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `AdditionalFundingSourceStatus`.", "fields": [ { - "name": "additionalFundingSourcesByArchivedBy", - "description": "Reads and enables pagination through a set of `AdditionalFundingSource`.", + "name": "additionalFundingSourceStatusesByArchivedBy", + "description": "Reads and enables pagination through a set of `AdditionalFundingSourceStatus`.", "args": [ { "name": "after", @@ -63777,7 +62021,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceCondition", + "name": "AdditionalFundingSourceStatusCondition", "ofType": null }, "defaultValue": null @@ -63787,7 +62031,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceFilter", + "name": "AdditionalFundingSourceStatusFilter", "ofType": null }, "defaultValue": null @@ -63834,7 +62078,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `AdditionalFundingSource`.", + "description": "The method to use when ordering `AdditionalFundingSourceStatus`.", "type": { "kind": "LIST", "name": null, @@ -63843,7 +62087,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AdditionalFundingSourcesOrderBy", + "name": "AdditionalFundingSourceStatusesOrderBy", "ofType": null } } @@ -63856,7 +62100,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AdditionalFundingSourcesConnection", + "name": "AdditionalFundingSourceStatusesConnection", "ofType": null } }, @@ -63895,12 +62139,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceCreatedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `AdditionalFundingSource`.", + "name": "CifUserCifUsersByAdditionalFundingSourceStatusCreatedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `AdditionalFundingSourceStatus`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `AdditionalFundingSource`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `AdditionalFundingSourceStatus`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -63913,7 +62157,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByAdditionalFundingSourceStatusCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -63982,12 +62226,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceCreatedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `AdditionalFundingSource`.", + "name": "CifUserCifUsersByAdditionalFundingSourceStatusCreatedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `AdditionalFundingSourceStatus`.", "fields": [ { - "name": "additionalFundingSourcesByUpdatedBy", - "description": "Reads and enables pagination through a set of `AdditionalFundingSource`.", + "name": "additionalFundingSourceStatusesByUpdatedBy", + "description": "Reads and enables pagination through a set of `AdditionalFundingSourceStatus`.", "args": [ { "name": "after", @@ -64014,7 +62258,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceCondition", + "name": "AdditionalFundingSourceStatusCondition", "ofType": null }, "defaultValue": null @@ -64024,7 +62268,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceFilter", + "name": "AdditionalFundingSourceStatusFilter", "ofType": null }, "defaultValue": null @@ -64071,7 +62315,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `AdditionalFundingSource`.", + "description": "The method to use when ordering `AdditionalFundingSourceStatus`.", "type": { "kind": "LIST", "name": null, @@ -64080,7 +62324,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AdditionalFundingSourcesOrderBy", + "name": "AdditionalFundingSourceStatusesOrderBy", "ofType": null } } @@ -64093,7 +62337,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AdditionalFundingSourcesConnection", + "name": "AdditionalFundingSourceStatusesConnection", "ofType": null } }, @@ -64132,7 +62376,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceStatusArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByAdditionalFundingSourceStatusUpdatedByAndArchivedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `AdditionalFundingSourceStatus`.", "fields": [ { @@ -64150,7 +62394,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceStatusArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByAdditionalFundingSourceStatusUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -64219,11 +62463,11 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceStatusArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByAdditionalFundingSourceStatusUpdatedByAndArchivedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `AdditionalFundingSourceStatus`.", "fields": [ { - "name": "additionalFundingSourceStatusesByCreatedBy", + "name": "additionalFundingSourceStatusesByArchivedBy", "description": "Reads and enables pagination through a set of `AdditionalFundingSourceStatus`.", "args": [ { @@ -64369,7 +62613,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceStatusArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByAdditionalFundingSourceStatusUpdatedByAndCreatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `AdditionalFundingSourceStatus`.", "fields": [ { @@ -64387,7 +62631,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceStatusArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByAdditionalFundingSourceStatusUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -64456,11 +62700,11 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceStatusArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByAdditionalFundingSourceStatusUpdatedByAndCreatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `AdditionalFundingSourceStatus`.", "fields": [ { - "name": "additionalFundingSourceStatusesByUpdatedBy", + "name": "additionalFundingSourceStatusesByCreatedBy", "description": "Reads and enables pagination through a set of `AdditionalFundingSourceStatus`.", "args": [ { @@ -64606,12 +62850,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceStatusCreatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `AdditionalFundingSourceStatus`.", + "name": "CifUserCifUsersByAdditionalFundingSourceUpdatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `AdditionalFundingSource`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `AdditionalFundingSourceStatus`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `AdditionalFundingSource`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -64624,7 +62868,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceStatusCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByAdditionalFundingSourceUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -64693,12 +62937,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceStatusCreatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `AdditionalFundingSourceStatus`.", + "name": "CifUserCifUsersByAdditionalFundingSourceUpdatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `AdditionalFundingSource`.", "fields": [ { - "name": "additionalFundingSourceStatusesByArchivedBy", - "description": "Reads and enables pagination through a set of `AdditionalFundingSourceStatus`.", + "name": "additionalFundingSourcesByArchivedBy", + "description": "Reads and enables pagination through a set of `AdditionalFundingSource`.", "args": [ { "name": "after", @@ -64725,7 +62969,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceStatusCondition", + "name": "AdditionalFundingSourceCondition", "ofType": null }, "defaultValue": null @@ -64735,7 +62979,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceStatusFilter", + "name": "AdditionalFundingSourceFilter", "ofType": null }, "defaultValue": null @@ -64782,7 +63026,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `AdditionalFundingSourceStatus`.", + "description": "The method to use when ordering `AdditionalFundingSource`.", "type": { "kind": "LIST", "name": null, @@ -64791,7 +63035,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AdditionalFundingSourceStatusesOrderBy", + "name": "AdditionalFundingSourcesOrderBy", "ofType": null } } @@ -64804,7 +63048,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AdditionalFundingSourceStatusesConnection", + "name": "AdditionalFundingSourcesConnection", "ofType": null } }, @@ -64843,12 +63087,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceStatusCreatedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `AdditionalFundingSourceStatus`.", + "name": "CifUserCifUsersByAdditionalFundingSourceUpdatedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `AdditionalFundingSource`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `AdditionalFundingSourceStatus`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `AdditionalFundingSource`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -64861,7 +63105,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceStatusCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByAdditionalFundingSourceUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -64930,12 +63174,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceStatusCreatedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `AdditionalFundingSourceStatus`.", + "name": "CifUserCifUsersByAdditionalFundingSourceUpdatedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `AdditionalFundingSource`.", "fields": [ { - "name": "additionalFundingSourceStatusesByUpdatedBy", - "description": "Reads and enables pagination through a set of `AdditionalFundingSourceStatus`.", + "name": "additionalFundingSourcesByCreatedBy", + "description": "Reads and enables pagination through a set of `AdditionalFundingSource`.", "args": [ { "name": "after", @@ -64962,7 +63206,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceStatusCondition", + "name": "AdditionalFundingSourceCondition", "ofType": null }, "defaultValue": null @@ -64972,7 +63216,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceStatusFilter", + "name": "AdditionalFundingSourceFilter", "ofType": null }, "defaultValue": null @@ -65019,7 +63263,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `AdditionalFundingSourceStatus`.", + "description": "The method to use when ordering `AdditionalFundingSource`.", "type": { "kind": "LIST", "name": null, @@ -65028,7 +63272,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AdditionalFundingSourceStatusesOrderBy", + "name": "AdditionalFundingSourcesOrderBy", "ofType": null } } @@ -65041,7 +63285,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AdditionalFundingSourceStatusesConnection", + "name": "AdditionalFundingSourcesConnection", "ofType": null } }, @@ -65080,12 +63324,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceStatusUpdatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `AdditionalFundingSourceStatus`.", + "name": "CifUserCifUsersByAmendmentTypeArchivedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `AmendmentType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `AdditionalFundingSourceStatus`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `AmendmentType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -65098,7 +63342,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceStatusUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByAmendmentTypeArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -65167,12 +63411,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceStatusUpdatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `AdditionalFundingSourceStatus`.", + "name": "CifUserCifUsersByAmendmentTypeArchivedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `AmendmentType`.", "fields": [ { - "name": "additionalFundingSourceStatusesByArchivedBy", - "description": "Reads and enables pagination through a set of `AdditionalFundingSourceStatus`.", + "name": "amendmentTypesByCreatedBy", + "description": "Reads and enables pagination through a set of `AmendmentType`.", "args": [ { "name": "after", @@ -65199,7 +63443,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceStatusCondition", + "name": "AmendmentTypeCondition", "ofType": null }, "defaultValue": null @@ -65209,7 +63453,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceStatusFilter", + "name": "AmendmentTypeFilter", "ofType": null }, "defaultValue": null @@ -65256,7 +63500,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `AdditionalFundingSourceStatus`.", + "description": "The method to use when ordering `AmendmentType`.", "type": { "kind": "LIST", "name": null, @@ -65265,7 +63509,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AdditionalFundingSourceStatusesOrderBy", + "name": "AmendmentTypesOrderBy", "ofType": null } } @@ -65278,7 +63522,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AdditionalFundingSourceStatusesConnection", + "name": "AmendmentTypesConnection", "ofType": null } }, @@ -65317,12 +63561,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceStatusUpdatedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `AdditionalFundingSourceStatus`.", + "name": "CifUserCifUsersByAmendmentTypeArchivedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `AmendmentType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `AdditionalFundingSourceStatus`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `AmendmentType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -65335,7 +63579,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceStatusUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByAmendmentTypeArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -65404,12 +63648,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceStatusUpdatedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `AdditionalFundingSourceStatus`.", + "name": "CifUserCifUsersByAmendmentTypeArchivedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `AmendmentType`.", "fields": [ { - "name": "additionalFundingSourceStatusesByCreatedBy", - "description": "Reads and enables pagination through a set of `AdditionalFundingSourceStatus`.", + "name": "amendmentTypesByUpdatedBy", + "description": "Reads and enables pagination through a set of `AmendmentType`.", "args": [ { "name": "after", @@ -65436,7 +63680,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceStatusCondition", + "name": "AmendmentTypeCondition", "ofType": null }, "defaultValue": null @@ -65446,7 +63690,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceStatusFilter", + "name": "AmendmentTypeFilter", "ofType": null }, "defaultValue": null @@ -65493,7 +63737,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `AdditionalFundingSourceStatus`.", + "description": "The method to use when ordering `AmendmentType`.", "type": { "kind": "LIST", "name": null, @@ -65502,7 +63746,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AdditionalFundingSourceStatusesOrderBy", + "name": "AmendmentTypesOrderBy", "ofType": null } } @@ -65515,7 +63759,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AdditionalFundingSourceStatusesConnection", + "name": "AmendmentTypesConnection", "ofType": null } }, @@ -65554,12 +63798,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceUpdatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `AdditionalFundingSource`.", + "name": "CifUserCifUsersByAmendmentTypeCreatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `AmendmentType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `AdditionalFundingSource`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `AmendmentType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -65572,7 +63816,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByAmendmentTypeCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -65641,12 +63885,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceUpdatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `AdditionalFundingSource`.", + "name": "CifUserCifUsersByAmendmentTypeCreatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `AmendmentType`.", "fields": [ { - "name": "additionalFundingSourcesByArchivedBy", - "description": "Reads and enables pagination through a set of `AdditionalFundingSource`.", + "name": "amendmentTypesByArchivedBy", + "description": "Reads and enables pagination through a set of `AmendmentType`.", "args": [ { "name": "after", @@ -65673,7 +63917,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceCondition", + "name": "AmendmentTypeCondition", "ofType": null }, "defaultValue": null @@ -65683,7 +63927,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceFilter", + "name": "AmendmentTypeFilter", "ofType": null }, "defaultValue": null @@ -65730,7 +63974,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `AdditionalFundingSource`.", + "description": "The method to use when ordering `AmendmentType`.", "type": { "kind": "LIST", "name": null, @@ -65739,7 +63983,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AdditionalFundingSourcesOrderBy", + "name": "AmendmentTypesOrderBy", "ofType": null } } @@ -65752,7 +63996,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AdditionalFundingSourcesConnection", + "name": "AmendmentTypesConnection", "ofType": null } }, @@ -65791,12 +64035,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceUpdatedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `AdditionalFundingSource`.", + "name": "CifUserCifUsersByAmendmentTypeCreatedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `AmendmentType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `AdditionalFundingSource`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `AmendmentType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -65809,7 +64053,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByAmendmentTypeCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -65878,12 +64122,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceUpdatedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `AdditionalFundingSource`.", + "name": "CifUserCifUsersByAmendmentTypeCreatedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `AmendmentType`.", "fields": [ { - "name": "additionalFundingSourcesByCreatedBy", - "description": "Reads and enables pagination through a set of `AdditionalFundingSource`.", + "name": "amendmentTypesByUpdatedBy", + "description": "Reads and enables pagination through a set of `AmendmentType`.", "args": [ { "name": "after", @@ -65910,7 +64154,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceCondition", + "name": "AmendmentTypeCondition", "ofType": null }, "defaultValue": null @@ -65920,7 +64164,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceFilter", + "name": "AmendmentTypeFilter", "ofType": null }, "defaultValue": null @@ -65967,7 +64211,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `AdditionalFundingSource`.", + "description": "The method to use when ordering `AmendmentType`.", "type": { "kind": "LIST", "name": null, @@ -65976,7 +64220,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AdditionalFundingSourcesOrderBy", + "name": "AmendmentTypesOrderBy", "ofType": null } } @@ -65989,7 +64233,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AdditionalFundingSourcesConnection", + "name": "AmendmentTypesConnection", "ofType": null } }, @@ -66028,7 +64272,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAmendmentTypeArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByAmendmentTypeUpdatedByAndArchivedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `AmendmentType`.", "fields": [ { @@ -66046,7 +64290,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAmendmentTypeArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByAmendmentTypeUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -66115,11 +64359,11 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAmendmentTypeArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByAmendmentTypeUpdatedByAndArchivedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `AmendmentType`.", "fields": [ { - "name": "amendmentTypesByCreatedBy", + "name": "amendmentTypesByArchivedBy", "description": "Reads and enables pagination through a set of `AmendmentType`.", "args": [ { @@ -66265,7 +64509,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAmendmentTypeArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByAmendmentTypeUpdatedByAndCreatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `AmendmentType`.", "fields": [ { @@ -66283,7 +64527,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAmendmentTypeArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByAmendmentTypeUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -66352,11 +64596,11 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAmendmentTypeArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByAmendmentTypeUpdatedByAndCreatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `AmendmentType`.", "fields": [ { - "name": "amendmentTypesByUpdatedBy", + "name": "amendmentTypesByCreatedBy", "description": "Reads and enables pagination through a set of `AmendmentType`.", "args": [ { @@ -66502,12 +64746,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAmendmentTypeCreatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `AmendmentType`.", + "name": "CifUserCifUsersByAttachmentArchivedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Attachment`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `AmendmentType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `Attachment`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -66520,7 +64764,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAmendmentTypeCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByAttachmentArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -66589,12 +64833,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAmendmentTypeCreatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `AmendmentType`.", + "name": "CifUserCifUsersByAttachmentArchivedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `Attachment`.", "fields": [ { - "name": "amendmentTypesByArchivedBy", - "description": "Reads and enables pagination through a set of `AmendmentType`.", + "name": "attachmentsByCreatedBy", + "description": "Reads and enables pagination through a set of `Attachment`.", "args": [ { "name": "after", @@ -66621,7 +64865,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AmendmentTypeCondition", + "name": "AttachmentCondition", "ofType": null }, "defaultValue": null @@ -66631,7 +64875,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AmendmentTypeFilter", + "name": "AttachmentFilter", "ofType": null }, "defaultValue": null @@ -66678,7 +64922,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `AmendmentType`.", + "description": "The method to use when ordering `Attachment`.", "type": { "kind": "LIST", "name": null, @@ -66687,7 +64931,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AmendmentTypesOrderBy", + "name": "AttachmentsOrderBy", "ofType": null } } @@ -66700,7 +64944,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AmendmentTypesConnection", + "name": "AttachmentsConnection", "ofType": null } }, @@ -66739,12 +64983,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAmendmentTypeCreatedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `AmendmentType`.", + "name": "CifUserCifUsersByAttachmentArchivedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Attachment`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `AmendmentType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `Attachment`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -66757,7 +65001,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAmendmentTypeCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByAttachmentArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -66826,12 +65070,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAmendmentTypeCreatedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `AmendmentType`.", + "name": "CifUserCifUsersByAttachmentArchivedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `Attachment`.", "fields": [ { - "name": "amendmentTypesByUpdatedBy", - "description": "Reads and enables pagination through a set of `AmendmentType`.", + "name": "attachmentsByUpdatedBy", + "description": "Reads and enables pagination through a set of `Attachment`.", "args": [ { "name": "after", @@ -66858,7 +65102,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AmendmentTypeCondition", + "name": "AttachmentCondition", "ofType": null }, "defaultValue": null @@ -66868,7 +65112,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AmendmentTypeFilter", + "name": "AttachmentFilter", "ofType": null }, "defaultValue": null @@ -66915,7 +65159,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `AmendmentType`.", + "description": "The method to use when ordering `Attachment`.", "type": { "kind": "LIST", "name": null, @@ -66924,7 +65168,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AmendmentTypesOrderBy", + "name": "AttachmentsOrderBy", "ofType": null } } @@ -66937,7 +65181,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AmendmentTypesConnection", + "name": "AttachmentsConnection", "ofType": null } }, @@ -66976,12 +65220,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAmendmentTypeUpdatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `AmendmentType`.", + "name": "CifUserCifUsersByAttachmentCreatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Attachment`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `AmendmentType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `Attachment`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -66994,7 +65238,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAmendmentTypeUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByAttachmentCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -67063,12 +65307,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAmendmentTypeUpdatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `AmendmentType`.", + "name": "CifUserCifUsersByAttachmentCreatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `Attachment`.", "fields": [ { - "name": "amendmentTypesByArchivedBy", - "description": "Reads and enables pagination through a set of `AmendmentType`.", + "name": "attachmentsByArchivedBy", + "description": "Reads and enables pagination through a set of `Attachment`.", "args": [ { "name": "after", @@ -67095,7 +65339,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AmendmentTypeCondition", + "name": "AttachmentCondition", "ofType": null }, "defaultValue": null @@ -67105,7 +65349,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AmendmentTypeFilter", + "name": "AttachmentFilter", "ofType": null }, "defaultValue": null @@ -67152,7 +65396,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `AmendmentType`.", + "description": "The method to use when ordering `Attachment`.", "type": { "kind": "LIST", "name": null, @@ -67161,7 +65405,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AmendmentTypesOrderBy", + "name": "AttachmentsOrderBy", "ofType": null } } @@ -67174,7 +65418,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AmendmentTypesConnection", + "name": "AttachmentsConnection", "ofType": null } }, @@ -67213,12 +65457,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAmendmentTypeUpdatedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `AmendmentType`.", + "name": "CifUserCifUsersByAttachmentCreatedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Attachment`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `AmendmentType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `Attachment`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -67231,7 +65475,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAmendmentTypeUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByAttachmentCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -67300,12 +65544,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAmendmentTypeUpdatedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `AmendmentType`.", + "name": "CifUserCifUsersByAttachmentCreatedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `Attachment`.", "fields": [ { - "name": "amendmentTypesByCreatedBy", - "description": "Reads and enables pagination through a set of `AmendmentType`.", + "name": "attachmentsByUpdatedBy", + "description": "Reads and enables pagination through a set of `Attachment`.", "args": [ { "name": "after", @@ -67332,7 +65576,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AmendmentTypeCondition", + "name": "AttachmentCondition", "ofType": null }, "defaultValue": null @@ -67342,7 +65586,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AmendmentTypeFilter", + "name": "AttachmentFilter", "ofType": null }, "defaultValue": null @@ -67389,7 +65633,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `AmendmentType`.", + "description": "The method to use when ordering `Attachment`.", "type": { "kind": "LIST", "name": null, @@ -67398,7 +65642,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AmendmentTypesOrderBy", + "name": "AttachmentsOrderBy", "ofType": null } } @@ -67411,7 +65655,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AmendmentTypesConnection", + "name": "AttachmentsConnection", "ofType": null } }, @@ -67450,7 +65694,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAttachmentArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByAttachmentUpdatedByAndArchivedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `Attachment`.", "fields": [ { @@ -67468,7 +65712,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAttachmentArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByAttachmentUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -67537,11 +65781,11 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAttachmentArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByAttachmentUpdatedByAndArchivedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `Attachment`.", "fields": [ { - "name": "attachmentsByCreatedBy", + "name": "attachmentsByArchivedBy", "description": "Reads and enables pagination through a set of `Attachment`.", "args": [ { @@ -67687,7 +65931,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAttachmentArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByAttachmentUpdatedByAndCreatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `Attachment`.", "fields": [ { @@ -67705,7 +65949,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAttachmentArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByAttachmentUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -67774,11 +66018,11 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAttachmentArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByAttachmentUpdatedByAndCreatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `Attachment`.", "fields": [ { - "name": "attachmentsByUpdatedBy", + "name": "attachmentsByCreatedBy", "description": "Reads and enables pagination through a set of `Attachment`.", "args": [ { @@ -67924,12 +66168,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAttachmentCreatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Attachment`.", + "name": "CifUserCifUsersByChangeStatusArchivedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ChangeStatus`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Attachment`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ChangeStatus`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -67942,7 +66186,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAttachmentCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByChangeStatusArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -68011,12 +66255,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAttachmentCreatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `Attachment`.", + "name": "CifUserCifUsersByChangeStatusArchivedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ChangeStatus`.", "fields": [ { - "name": "attachmentsByArchivedBy", - "description": "Reads and enables pagination through a set of `Attachment`.", + "name": "changeStatusesByCreatedBy", + "description": "Reads and enables pagination through a set of `ChangeStatus`.", "args": [ { "name": "after", @@ -68043,7 +66287,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AttachmentCondition", + "name": "ChangeStatusCondition", "ofType": null }, "defaultValue": null @@ -68053,7 +66297,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AttachmentFilter", + "name": "ChangeStatusFilter", "ofType": null }, "defaultValue": null @@ -68100,7 +66344,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Attachment`.", + "description": "The method to use when ordering `ChangeStatus`.", "type": { "kind": "LIST", "name": null, @@ -68109,7 +66353,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AttachmentsOrderBy", + "name": "ChangeStatusesOrderBy", "ofType": null } } @@ -68122,7 +66366,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AttachmentsConnection", + "name": "ChangeStatusesConnection", "ofType": null } }, @@ -68161,12 +66405,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAttachmentCreatedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Attachment`.", + "name": "CifUserCifUsersByChangeStatusArchivedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ChangeStatus`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Attachment`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ChangeStatus`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -68179,7 +66423,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAttachmentCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByChangeStatusArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -68248,12 +66492,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAttachmentCreatedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `Attachment`.", + "name": "CifUserCifUsersByChangeStatusArchivedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ChangeStatus`.", "fields": [ { - "name": "attachmentsByUpdatedBy", - "description": "Reads and enables pagination through a set of `Attachment`.", + "name": "changeStatusesByUpdatedBy", + "description": "Reads and enables pagination through a set of `ChangeStatus`.", "args": [ { "name": "after", @@ -68280,7 +66524,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AttachmentCondition", + "name": "ChangeStatusCondition", "ofType": null }, "defaultValue": null @@ -68290,7 +66534,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AttachmentFilter", + "name": "ChangeStatusFilter", "ofType": null }, "defaultValue": null @@ -68337,7 +66581,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Attachment`.", + "description": "The method to use when ordering `ChangeStatus`.", "type": { "kind": "LIST", "name": null, @@ -68346,7 +66590,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AttachmentsOrderBy", + "name": "ChangeStatusesOrderBy", "ofType": null } } @@ -68359,7 +66603,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AttachmentsConnection", + "name": "ChangeStatusesConnection", "ofType": null } }, @@ -68398,12 +66642,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAttachmentUpdatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Attachment`.", + "name": "CifUserCifUsersByChangeStatusCreatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ChangeStatus`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Attachment`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ChangeStatus`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -68416,7 +66660,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAttachmentUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByChangeStatusCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -68485,12 +66729,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAttachmentUpdatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `Attachment`.", + "name": "CifUserCifUsersByChangeStatusCreatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ChangeStatus`.", "fields": [ { - "name": "attachmentsByArchivedBy", - "description": "Reads and enables pagination through a set of `Attachment`.", + "name": "changeStatusesByArchivedBy", + "description": "Reads and enables pagination through a set of `ChangeStatus`.", "args": [ { "name": "after", @@ -68517,7 +66761,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AttachmentCondition", + "name": "ChangeStatusCondition", "ofType": null }, "defaultValue": null @@ -68527,7 +66771,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AttachmentFilter", + "name": "ChangeStatusFilter", "ofType": null }, "defaultValue": null @@ -68574,7 +66818,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Attachment`.", + "description": "The method to use when ordering `ChangeStatus`.", "type": { "kind": "LIST", "name": null, @@ -68583,7 +66827,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AttachmentsOrderBy", + "name": "ChangeStatusesOrderBy", "ofType": null } } @@ -68596,7 +66840,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AttachmentsConnection", + "name": "ChangeStatusesConnection", "ofType": null } }, @@ -68635,12 +66879,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAttachmentUpdatedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Attachment`.", + "name": "CifUserCifUsersByChangeStatusCreatedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ChangeStatus`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Attachment`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ChangeStatus`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -68653,7 +66897,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAttachmentUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByChangeStatusCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -68722,12 +66966,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAttachmentUpdatedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `Attachment`.", + "name": "CifUserCifUsersByChangeStatusCreatedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ChangeStatus`.", "fields": [ { - "name": "attachmentsByCreatedBy", - "description": "Reads and enables pagination through a set of `Attachment`.", + "name": "changeStatusesByUpdatedBy", + "description": "Reads and enables pagination through a set of `ChangeStatus`.", "args": [ { "name": "after", @@ -68754,7 +66998,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AttachmentCondition", + "name": "ChangeStatusCondition", "ofType": null }, "defaultValue": null @@ -68764,7 +67008,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AttachmentFilter", + "name": "ChangeStatusFilter", "ofType": null }, "defaultValue": null @@ -68811,7 +67055,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Attachment`.", + "description": "The method to use when ordering `ChangeStatus`.", "type": { "kind": "LIST", "name": null, @@ -68820,7 +67064,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AttachmentsOrderBy", + "name": "ChangeStatusesOrderBy", "ofType": null } } @@ -68833,7 +67077,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AttachmentsConnection", + "name": "ChangeStatusesConnection", "ofType": null } }, @@ -68872,7 +67116,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByChangeStatusArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByChangeStatusUpdatedByAndArchivedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `ChangeStatus`.", "fields": [ { @@ -68890,7 +67134,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByChangeStatusArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByChangeStatusUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -68959,11 +67203,11 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByChangeStatusArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByChangeStatusUpdatedByAndArchivedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `ChangeStatus`.", "fields": [ { - "name": "changeStatusesByCreatedBy", + "name": "changeStatusesByArchivedBy", "description": "Reads and enables pagination through a set of `ChangeStatus`.", "args": [ { @@ -69109,7 +67353,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByChangeStatusArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByChangeStatusUpdatedByAndCreatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `ChangeStatus`.", "fields": [ { @@ -69127,7 +67371,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByChangeStatusArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByChangeStatusUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -69196,11 +67440,11 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByChangeStatusArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByChangeStatusUpdatedByAndCreatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `ChangeStatus`.", "fields": [ { - "name": "changeStatusesByUpdatedBy", + "name": "changeStatusesByCreatedBy", "description": "Reads and enables pagination through a set of `ChangeStatus`.", "args": [ { @@ -69346,12 +67590,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByChangeStatusCreatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ChangeStatus`.", + "name": "CifUserCifUsersByCifUserArchivedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `CifUser`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ChangeStatus`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `CifUser`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -69364,7 +67608,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByChangeStatusCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByCifUserArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -69433,12 +67677,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByChangeStatusCreatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ChangeStatus`.", + "name": "CifUserCifUsersByCifUserArchivedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `CifUser`.", "fields": [ { - "name": "changeStatusesByArchivedBy", - "description": "Reads and enables pagination through a set of `ChangeStatus`.", + "name": "cifUsersByCreatedBy", + "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { "name": "after", @@ -69465,7 +67709,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ChangeStatusCondition", + "name": "CifUserCondition", "ofType": null }, "defaultValue": null @@ -69475,7 +67719,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ChangeStatusFilter", + "name": "CifUserFilter", "ofType": null }, "defaultValue": null @@ -69522,7 +67766,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ChangeStatus`.", + "description": "The method to use when ordering `CifUser`.", "type": { "kind": "LIST", "name": null, @@ -69531,7 +67775,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ChangeStatusesOrderBy", + "name": "CifUsersOrderBy", "ofType": null } } @@ -69544,7 +67788,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ChangeStatusesConnection", + "name": "CifUsersConnection", "ofType": null } }, @@ -69583,12 +67827,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByChangeStatusCreatedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ChangeStatus`.", + "name": "CifUserCifUsersByCifUserArchivedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `CifUser`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ChangeStatus`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `CifUser`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -69601,7 +67845,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByChangeStatusCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByCifUserArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -69670,12 +67914,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByChangeStatusCreatedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ChangeStatus`.", + "name": "CifUserCifUsersByCifUserArchivedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `CifUser`.", "fields": [ { - "name": "changeStatusesByUpdatedBy", - "description": "Reads and enables pagination through a set of `ChangeStatus`.", + "name": "cifUsersByUpdatedBy", + "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { "name": "after", @@ -69702,7 +67946,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ChangeStatusCondition", + "name": "CifUserCondition", "ofType": null }, "defaultValue": null @@ -69712,7 +67956,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ChangeStatusFilter", + "name": "CifUserFilter", "ofType": null }, "defaultValue": null @@ -69759,7 +68003,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ChangeStatus`.", + "description": "The method to use when ordering `CifUser`.", "type": { "kind": "LIST", "name": null, @@ -69768,7 +68012,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ChangeStatusesOrderBy", + "name": "CifUsersOrderBy", "ofType": null } } @@ -69781,7 +68025,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ChangeStatusesConnection", + "name": "CifUsersConnection", "ofType": null } }, @@ -69820,12 +68064,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByChangeStatusUpdatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ChangeStatus`.", + "name": "CifUserCifUsersByCifUserCreatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `CifUser`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ChangeStatus`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `CifUser`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -69838,7 +68082,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByChangeStatusUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByCifUserCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -69907,12 +68151,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByChangeStatusUpdatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ChangeStatus`.", + "name": "CifUserCifUsersByCifUserCreatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `CifUser`.", "fields": [ { - "name": "changeStatusesByArchivedBy", - "description": "Reads and enables pagination through a set of `ChangeStatus`.", + "name": "cifUsersByArchivedBy", + "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { "name": "after", @@ -69939,7 +68183,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ChangeStatusCondition", + "name": "CifUserCondition", "ofType": null }, "defaultValue": null @@ -69949,7 +68193,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ChangeStatusFilter", + "name": "CifUserFilter", "ofType": null }, "defaultValue": null @@ -69996,7 +68240,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ChangeStatus`.", + "description": "The method to use when ordering `CifUser`.", "type": { "kind": "LIST", "name": null, @@ -70005,7 +68249,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ChangeStatusesOrderBy", + "name": "CifUsersOrderBy", "ofType": null } } @@ -70018,7 +68262,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ChangeStatusesConnection", + "name": "CifUsersConnection", "ofType": null } }, @@ -70057,12 +68301,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByChangeStatusUpdatedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ChangeStatus`.", + "name": "CifUserCifUsersByCifUserCreatedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `CifUser`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ChangeStatus`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `CifUser`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -70075,7 +68319,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByChangeStatusUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByCifUserCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -70144,12 +68388,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByChangeStatusUpdatedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ChangeStatus`.", + "name": "CifUserCifUsersByCifUserCreatedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `CifUser`.", "fields": [ { - "name": "changeStatusesByCreatedBy", - "description": "Reads and enables pagination through a set of `ChangeStatus`.", + "name": "cifUsersByUpdatedBy", + "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { "name": "after", @@ -70176,7 +68420,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ChangeStatusCondition", + "name": "CifUserCondition", "ofType": null }, "defaultValue": null @@ -70186,7 +68430,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ChangeStatusFilter", + "name": "CifUserFilter", "ofType": null }, "defaultValue": null @@ -70233,7 +68477,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ChangeStatus`.", + "description": "The method to use when ordering `CifUser`.", "type": { "kind": "LIST", "name": null, @@ -70242,7 +68486,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ChangeStatusesOrderBy", + "name": "CifUsersOrderBy", "ofType": null } } @@ -70255,7 +68499,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ChangeStatusesConnection", + "name": "CifUsersConnection", "ofType": null } }, @@ -70294,7 +68538,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByCifUserArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByCifUserUpdatedByAndArchivedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `CifUser`.", "fields": [ { @@ -70312,7 +68556,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByCifUserArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByCifUserUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -70381,11 +68625,11 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByCifUserArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByCifUserUpdatedByAndArchivedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `CifUser`.", "fields": [ { - "name": "cifUsersByCreatedBy", + "name": "cifUsersByArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -70531,7 +68775,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByCifUserArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByCifUserUpdatedByAndCreatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `CifUser`.", "fields": [ { @@ -70549,7 +68793,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByCifUserArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByCifUserUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -70618,11 +68862,11 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByCifUserArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByCifUserUpdatedByAndCreatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `CifUser`.", "fields": [ { - "name": "cifUsersByUpdatedBy", + "name": "cifUsersByCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -70768,12 +69012,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByCifUserCreatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `CifUser`.", + "name": "CifUserCifUsersByContactArchivedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Contact`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `CifUser`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `Contact`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -70786,7 +69030,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByCifUserCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByContactArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -70855,12 +69099,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByCifUserCreatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `CifUser`.", + "name": "CifUserCifUsersByContactArchivedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `Contact`.", "fields": [ { - "name": "cifUsersByArchivedBy", - "description": "Reads and enables pagination through a set of `CifUser`.", + "name": "contactsByCreatedBy", + "description": "Reads and enables pagination through a set of `Contact`.", "args": [ { "name": "after", @@ -70887,7 +69131,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserCondition", + "name": "ContactCondition", "ofType": null }, "defaultValue": null @@ -70897,7 +69141,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserFilter", + "name": "ContactFilter", "ofType": null }, "defaultValue": null @@ -70944,7 +69188,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `CifUser`.", + "description": "The method to use when ordering `Contact`.", "type": { "kind": "LIST", "name": null, @@ -70953,7 +69197,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "CifUsersOrderBy", + "name": "ContactsOrderBy", "ofType": null } } @@ -70966,7 +69210,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUsersConnection", + "name": "ContactsConnection", "ofType": null } }, @@ -71005,12 +69249,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByCifUserCreatedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `CifUser`.", + "name": "CifUserCifUsersByContactArchivedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Contact`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `CifUser`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `Contact`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -71023,7 +69267,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByCifUserCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByContactArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -71092,12 +69336,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByCifUserCreatedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `CifUser`.", + "name": "CifUserCifUsersByContactArchivedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `Contact`.", "fields": [ { - "name": "cifUsersByUpdatedBy", - "description": "Reads and enables pagination through a set of `CifUser`.", + "name": "contactsByUpdatedBy", + "description": "Reads and enables pagination through a set of `Contact`.", "args": [ { "name": "after", @@ -71124,7 +69368,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserCondition", + "name": "ContactCondition", "ofType": null }, "defaultValue": null @@ -71134,7 +69378,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserFilter", + "name": "ContactFilter", "ofType": null }, "defaultValue": null @@ -71181,7 +69425,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `CifUser`.", + "description": "The method to use when ordering `Contact`.", "type": { "kind": "LIST", "name": null, @@ -71190,7 +69434,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "CifUsersOrderBy", + "name": "ContactsOrderBy", "ofType": null } } @@ -71203,7 +69447,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUsersConnection", + "name": "ContactsConnection", "ofType": null } }, @@ -71242,12 +69486,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByCifUserUpdatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `CifUser`.", + "name": "CifUserCifUsersByContactCreatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Contact`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `CifUser`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `Contact`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -71260,7 +69504,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByCifUserUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByContactCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -71329,12 +69573,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByCifUserUpdatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `CifUser`.", + "name": "CifUserCifUsersByContactCreatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `Contact`.", "fields": [ { - "name": "cifUsersByArchivedBy", - "description": "Reads and enables pagination through a set of `CifUser`.", + "name": "contactsByArchivedBy", + "description": "Reads and enables pagination through a set of `Contact`.", "args": [ { "name": "after", @@ -71361,7 +69605,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserCondition", + "name": "ContactCondition", "ofType": null }, "defaultValue": null @@ -71371,7 +69615,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserFilter", + "name": "ContactFilter", "ofType": null }, "defaultValue": null @@ -71418,7 +69662,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `CifUser`.", + "description": "The method to use when ordering `Contact`.", "type": { "kind": "LIST", "name": null, @@ -71427,7 +69671,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "CifUsersOrderBy", + "name": "ContactsOrderBy", "ofType": null } } @@ -71440,7 +69684,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUsersConnection", + "name": "ContactsConnection", "ofType": null } }, @@ -71479,12 +69723,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByCifUserUpdatedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `CifUser`.", + "name": "CifUserCifUsersByContactCreatedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Contact`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `CifUser`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `Contact`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -71497,7 +69741,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByCifUserUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByContactCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -71566,12 +69810,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByCifUserUpdatedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `CifUser`.", + "name": "CifUserCifUsersByContactCreatedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `Contact`.", "fields": [ { - "name": "cifUsersByCreatedBy", - "description": "Reads and enables pagination through a set of `CifUser`.", + "name": "contactsByUpdatedBy", + "description": "Reads and enables pagination through a set of `Contact`.", "args": [ { "name": "after", @@ -71598,7 +69842,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserCondition", + "name": "ContactCondition", "ofType": null }, "defaultValue": null @@ -71608,7 +69852,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserFilter", + "name": "ContactFilter", "ofType": null }, "defaultValue": null @@ -71655,7 +69899,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `CifUser`.", + "description": "The method to use when ordering `Contact`.", "type": { "kind": "LIST", "name": null, @@ -71664,7 +69908,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "CifUsersOrderBy", + "name": "ContactsOrderBy", "ofType": null } } @@ -71677,7 +69921,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUsersConnection", + "name": "ContactsConnection", "ofType": null } }, @@ -71716,7 +69960,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByContactArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByContactUpdatedByAndArchivedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `Contact`.", "fields": [ { @@ -71734,7 +69978,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByContactArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByContactUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -71803,11 +70047,11 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByContactArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByContactUpdatedByAndArchivedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `Contact`.", "fields": [ { - "name": "contactsByCreatedBy", + "name": "contactsByArchivedBy", "description": "Reads and enables pagination through a set of `Contact`.", "args": [ { @@ -71953,7 +70197,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByContactArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByContactUpdatedByAndCreatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `Contact`.", "fields": [ { @@ -71971,7 +70215,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByContactArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByContactUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -72040,11 +70284,11 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByContactArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByContactUpdatedByAndCreatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `Contact`.", "fields": [ { - "name": "contactsByUpdatedBy", + "name": "contactsByCreatedBy", "description": "Reads and enables pagination through a set of `Contact`.", "args": [ { @@ -72190,12 +70434,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByContactCreatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Contact`.", + "name": "CifUserCifUsersByEmissionIntensityPaymentPercentArchivedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `EmissionIntensityPaymentPercent`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Contact`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `EmissionIntensityPaymentPercent`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -72208,7 +70452,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByContactCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByEmissionIntensityPaymentPercentArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -72277,12 +70521,24 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByContactCreatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `Contact`.", + "name": "CifUserCifUsersByEmissionIntensityPaymentPercentArchivedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `EmissionIntensityPaymentPercent`.", "fields": [ { - "name": "contactsByArchivedBy", - "description": "Reads and enables pagination through a set of `Contact`.", + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "emissionIntensityPaymentPercentsByCreatedBy", + "description": "Reads and enables pagination through a set of `EmissionIntensityPaymentPercent`.", "args": [ { "name": "after", @@ -72309,7 +70565,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ContactCondition", + "name": "EmissionIntensityPaymentPercentCondition", "ofType": null }, "defaultValue": null @@ -72319,7 +70575,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ContactFilter", + "name": "EmissionIntensityPaymentPercentFilter", "ofType": null }, "defaultValue": null @@ -72366,7 +70622,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Contact`.", + "description": "The method to use when ordering `EmissionIntensityPaymentPercent`.", "type": { "kind": "LIST", "name": null, @@ -72375,7 +70631,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ContactsOrderBy", + "name": "EmissionIntensityPaymentPercentsOrderBy", "ofType": null } } @@ -72388,25 +70644,13 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ContactsConnection", + "name": "EmissionIntensityPaymentPercentsConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "node", "description": "The `CifUser` at the end of the edge.", @@ -72427,12 +70671,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByContactCreatedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Contact`.", + "name": "CifUserCifUsersByEmissionIntensityPaymentPercentArchivedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `EmissionIntensityPaymentPercent`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Contact`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `EmissionIntensityPaymentPercent`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -72445,7 +70689,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByContactCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByEmissionIntensityPaymentPercentArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -72514,12 +70758,24 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByContactCreatedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `Contact`.", + "name": "CifUserCifUsersByEmissionIntensityPaymentPercentArchivedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `EmissionIntensityPaymentPercent`.", "fields": [ { - "name": "contactsByUpdatedBy", - "description": "Reads and enables pagination through a set of `Contact`.", + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "emissionIntensityPaymentPercentsByUpdatedBy", + "description": "Reads and enables pagination through a set of `EmissionIntensityPaymentPercent`.", "args": [ { "name": "after", @@ -72546,7 +70802,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ContactCondition", + "name": "EmissionIntensityPaymentPercentCondition", "ofType": null }, "defaultValue": null @@ -72556,7 +70812,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ContactFilter", + "name": "EmissionIntensityPaymentPercentFilter", "ofType": null }, "defaultValue": null @@ -72603,7 +70859,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Contact`.", + "description": "The method to use when ordering `EmissionIntensityPaymentPercent`.", "type": { "kind": "LIST", "name": null, @@ -72612,7 +70868,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ContactsOrderBy", + "name": "EmissionIntensityPaymentPercentsOrderBy", "ofType": null } } @@ -72625,25 +70881,13 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ContactsConnection", + "name": "EmissionIntensityPaymentPercentsConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "node", "description": "The `CifUser` at the end of the edge.", @@ -72664,12 +70908,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByContactUpdatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Contact`.", + "name": "CifUserCifUsersByEmissionIntensityPaymentPercentCreatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `EmissionIntensityPaymentPercent`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Contact`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `EmissionIntensityPaymentPercent`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -72682,7 +70926,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByContactUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByEmissionIntensityPaymentPercentCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -72751,12 +70995,24 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByContactUpdatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `Contact`.", + "name": "CifUserCifUsersByEmissionIntensityPaymentPercentCreatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `EmissionIntensityPaymentPercent`.", "fields": [ { - "name": "contactsByArchivedBy", - "description": "Reads and enables pagination through a set of `Contact`.", + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "emissionIntensityPaymentPercentsByArchivedBy", + "description": "Reads and enables pagination through a set of `EmissionIntensityPaymentPercent`.", "args": [ { "name": "after", @@ -72783,7 +71039,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ContactCondition", + "name": "EmissionIntensityPaymentPercentCondition", "ofType": null }, "defaultValue": null @@ -72793,7 +71049,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ContactFilter", + "name": "EmissionIntensityPaymentPercentFilter", "ofType": null }, "defaultValue": null @@ -72840,7 +71096,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Contact`.", + "description": "The method to use when ordering `EmissionIntensityPaymentPercent`.", "type": { "kind": "LIST", "name": null, @@ -72849,7 +71105,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ContactsOrderBy", + "name": "EmissionIntensityPaymentPercentsOrderBy", "ofType": null } } @@ -72862,25 +71118,13 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ContactsConnection", + "name": "EmissionIntensityPaymentPercentsConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "node", "description": "The `CifUser` at the end of the edge.", @@ -72901,12 +71145,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByContactUpdatedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Contact`.", + "name": "CifUserCifUsersByEmissionIntensityPaymentPercentCreatedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `EmissionIntensityPaymentPercent`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Contact`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `EmissionIntensityPaymentPercent`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -72919,7 +71163,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByContactUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByEmissionIntensityPaymentPercentCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -72988,12 +71232,24 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByContactUpdatedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `Contact`.", + "name": "CifUserCifUsersByEmissionIntensityPaymentPercentCreatedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `EmissionIntensityPaymentPercent`.", "fields": [ { - "name": "contactsByCreatedBy", - "description": "Reads and enables pagination through a set of `Contact`.", + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "emissionIntensityPaymentPercentsByUpdatedBy", + "description": "Reads and enables pagination through a set of `EmissionIntensityPaymentPercent`.", "args": [ { "name": "after", @@ -73020,7 +71276,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ContactCondition", + "name": "EmissionIntensityPaymentPercentCondition", "ofType": null }, "defaultValue": null @@ -73030,7 +71286,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ContactFilter", + "name": "EmissionIntensityPaymentPercentFilter", "ofType": null }, "defaultValue": null @@ -73077,7 +71333,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Contact`.", + "description": "The method to use when ordering `EmissionIntensityPaymentPercent`.", "type": { "kind": "LIST", "name": null, @@ -73086,7 +71342,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ContactsOrderBy", + "name": "EmissionIntensityPaymentPercentsOrderBy", "ofType": null } } @@ -73099,25 +71355,13 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ContactsConnection", + "name": "EmissionIntensityPaymentPercentsConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "node", "description": "The `CifUser` at the end of the edge.", @@ -73138,7 +71382,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityPaymentPercentArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByEmissionIntensityPaymentPercentUpdatedByAndArchivedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `EmissionIntensityPaymentPercent`.", "fields": [ { @@ -73156,7 +71400,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityPaymentPercentArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByEmissionIntensityPaymentPercentUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -73225,7 +71469,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityPaymentPercentArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByEmissionIntensityPaymentPercentUpdatedByAndArchivedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `EmissionIntensityPaymentPercent`.", "fields": [ { @@ -73241,7 +71485,7 @@ "deprecationReason": null }, { - "name": "emissionIntensityPaymentPercentsByCreatedBy", + "name": "emissionIntensityPaymentPercentsByArchivedBy", "description": "Reads and enables pagination through a set of `EmissionIntensityPaymentPercent`.", "args": [ { @@ -73375,7 +71619,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityPaymentPercentArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByEmissionIntensityPaymentPercentUpdatedByAndCreatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `EmissionIntensityPaymentPercent`.", "fields": [ { @@ -73393,7 +71637,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityPaymentPercentArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByEmissionIntensityPaymentPercentUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -73462,7 +71706,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityPaymentPercentArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByEmissionIntensityPaymentPercentUpdatedByAndCreatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `EmissionIntensityPaymentPercent`.", "fields": [ { @@ -73478,7 +71722,7 @@ "deprecationReason": null }, { - "name": "emissionIntensityPaymentPercentsByUpdatedBy", + "name": "emissionIntensityPaymentPercentsByCreatedBy", "description": "Reads and enables pagination through a set of `EmissionIntensityPaymentPercent`.", "args": [ { @@ -73612,12 +71856,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityPaymentPercentCreatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `EmissionIntensityPaymentPercent`.", + "name": "CifUserCifUsersByEmissionIntensityReportArchivedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `EmissionIntensityReport`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `EmissionIntensityPaymentPercent`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `EmissionIntensityReport`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -73630,7 +71874,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityPaymentPercentCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByEmissionIntensityReportArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -73699,8 +71943,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityPaymentPercentCreatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `EmissionIntensityPaymentPercent`.", + "name": "CifUserCifUsersByEmissionIntensityReportArchivedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `EmissionIntensityReport`.", "fields": [ { "name": "cursor", @@ -73715,8 +71959,8 @@ "deprecationReason": null }, { - "name": "emissionIntensityPaymentPercentsByArchivedBy", - "description": "Reads and enables pagination through a set of `EmissionIntensityPaymentPercent`.", + "name": "emissionIntensityReportsByCreatedBy", + "description": "Reads and enables pagination through a set of `EmissionIntensityReport`.", "args": [ { "name": "after", @@ -73743,7 +71987,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityPaymentPercentCondition", + "name": "EmissionIntensityReportCondition", "ofType": null }, "defaultValue": null @@ -73753,7 +71997,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityPaymentPercentFilter", + "name": "EmissionIntensityReportFilter", "ofType": null }, "defaultValue": null @@ -73800,7 +72044,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `EmissionIntensityPaymentPercent`.", + "description": "The method to use when ordering `EmissionIntensityReport`.", "type": { "kind": "LIST", "name": null, @@ -73809,7 +72053,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "EmissionIntensityPaymentPercentsOrderBy", + "name": "EmissionIntensityReportsOrderBy", "ofType": null } } @@ -73822,7 +72066,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "EmissionIntensityPaymentPercentsConnection", + "name": "EmissionIntensityReportsConnection", "ofType": null } }, @@ -73849,12 +72093,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityPaymentPercentCreatedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `EmissionIntensityPaymentPercent`.", + "name": "CifUserCifUsersByEmissionIntensityReportArchivedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `EmissionIntensityReport`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `EmissionIntensityPaymentPercent`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `EmissionIntensityReport`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -73867,7 +72111,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityPaymentPercentCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByEmissionIntensityReportArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -73936,8 +72180,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityPaymentPercentCreatedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `EmissionIntensityPaymentPercent`.", + "name": "CifUserCifUsersByEmissionIntensityReportArchivedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `EmissionIntensityReport`.", "fields": [ { "name": "cursor", @@ -73952,8 +72196,8 @@ "deprecationReason": null }, { - "name": "emissionIntensityPaymentPercentsByUpdatedBy", - "description": "Reads and enables pagination through a set of `EmissionIntensityPaymentPercent`.", + "name": "emissionIntensityReportsByUpdatedBy", + "description": "Reads and enables pagination through a set of `EmissionIntensityReport`.", "args": [ { "name": "after", @@ -73980,7 +72224,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityPaymentPercentCondition", + "name": "EmissionIntensityReportCondition", "ofType": null }, "defaultValue": null @@ -73990,7 +72234,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityPaymentPercentFilter", + "name": "EmissionIntensityReportFilter", "ofType": null }, "defaultValue": null @@ -74037,7 +72281,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `EmissionIntensityPaymentPercent`.", + "description": "The method to use when ordering `EmissionIntensityReport`.", "type": { "kind": "LIST", "name": null, @@ -74046,7 +72290,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "EmissionIntensityPaymentPercentsOrderBy", + "name": "EmissionIntensityReportsOrderBy", "ofType": null } } @@ -74059,7 +72303,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "EmissionIntensityPaymentPercentsConnection", + "name": "EmissionIntensityReportsConnection", "ofType": null } }, @@ -74086,12 +72330,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityPaymentPercentUpdatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `EmissionIntensityPaymentPercent`.", + "name": "CifUserCifUsersByEmissionIntensityReportCreatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `EmissionIntensityReport`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `EmissionIntensityPaymentPercent`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `EmissionIntensityReport`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -74104,7 +72348,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityPaymentPercentUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByEmissionIntensityReportCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -74173,8 +72417,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityPaymentPercentUpdatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `EmissionIntensityPaymentPercent`.", + "name": "CifUserCifUsersByEmissionIntensityReportCreatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `EmissionIntensityReport`.", "fields": [ { "name": "cursor", @@ -74189,8 +72433,8 @@ "deprecationReason": null }, { - "name": "emissionIntensityPaymentPercentsByArchivedBy", - "description": "Reads and enables pagination through a set of `EmissionIntensityPaymentPercent`.", + "name": "emissionIntensityReportsByArchivedBy", + "description": "Reads and enables pagination through a set of `EmissionIntensityReport`.", "args": [ { "name": "after", @@ -74217,7 +72461,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityPaymentPercentCondition", + "name": "EmissionIntensityReportCondition", "ofType": null }, "defaultValue": null @@ -74227,7 +72471,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityPaymentPercentFilter", + "name": "EmissionIntensityReportFilter", "ofType": null }, "defaultValue": null @@ -74274,7 +72518,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `EmissionIntensityPaymentPercent`.", + "description": "The method to use when ordering `EmissionIntensityReport`.", "type": { "kind": "LIST", "name": null, @@ -74283,7 +72527,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "EmissionIntensityPaymentPercentsOrderBy", + "name": "EmissionIntensityReportsOrderBy", "ofType": null } } @@ -74296,7 +72540,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "EmissionIntensityPaymentPercentsConnection", + "name": "EmissionIntensityReportsConnection", "ofType": null } }, @@ -74323,12 +72567,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityPaymentPercentUpdatedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `EmissionIntensityPaymentPercent`.", + "name": "CifUserCifUsersByEmissionIntensityReportCreatedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `EmissionIntensityReport`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `EmissionIntensityPaymentPercent`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `EmissionIntensityReport`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -74341,7 +72585,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityPaymentPercentUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByEmissionIntensityReportCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -74410,8 +72654,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityPaymentPercentUpdatedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `EmissionIntensityPaymentPercent`.", + "name": "CifUserCifUsersByEmissionIntensityReportCreatedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `EmissionIntensityReport`.", "fields": [ { "name": "cursor", @@ -74426,8 +72670,8 @@ "deprecationReason": null }, { - "name": "emissionIntensityPaymentPercentsByCreatedBy", - "description": "Reads and enables pagination through a set of `EmissionIntensityPaymentPercent`.", + "name": "emissionIntensityReportsByUpdatedBy", + "description": "Reads and enables pagination through a set of `EmissionIntensityReport`.", "args": [ { "name": "after", @@ -74454,7 +72698,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityPaymentPercentCondition", + "name": "EmissionIntensityReportCondition", "ofType": null }, "defaultValue": null @@ -74464,7 +72708,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityPaymentPercentFilter", + "name": "EmissionIntensityReportFilter", "ofType": null }, "defaultValue": null @@ -74511,7 +72755,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `EmissionIntensityPaymentPercent`.", + "description": "The method to use when ordering `EmissionIntensityReport`.", "type": { "kind": "LIST", "name": null, @@ -74520,7 +72764,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "EmissionIntensityPaymentPercentsOrderBy", + "name": "EmissionIntensityReportsOrderBy", "ofType": null } } @@ -74533,7 +72777,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "EmissionIntensityPaymentPercentsConnection", + "name": "EmissionIntensityReportsConnection", "ofType": null } }, @@ -74560,7 +72804,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityReportArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByEmissionIntensityReportUpdatedByAndArchivedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `EmissionIntensityReport`.", "fields": [ { @@ -74578,7 +72822,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityReportArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByEmissionIntensityReportUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -74647,7 +72891,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityReportArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByEmissionIntensityReportUpdatedByAndArchivedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `EmissionIntensityReport`.", "fields": [ { @@ -74663,7 +72907,7 @@ "deprecationReason": null }, { - "name": "emissionIntensityReportsByCreatedBy", + "name": "emissionIntensityReportsByArchivedBy", "description": "Reads and enables pagination through a set of `EmissionIntensityReport`.", "args": [ { @@ -74797,7 +73041,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityReportArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByEmissionIntensityReportUpdatedByAndCreatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `EmissionIntensityReport`.", "fields": [ { @@ -74815,7 +73059,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityReportArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByEmissionIntensityReportUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -74884,7 +73128,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityReportArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByEmissionIntensityReportUpdatedByAndCreatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `EmissionIntensityReport`.", "fields": [ { @@ -74900,7 +73144,7 @@ "deprecationReason": null }, { - "name": "emissionIntensityReportsByUpdatedBy", + "name": "emissionIntensityReportsByCreatedBy", "description": "Reads and enables pagination through a set of `EmissionIntensityReport`.", "args": [ { @@ -75034,12 +73278,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityReportCreatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `EmissionIntensityReport`.", + "name": "CifUserCifUsersByFormArchivedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Form`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `EmissionIntensityReport`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `Form`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -75052,7 +73296,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityReportCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByFormArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -75121,8 +73365,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityReportCreatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `EmissionIntensityReport`.", + "name": "CifUserCifUsersByFormArchivedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `Form`.", "fields": [ { "name": "cursor", @@ -75137,8 +73381,8 @@ "deprecationReason": null }, { - "name": "emissionIntensityReportsByArchivedBy", - "description": "Reads and enables pagination through a set of `EmissionIntensityReport`.", + "name": "formsByCreatedBy", + "description": "Reads and enables pagination through a set of `Form`.", "args": [ { "name": "after", @@ -75165,7 +73409,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityReportCondition", + "name": "FormCondition", "ofType": null }, "defaultValue": null @@ -75175,7 +73419,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityReportFilter", + "name": "FormFilter", "ofType": null }, "defaultValue": null @@ -75222,7 +73466,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `EmissionIntensityReport`.", + "description": "The method to use when ordering `Form`.", "type": { "kind": "LIST", "name": null, @@ -75231,7 +73475,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "EmissionIntensityReportsOrderBy", + "name": "FormsOrderBy", "ofType": null } } @@ -75244,7 +73488,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "EmissionIntensityReportsConnection", + "name": "FormsConnection", "ofType": null } }, @@ -75271,12 +73515,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityReportCreatedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `EmissionIntensityReport`.", + "name": "CifUserCifUsersByFormArchivedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Form`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `EmissionIntensityReport`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `Form`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -75289,7 +73533,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityReportCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByFormArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -75358,8 +73602,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityReportCreatedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `EmissionIntensityReport`.", + "name": "CifUserCifUsersByFormArchivedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `Form`.", "fields": [ { "name": "cursor", @@ -75374,8 +73618,8 @@ "deprecationReason": null }, { - "name": "emissionIntensityReportsByUpdatedBy", - "description": "Reads and enables pagination through a set of `EmissionIntensityReport`.", + "name": "formsByUpdatedBy", + "description": "Reads and enables pagination through a set of `Form`.", "args": [ { "name": "after", @@ -75402,7 +73646,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityReportCondition", + "name": "FormCondition", "ofType": null }, "defaultValue": null @@ -75412,7 +73656,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityReportFilter", + "name": "FormFilter", "ofType": null }, "defaultValue": null @@ -75459,7 +73703,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `EmissionIntensityReport`.", + "description": "The method to use when ordering `Form`.", "type": { "kind": "LIST", "name": null, @@ -75468,7 +73712,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "EmissionIntensityReportsOrderBy", + "name": "FormsOrderBy", "ofType": null } } @@ -75481,7 +73725,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "EmissionIntensityReportsConnection", + "name": "FormsConnection", "ofType": null } }, @@ -75508,12 +73752,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityReportUpdatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `EmissionIntensityReport`.", + "name": "CifUserCifUsersByFormChangeCreatedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `FormChange`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `EmissionIntensityReport`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `FormChange`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -75526,7 +73770,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityReportUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByFormChangeCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -75595,8 +73839,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityReportUpdatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `EmissionIntensityReport`.", + "name": "CifUserCifUsersByFormChangeCreatedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `FormChange`.", "fields": [ { "name": "cursor", @@ -75611,8 +73855,8 @@ "deprecationReason": null }, { - "name": "emissionIntensityReportsByArchivedBy", - "description": "Reads and enables pagination through a set of `EmissionIntensityReport`.", + "name": "formChangesByUpdatedBy", + "description": "Reads and enables pagination through a set of `FormChange`.", "args": [ { "name": "after", @@ -75639,7 +73883,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityReportCondition", + "name": "FormChangeCondition", "ofType": null }, "defaultValue": null @@ -75649,7 +73893,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityReportFilter", + "name": "FormChangeFilter", "ofType": null }, "defaultValue": null @@ -75664,16 +73908,6 @@ }, "defaultValue": null }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -75696,7 +73930,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `EmissionIntensityReport`.", + "description": "The method to use when ordering `FormChange`.", "type": { "kind": "LIST", "name": null, @@ -75705,7 +73939,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "EmissionIntensityReportsOrderBy", + "name": "FormChangesOrderBy", "ofType": null } } @@ -75718,7 +73952,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "EmissionIntensityReportsConnection", + "name": "FormChangesConnection", "ofType": null } }, @@ -75745,12 +73979,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityReportUpdatedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `EmissionIntensityReport`.", + "name": "CifUserCifUsersByFormChangeUpdatedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `FormChange`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `EmissionIntensityReport`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `FormChange`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -75763,7 +73997,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityReportUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByFormChangeUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -75832,8 +74066,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityReportUpdatedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `EmissionIntensityReport`.", + "name": "CifUserCifUsersByFormChangeUpdatedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `FormChange`.", "fields": [ { "name": "cursor", @@ -75848,8 +74082,8 @@ "deprecationReason": null }, { - "name": "emissionIntensityReportsByCreatedBy", - "description": "Reads and enables pagination through a set of `EmissionIntensityReport`.", + "name": "formChangesByCreatedBy", + "description": "Reads and enables pagination through a set of `FormChange`.", "args": [ { "name": "after", @@ -75876,7 +74110,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityReportCondition", + "name": "FormChangeCondition", "ofType": null }, "defaultValue": null @@ -75886,7 +74120,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityReportFilter", + "name": "FormChangeFilter", "ofType": null }, "defaultValue": null @@ -75901,16 +74135,6 @@ }, "defaultValue": null }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -75933,7 +74157,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `EmissionIntensityReport`.", + "description": "The method to use when ordering `FormChange`.", "type": { "kind": "LIST", "name": null, @@ -75942,7 +74166,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "EmissionIntensityReportsOrderBy", + "name": "FormChangesOrderBy", "ofType": null } } @@ -75955,7 +74179,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "EmissionIntensityReportsConnection", + "name": "FormChangesConnection", "ofType": null } }, @@ -75982,7 +74206,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFormArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByFormCreatedByAndArchivedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `Form`.", "fields": [ { @@ -76000,7 +74224,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFormArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByFormCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -76069,7 +74293,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFormArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByFormCreatedByAndArchivedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `Form`.", "fields": [ { @@ -76085,7 +74309,7 @@ "deprecationReason": null }, { - "name": "formsByCreatedBy", + "name": "formsByArchivedBy", "description": "Reads and enables pagination through a set of `Form`.", "args": [ { @@ -76219,7 +74443,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFormArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByFormCreatedByAndUpdatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `Form`.", "fields": [ { @@ -76237,7 +74461,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFormArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByFormCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -76306,7 +74530,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFormArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByFormCreatedByAndUpdatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `Form`.", "fields": [ { @@ -76456,12 +74680,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFormChangeCreatedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `FormChange`.", + "name": "CifUserCifUsersByFormUpdatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Form`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `FormChange`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `Form`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -76474,7 +74698,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFormChangeCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByFormUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -76543,8 +74767,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFormChangeCreatedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `FormChange`.", + "name": "CifUserCifUsersByFormUpdatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `Form`.", "fields": [ { "name": "cursor", @@ -76559,8 +74783,8 @@ "deprecationReason": null }, { - "name": "formChangesByUpdatedBy", - "description": "Reads and enables pagination through a set of `FormChange`.", + "name": "formsByArchivedBy", + "description": "Reads and enables pagination through a set of `Form`.", "args": [ { "name": "after", @@ -76587,7 +74811,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormChangeCondition", + "name": "FormCondition", "ofType": null }, "defaultValue": null @@ -76597,7 +74821,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormChangeFilter", + "name": "FormFilter", "ofType": null }, "defaultValue": null @@ -76613,231 +74837,14 @@ "defaultValue": null }, { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `FormChange`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "FormChangesOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "FormChangesConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `CifUser` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "CifUser", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CifUserCifUsersByFormChangeUpdatedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `FormChange`.", - "fields": [ - { - "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `FormChange`, and the cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CifUserCifUsersByFormChangeUpdatedByAndCreatedByManyToManyEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `CifUser` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CifUser", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `CifUser` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CifUserCifUsersByFormChangeUpdatedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `FormChange`.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "formChangesByCreatedBy", - "description": "Reads and enables pagination through a set of `FormChange`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "FormChangeCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "FormChangeFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": null + "defaultValue": "NO" }, { "name": "last", @@ -76861,7 +74868,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FormChange`.", + "description": "The method to use when ordering `Form`.", "type": { "kind": "LIST", "name": null, @@ -76870,7 +74877,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FormChangesOrderBy", + "name": "FormsOrderBy", "ofType": null } } @@ -76883,7 +74890,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FormChangesConnection", + "name": "FormsConnection", "ofType": null } }, @@ -76910,7 +74917,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFormCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByFormUpdatedByAndCreatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `Form`.", "fields": [ { @@ -76928,7 +74935,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFormCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByFormUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -76997,7 +75004,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFormCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByFormUpdatedByAndCreatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `Form`.", "fields": [ { @@ -77013,7 +75020,7 @@ "deprecationReason": null }, { - "name": "formsByArchivedBy", + "name": "formsByCreatedBy", "description": "Reads and enables pagination through a set of `Form`.", "args": [ { @@ -77147,12 +75154,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFormCreatedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Form`.", + "name": "CifUserCifUsersByFundingParameterArchivedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `FundingParameter`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Form`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `FundingParameter`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -77165,7 +75172,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFormCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByFundingParameterArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -77234,8 +75241,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFormCreatedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `Form`.", + "name": "CifUserCifUsersByFundingParameterArchivedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `FundingParameter`.", "fields": [ { "name": "cursor", @@ -77250,8 +75257,8 @@ "deprecationReason": null }, { - "name": "formsByUpdatedBy", - "description": "Reads and enables pagination through a set of `Form`.", + "name": "fundingParametersByCreatedBy", + "description": "Reads and enables pagination through a set of `FundingParameter`.", "args": [ { "name": "after", @@ -77278,7 +75285,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormCondition", + "name": "FundingParameterCondition", "ofType": null }, "defaultValue": null @@ -77288,7 +75295,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormFilter", + "name": "FundingParameterFilter", "ofType": null }, "defaultValue": null @@ -77335,7 +75342,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Form`.", + "description": "The method to use when ordering `FundingParameter`.", "type": { "kind": "LIST", "name": null, @@ -77344,7 +75351,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FormsOrderBy", + "name": "FundingParametersOrderBy", "ofType": null } } @@ -77357,7 +75364,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FormsConnection", + "name": "FundingParametersConnection", "ofType": null } }, @@ -77384,12 +75391,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFormUpdatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Form`.", + "name": "CifUserCifUsersByFundingParameterArchivedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `FundingParameter`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Form`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `FundingParameter`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -77402,7 +75409,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFormUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByFundingParameterArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -77471,8 +75478,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFormUpdatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `Form`.", + "name": "CifUserCifUsersByFundingParameterArchivedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `FundingParameter`.", "fields": [ { "name": "cursor", @@ -77487,8 +75494,8 @@ "deprecationReason": null }, { - "name": "formsByArchivedBy", - "description": "Reads and enables pagination through a set of `Form`.", + "name": "fundingParametersByUpdatedBy", + "description": "Reads and enables pagination through a set of `FundingParameter`.", "args": [ { "name": "after", @@ -77515,7 +75522,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormCondition", + "name": "FundingParameterCondition", "ofType": null }, "defaultValue": null @@ -77525,7 +75532,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormFilter", + "name": "FundingParameterFilter", "ofType": null }, "defaultValue": null @@ -77572,7 +75579,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Form`.", + "description": "The method to use when ordering `FundingParameter`.", "type": { "kind": "LIST", "name": null, @@ -77581,7 +75588,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FormsOrderBy", + "name": "FundingParametersOrderBy", "ofType": null } } @@ -77594,7 +75601,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FormsConnection", + "name": "FundingParametersConnection", "ofType": null } }, @@ -77621,12 +75628,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFormUpdatedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Form`.", + "name": "CifUserCifUsersByFundingParameterCreatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `FundingParameter`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Form`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `FundingParameter`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -77639,7 +75646,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFormUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByFundingParameterCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -77708,8 +75715,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFormUpdatedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `Form`.", + "name": "CifUserCifUsersByFundingParameterCreatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `FundingParameter`.", "fields": [ { "name": "cursor", @@ -77724,8 +75731,8 @@ "deprecationReason": null }, { - "name": "formsByCreatedBy", - "description": "Reads and enables pagination through a set of `Form`.", + "name": "fundingParametersByArchivedBy", + "description": "Reads and enables pagination through a set of `FundingParameter`.", "args": [ { "name": "after", @@ -77752,7 +75759,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormCondition", + "name": "FundingParameterCondition", "ofType": null }, "defaultValue": null @@ -77762,7 +75769,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormFilter", + "name": "FundingParameterFilter", "ofType": null }, "defaultValue": null @@ -77809,7 +75816,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Form`.", + "description": "The method to use when ordering `FundingParameter`.", "type": { "kind": "LIST", "name": null, @@ -77818,7 +75825,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FormsOrderBy", + "name": "FundingParametersOrderBy", "ofType": null } } @@ -77831,7 +75838,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FormsConnection", + "name": "FundingParametersConnection", "ofType": null } }, @@ -77858,7 +75865,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingParameterArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByFundingParameterCreatedByAndUpdatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `FundingParameter`.", "fields": [ { @@ -77876,7 +75883,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingParameterArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByFundingParameterCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -77945,7 +75952,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingParameterArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByFundingParameterCreatedByAndUpdatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `FundingParameter`.", "fields": [ { @@ -77961,7 +75968,7 @@ "deprecationReason": null }, { - "name": "fundingParametersByCreatedBy", + "name": "fundingParametersByUpdatedBy", "description": "Reads and enables pagination through a set of `FundingParameter`.", "args": [ { @@ -78095,7 +76102,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingParameterArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByFundingParameterUpdatedByAndArchivedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `FundingParameter`.", "fields": [ { @@ -78113,7 +76120,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingParameterArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByFundingParameterUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -78182,7 +76189,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingParameterArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByFundingParameterUpdatedByAndArchivedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `FundingParameter`.", "fields": [ { @@ -78198,7 +76205,7 @@ "deprecationReason": null }, { - "name": "fundingParametersByUpdatedBy", + "name": "fundingParametersByArchivedBy", "description": "Reads and enables pagination through a set of `FundingParameter`.", "args": [ { @@ -78332,7 +76339,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingParameterCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByFundingParameterUpdatedByAndCreatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `FundingParameter`.", "fields": [ { @@ -78350,7 +76357,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingParameterCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByFundingParameterUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -78419,7 +76426,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingParameterCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByFundingParameterUpdatedByAndCreatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `FundingParameter`.", "fields": [ { @@ -78435,7 +76442,7 @@ "deprecationReason": null }, { - "name": "fundingParametersByArchivedBy", + "name": "fundingParametersByCreatedBy", "description": "Reads and enables pagination through a set of `FundingParameter`.", "args": [ { @@ -78569,12 +76576,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingParameterCreatedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `FundingParameter`.", + "name": "CifUserCifUsersByFundingStreamArchivedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `FundingStream`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `FundingParameter`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `FundingStream`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -78587,7 +76594,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingParameterCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByFundingStreamArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -78656,8 +76663,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingParameterCreatedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `FundingParameter`.", + "name": "CifUserCifUsersByFundingStreamArchivedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `FundingStream`.", "fields": [ { "name": "cursor", @@ -78672,8 +76679,8 @@ "deprecationReason": null }, { - "name": "fundingParametersByUpdatedBy", - "description": "Reads and enables pagination through a set of `FundingParameter`.", + "name": "fundingStreamsByCreatedBy", + "description": "Reads and enables pagination through a set of `FundingStream`.", "args": [ { "name": "after", @@ -78700,7 +76707,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingParameterCondition", + "name": "FundingStreamCondition", "ofType": null }, "defaultValue": null @@ -78710,7 +76717,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingParameterFilter", + "name": "FundingStreamFilter", "ofType": null }, "defaultValue": null @@ -78757,7 +76764,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingParameter`.", + "description": "The method to use when ordering `FundingStream`.", "type": { "kind": "LIST", "name": null, @@ -78766,7 +76773,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingParametersOrderBy", + "name": "FundingStreamsOrderBy", "ofType": null } } @@ -78779,7 +76786,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingParametersConnection", + "name": "FundingStreamsConnection", "ofType": null } }, @@ -78806,12 +76813,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingParameterUpdatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `FundingParameter`.", + "name": "CifUserCifUsersByFundingStreamArchivedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `FundingStream`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `FundingParameter`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `FundingStream`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -78824,7 +76831,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingParameterUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByFundingStreamArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -78893,8 +76900,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingParameterUpdatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `FundingParameter`.", + "name": "CifUserCifUsersByFundingStreamArchivedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `FundingStream`.", "fields": [ { "name": "cursor", @@ -78909,8 +76916,8 @@ "deprecationReason": null }, { - "name": "fundingParametersByArchivedBy", - "description": "Reads and enables pagination through a set of `FundingParameter`.", + "name": "fundingStreamsByUpdatedBy", + "description": "Reads and enables pagination through a set of `FundingStream`.", "args": [ { "name": "after", @@ -78937,7 +76944,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingParameterCondition", + "name": "FundingStreamCondition", "ofType": null }, "defaultValue": null @@ -78947,7 +76954,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingParameterFilter", + "name": "FundingStreamFilter", "ofType": null }, "defaultValue": null @@ -78994,7 +77001,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingParameter`.", + "description": "The method to use when ordering `FundingStream`.", "type": { "kind": "LIST", "name": null, @@ -79003,7 +77010,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingParametersOrderBy", + "name": "FundingStreamsOrderBy", "ofType": null } } @@ -79016,7 +77023,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingParametersConnection", + "name": "FundingStreamsConnection", "ofType": null } }, @@ -79043,12 +77050,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingParameterUpdatedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `FundingParameter`.", + "name": "CifUserCifUsersByFundingStreamCreatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `FundingStream`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `FundingParameter`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `FundingStream`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -79061,7 +77068,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingParameterUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByFundingStreamCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -79130,8 +77137,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingParameterUpdatedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `FundingParameter`.", + "name": "CifUserCifUsersByFundingStreamCreatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `FundingStream`.", "fields": [ { "name": "cursor", @@ -79146,8 +77153,8 @@ "deprecationReason": null }, { - "name": "fundingParametersByCreatedBy", - "description": "Reads and enables pagination through a set of `FundingParameter`.", + "name": "fundingStreamsByArchivedBy", + "description": "Reads and enables pagination through a set of `FundingStream`.", "args": [ { "name": "after", @@ -79174,7 +77181,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingParameterCondition", + "name": "FundingStreamCondition", "ofType": null }, "defaultValue": null @@ -79184,7 +77191,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingParameterFilter", + "name": "FundingStreamFilter", "ofType": null }, "defaultValue": null @@ -79231,7 +77238,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingParameter`.", + "description": "The method to use when ordering `FundingStream`.", "type": { "kind": "LIST", "name": null, @@ -79240,7 +77247,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingParametersOrderBy", + "name": "FundingStreamsOrderBy", "ofType": null } } @@ -79253,7 +77260,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingParametersConnection", + "name": "FundingStreamsConnection", "ofType": null } }, @@ -79280,7 +77287,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByFundingStreamCreatedByAndUpdatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `FundingStream`.", "fields": [ { @@ -79298,7 +77305,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByFundingStreamCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -79367,7 +77374,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByFundingStreamCreatedByAndUpdatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `FundingStream`.", "fields": [ { @@ -79383,7 +77390,7 @@ "deprecationReason": null }, { - "name": "fundingStreamsByCreatedBy", + "name": "fundingStreamsByUpdatedBy", "description": "Reads and enables pagination through a set of `FundingStream`.", "args": [ { @@ -79517,12 +77524,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamArchivedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `FundingStream`.", + "name": "CifUserCifUsersByFundingStreamProjectStatusArchivedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `FundingStreamProjectStatus`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `FundingStream`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `FundingStreamProjectStatus`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -79535,7 +77542,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByFundingStreamProjectStatusArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -79604,8 +77611,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamArchivedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `FundingStream`.", + "name": "CifUserCifUsersByFundingStreamProjectStatusArchivedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `FundingStreamProjectStatus`.", "fields": [ { "name": "cursor", @@ -79620,8 +77627,8 @@ "deprecationReason": null }, { - "name": "fundingStreamsByUpdatedBy", - "description": "Reads and enables pagination through a set of `FundingStream`.", + "name": "fundingStreamProjectStatusesByCreatedBy", + "description": "Reads and enables pagination through a set of `FundingStreamProjectStatus`.", "args": [ { "name": "after", @@ -79648,7 +77655,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamCondition", + "name": "FundingStreamProjectStatusCondition", "ofType": null }, "defaultValue": null @@ -79658,7 +77665,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamFilter", + "name": "FundingStreamProjectStatusFilter", "ofType": null }, "defaultValue": null @@ -79705,7 +77712,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStream`.", + "description": "The method to use when ordering `FundingStreamProjectStatus`.", "type": { "kind": "LIST", "name": null, @@ -79714,7 +77721,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamsOrderBy", + "name": "FundingStreamProjectStatusesOrderBy", "ofType": null } } @@ -79727,7 +77734,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingStreamsConnection", + "name": "FundingStreamProjectStatusesConnection", "ofType": null } }, @@ -79754,12 +77761,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamCreatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `FundingStream`.", + "name": "CifUserCifUsersByFundingStreamProjectStatusArchivedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `FundingStreamProjectStatus`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `FundingStream`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `FundingStreamProjectStatus`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -79772,7 +77779,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByFundingStreamProjectStatusArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -79841,8 +77848,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamCreatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `FundingStream`.", + "name": "CifUserCifUsersByFundingStreamProjectStatusArchivedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `FundingStreamProjectStatus`.", "fields": [ { "name": "cursor", @@ -79857,8 +77864,8 @@ "deprecationReason": null }, { - "name": "fundingStreamsByArchivedBy", - "description": "Reads and enables pagination through a set of `FundingStream`.", + "name": "fundingStreamProjectStatusesByUpdatedBy", + "description": "Reads and enables pagination through a set of `FundingStreamProjectStatus`.", "args": [ { "name": "after", @@ -79885,7 +77892,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamCondition", + "name": "FundingStreamProjectStatusCondition", "ofType": null }, "defaultValue": null @@ -79895,7 +77902,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamFilter", + "name": "FundingStreamProjectStatusFilter", "ofType": null }, "defaultValue": null @@ -79942,7 +77949,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStream`.", + "description": "The method to use when ordering `FundingStreamProjectStatus`.", "type": { "kind": "LIST", "name": null, @@ -79951,7 +77958,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamsOrderBy", + "name": "FundingStreamProjectStatusesOrderBy", "ofType": null } } @@ -79964,7 +77971,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingStreamsConnection", + "name": "FundingStreamProjectStatusesConnection", "ofType": null } }, @@ -79991,12 +77998,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamCreatedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `FundingStream`.", + "name": "CifUserCifUsersByFundingStreamProjectStatusCreatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `FundingStreamProjectStatus`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `FundingStream`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `FundingStreamProjectStatus`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -80009,7 +78016,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByFundingStreamProjectStatusCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -80078,244 +78085,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamCreatedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `FundingStream`.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fundingStreamsByUpdatedBy", - "description": "Reads and enables pagination through a set of `FundingStream`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "FundingStreamCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "FundingStreamFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `FundingStream`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "FundingStreamsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "FundingStreamsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `CifUser` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "CifUser", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamProjectStatusArchivedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `FundingStreamProjectStatus`.", - "fields": [ - { - "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `FundingStreamProjectStatus`, and the cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamProjectStatusArchivedByAndCreatedByManyToManyEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `CifUser` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CifUser", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `CifUser` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamProjectStatusArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByFundingStreamProjectStatusCreatedByAndArchivedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `FundingStreamProjectStatus`.", "fields": [ { @@ -80331,7 +78101,7 @@ "deprecationReason": null }, { - "name": "fundingStreamProjectStatusesByCreatedBy", + "name": "fundingStreamProjectStatusesByArchivedBy", "description": "Reads and enables pagination through a set of `FundingStreamProjectStatus`.", "args": [ { @@ -80465,7 +78235,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamProjectStatusArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByFundingStreamProjectStatusCreatedByAndUpdatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `FundingStreamProjectStatus`.", "fields": [ { @@ -80483,7 +78253,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamProjectStatusArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByFundingStreamProjectStatusCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -80552,7 +78322,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamProjectStatusArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByFundingStreamProjectStatusCreatedByAndUpdatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `FundingStreamProjectStatus`.", "fields": [ { @@ -80702,7 +78472,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamProjectStatusCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByFundingStreamProjectStatusUpdatedByAndArchivedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `FundingStreamProjectStatus`.", "fields": [ { @@ -80720,7 +78490,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamProjectStatusCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByFundingStreamProjectStatusUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -80789,7 +78559,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamProjectStatusCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByFundingStreamProjectStatusUpdatedByAndArchivedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `FundingStreamProjectStatus`.", "fields": [ { @@ -80939,7 +78709,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamProjectStatusCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByFundingStreamProjectStatusUpdatedByAndCreatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `FundingStreamProjectStatus`.", "fields": [ { @@ -80957,7 +78727,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamProjectStatusCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByFundingStreamProjectStatusUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -81026,7 +78796,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamProjectStatusCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByFundingStreamProjectStatusUpdatedByAndCreatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `FundingStreamProjectStatus`.", "fields": [ { @@ -81042,7 +78812,7 @@ "deprecationReason": null }, { - "name": "fundingStreamProjectStatusesByUpdatedBy", + "name": "fundingStreamProjectStatusesByCreatedBy", "description": "Reads and enables pagination through a set of `FundingStreamProjectStatus`.", "args": [ { @@ -81176,12 +78946,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamProjectStatusUpdatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `FundingStreamProjectStatus`.", + "name": "CifUserCifUsersByFundingStreamRfpArchivedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `FundingStreamRfp`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `FundingStreamProjectStatus`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `FundingStreamRfp`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -81194,7 +78964,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamProjectStatusUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByFundingStreamRfpArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -81263,8 +79033,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamProjectStatusUpdatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `FundingStreamProjectStatus`.", + "name": "CifUserCifUsersByFundingStreamRfpArchivedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `FundingStreamRfp`.", "fields": [ { "name": "cursor", @@ -81279,8 +79049,8 @@ "deprecationReason": null }, { - "name": "fundingStreamProjectStatusesByArchivedBy", - "description": "Reads and enables pagination through a set of `FundingStreamProjectStatus`.", + "name": "fundingStreamRfpsByCreatedBy", + "description": "Reads and enables pagination through a set of `FundingStreamRfp`.", "args": [ { "name": "after", @@ -81307,7 +79077,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamProjectStatusCondition", + "name": "FundingStreamRfpCondition", "ofType": null }, "defaultValue": null @@ -81317,7 +79087,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamProjectStatusFilter", + "name": "FundingStreamRfpFilter", "ofType": null }, "defaultValue": null @@ -81364,7 +79134,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStreamProjectStatus`.", + "description": "The method to use when ordering `FundingStreamRfp`.", "type": { "kind": "LIST", "name": null, @@ -81373,7 +79143,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamProjectStatusesOrderBy", + "name": "FundingStreamRfpsOrderBy", "ofType": null } } @@ -81386,7 +79156,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingStreamProjectStatusesConnection", + "name": "FundingStreamRfpsConnection", "ofType": null } }, @@ -81413,12 +79183,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamProjectStatusUpdatedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `FundingStreamProjectStatus`.", + "name": "CifUserCifUsersByFundingStreamRfpArchivedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `FundingStreamRfp`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `FundingStreamProjectStatus`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `FundingStreamRfp`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -81431,7 +79201,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamProjectStatusUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByFundingStreamRfpArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -81500,8 +79270,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamProjectStatusUpdatedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `FundingStreamProjectStatus`.", + "name": "CifUserCifUsersByFundingStreamRfpArchivedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `FundingStreamRfp`.", "fields": [ { "name": "cursor", @@ -81516,8 +79286,8 @@ "deprecationReason": null }, { - "name": "fundingStreamProjectStatusesByCreatedBy", - "description": "Reads and enables pagination through a set of `FundingStreamProjectStatus`.", + "name": "fundingStreamRfpsByUpdatedBy", + "description": "Reads and enables pagination through a set of `FundingStreamRfp`.", "args": [ { "name": "after", @@ -81544,7 +79314,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamProjectStatusCondition", + "name": "FundingStreamRfpCondition", "ofType": null }, "defaultValue": null @@ -81554,7 +79324,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamProjectStatusFilter", + "name": "FundingStreamRfpFilter", "ofType": null }, "defaultValue": null @@ -81601,7 +79371,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStreamProjectStatus`.", + "description": "The method to use when ordering `FundingStreamRfp`.", "type": { "kind": "LIST", "name": null, @@ -81610,7 +79380,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamProjectStatusesOrderBy", + "name": "FundingStreamRfpsOrderBy", "ofType": null } } @@ -81623,7 +79393,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingStreamProjectStatusesConnection", + "name": "FundingStreamRfpsConnection", "ofType": null } }, @@ -81650,7 +79420,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamRfpArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByFundingStreamRfpCreatedByAndArchivedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `FundingStreamRfp`.", "fields": [ { @@ -81668,7 +79438,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamRfpArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByFundingStreamRfpCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -81737,7 +79507,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamRfpArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByFundingStreamRfpCreatedByAndArchivedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `FundingStreamRfp`.", "fields": [ { @@ -81753,7 +79523,7 @@ "deprecationReason": null }, { - "name": "fundingStreamRfpsByCreatedBy", + "name": "fundingStreamRfpsByArchivedBy", "description": "Reads and enables pagination through a set of `FundingStreamRfp`.", "args": [ { @@ -81887,7 +79657,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamRfpArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByFundingStreamRfpCreatedByAndUpdatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `FundingStreamRfp`.", "fields": [ { @@ -81905,7 +79675,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamRfpArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByFundingStreamRfpCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -81974,7 +79744,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamRfpArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByFundingStreamRfpCreatedByAndUpdatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `FundingStreamRfp`.", "fields": [ { @@ -82124,7 +79894,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamRfpCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByFundingStreamRfpUpdatedByAndArchivedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `FundingStreamRfp`.", "fields": [ { @@ -82142,7 +79912,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamRfpCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByFundingStreamRfpUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -82211,7 +79981,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamRfpCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByFundingStreamRfpUpdatedByAndArchivedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `FundingStreamRfp`.", "fields": [ { @@ -82361,7 +80131,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamRfpCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByFundingStreamRfpUpdatedByAndCreatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `FundingStreamRfp`.", "fields": [ { @@ -82379,7 +80149,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamRfpCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByFundingStreamRfpUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -82448,7 +80218,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamRfpCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByFundingStreamRfpUpdatedByAndCreatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `FundingStreamRfp`.", "fields": [ { @@ -82464,7 +80234,7 @@ "deprecationReason": null }, { - "name": "fundingStreamRfpsByUpdatedBy", + "name": "fundingStreamRfpsByCreatedBy", "description": "Reads and enables pagination through a set of `FundingStreamRfp`.", "args": [ { @@ -82598,12 +80368,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamRfpUpdatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `FundingStreamRfp`.", + "name": "CifUserCifUsersByFundingStreamUpdatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `FundingStream`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `FundingStreamRfp`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `FundingStream`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -82616,7 +80386,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamRfpUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByFundingStreamUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -82685,8 +80455,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamRfpUpdatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `FundingStreamRfp`.", + "name": "CifUserCifUsersByFundingStreamUpdatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `FundingStream`.", "fields": [ { "name": "cursor", @@ -82701,8 +80471,8 @@ "deprecationReason": null }, { - "name": "fundingStreamRfpsByArchivedBy", - "description": "Reads and enables pagination through a set of `FundingStreamRfp`.", + "name": "fundingStreamsByArchivedBy", + "description": "Reads and enables pagination through a set of `FundingStream`.", "args": [ { "name": "after", @@ -82729,7 +80499,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamRfpCondition", + "name": "FundingStreamCondition", "ofType": null }, "defaultValue": null @@ -82739,7 +80509,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamRfpFilter", + "name": "FundingStreamFilter", "ofType": null }, "defaultValue": null @@ -82786,7 +80556,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStreamRfp`.", + "description": "The method to use when ordering `FundingStream`.", "type": { "kind": "LIST", "name": null, @@ -82795,7 +80565,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamRfpsOrderBy", + "name": "FundingStreamsOrderBy", "ofType": null } } @@ -82808,7 +80578,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingStreamRfpsConnection", + "name": "FundingStreamsConnection", "ofType": null } }, @@ -82835,12 +80605,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamRfpUpdatedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `FundingStreamRfp`.", + "name": "CifUserCifUsersByFundingStreamUpdatedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `FundingStream`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `FundingStreamRfp`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `FundingStream`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -82853,7 +80623,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamRfpUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByFundingStreamUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -82922,8 +80692,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamRfpUpdatedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `FundingStreamRfp`.", + "name": "CifUserCifUsersByFundingStreamUpdatedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `FundingStream`.", "fields": [ { "name": "cursor", @@ -82938,8 +80708,8 @@ "deprecationReason": null }, { - "name": "fundingStreamRfpsByCreatedBy", - "description": "Reads and enables pagination through a set of `FundingStreamRfp`.", + "name": "fundingStreamsByCreatedBy", + "description": "Reads and enables pagination through a set of `FundingStream`.", "args": [ { "name": "after", @@ -82966,7 +80736,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamRfpCondition", + "name": "FundingStreamCondition", "ofType": null }, "defaultValue": null @@ -82976,7 +80746,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamRfpFilter", + "name": "FundingStreamFilter", "ofType": null }, "defaultValue": null @@ -83023,7 +80793,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStreamRfp`.", + "description": "The method to use when ordering `FundingStream`.", "type": { "kind": "LIST", "name": null, @@ -83032,7 +80802,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamRfpsOrderBy", + "name": "FundingStreamsOrderBy", "ofType": null } } @@ -83045,7 +80815,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingStreamRfpsConnection", + "name": "FundingStreamsConnection", "ofType": null } }, @@ -83072,12 +80842,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamUpdatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `FundingStream`.", + "name": "CifUserCifUsersByMilestoneReportArchivedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `MilestoneReport`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `FundingStream`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `MilestoneReport`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -83090,7 +80860,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByMilestoneReportArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -83159,8 +80929,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamUpdatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `FundingStream`.", + "name": "CifUserCifUsersByMilestoneReportArchivedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `MilestoneReport`.", "fields": [ { "name": "cursor", @@ -83175,8 +80945,8 @@ "deprecationReason": null }, { - "name": "fundingStreamsByArchivedBy", - "description": "Reads and enables pagination through a set of `FundingStream`.", + "name": "milestoneReportsByCreatedBy", + "description": "Reads and enables pagination through a set of `MilestoneReport`.", "args": [ { "name": "after", @@ -83203,7 +80973,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamCondition", + "name": "MilestoneReportCondition", "ofType": null }, "defaultValue": null @@ -83213,7 +80983,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamFilter", + "name": "MilestoneReportFilter", "ofType": null }, "defaultValue": null @@ -83260,7 +81030,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStream`.", + "description": "The method to use when ordering `MilestoneReport`.", "type": { "kind": "LIST", "name": null, @@ -83269,7 +81039,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamsOrderBy", + "name": "MilestoneReportsOrderBy", "ofType": null } } @@ -83282,7 +81052,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingStreamsConnection", + "name": "MilestoneReportsConnection", "ofType": null } }, @@ -83309,12 +81079,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamUpdatedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `FundingStream`.", + "name": "CifUserCifUsersByMilestoneReportArchivedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `MilestoneReport`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `FundingStream`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `MilestoneReport`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -83327,7 +81097,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByMilestoneReportArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -83396,8 +81166,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamUpdatedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `FundingStream`.", + "name": "CifUserCifUsersByMilestoneReportArchivedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `MilestoneReport`.", "fields": [ { "name": "cursor", @@ -83412,8 +81182,8 @@ "deprecationReason": null }, { - "name": "fundingStreamsByCreatedBy", - "description": "Reads and enables pagination through a set of `FundingStream`.", + "name": "milestoneReportsByUpdatedBy", + "description": "Reads and enables pagination through a set of `MilestoneReport`.", "args": [ { "name": "after", @@ -83440,7 +81210,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamCondition", + "name": "MilestoneReportCondition", "ofType": null }, "defaultValue": null @@ -83450,7 +81220,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamFilter", + "name": "MilestoneReportFilter", "ofType": null }, "defaultValue": null @@ -83497,7 +81267,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStream`.", + "description": "The method to use when ordering `MilestoneReport`.", "type": { "kind": "LIST", "name": null, @@ -83506,7 +81276,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamsOrderBy", + "name": "MilestoneReportsOrderBy", "ofType": null } } @@ -83519,7 +81289,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingStreamsConnection", + "name": "MilestoneReportsConnection", "ofType": null } }, @@ -83546,7 +81316,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByMilestoneReportArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByMilestoneReportCreatedByAndArchivedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `MilestoneReport`.", "fields": [ { @@ -83564,7 +81334,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByMilestoneReportArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByMilestoneReportCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -83633,7 +81403,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByMilestoneReportArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByMilestoneReportCreatedByAndArchivedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `MilestoneReport`.", "fields": [ { @@ -83649,7 +81419,7 @@ "deprecationReason": null }, { - "name": "milestoneReportsByCreatedBy", + "name": "milestoneReportsByArchivedBy", "description": "Reads and enables pagination through a set of `MilestoneReport`.", "args": [ { @@ -83783,7 +81553,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByMilestoneReportArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByMilestoneReportCreatedByAndUpdatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `MilestoneReport`.", "fields": [ { @@ -83801,7 +81571,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByMilestoneReportArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByMilestoneReportCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -83870,7 +81640,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByMilestoneReportArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByMilestoneReportCreatedByAndUpdatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `MilestoneReport`.", "fields": [ { @@ -84020,7 +81790,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByMilestoneReportCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByMilestoneReportUpdatedByAndArchivedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `MilestoneReport`.", "fields": [ { @@ -84038,7 +81808,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByMilestoneReportCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByMilestoneReportUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -84107,7 +81877,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByMilestoneReportCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByMilestoneReportUpdatedByAndArchivedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `MilestoneReport`.", "fields": [ { @@ -84257,7 +82027,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByMilestoneReportCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByMilestoneReportUpdatedByAndCreatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `MilestoneReport`.", "fields": [ { @@ -84275,7 +82045,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByMilestoneReportCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByMilestoneReportUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -84344,7 +82114,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByMilestoneReportCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByMilestoneReportUpdatedByAndCreatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `MilestoneReport`.", "fields": [ { @@ -84360,7 +82130,7 @@ "deprecationReason": null }, { - "name": "milestoneReportsByUpdatedBy", + "name": "milestoneReportsByCreatedBy", "description": "Reads and enables pagination through a set of `MilestoneReport`.", "args": [ { @@ -84494,12 +82264,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByMilestoneReportUpdatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `MilestoneReport`.", + "name": "CifUserCifUsersByOperatorArchivedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Operator`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `MilestoneReport`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `Operator`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -84512,7 +82282,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByMilestoneReportUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByOperatorArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -84581,8 +82351,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByMilestoneReportUpdatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `MilestoneReport`.", + "name": "CifUserCifUsersByOperatorArchivedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `Operator`.", "fields": [ { "name": "cursor", @@ -84597,8 +82367,20 @@ "deprecationReason": null }, { - "name": "milestoneReportsByArchivedBy", - "description": "Reads and enables pagination through a set of `MilestoneReport`.", + "name": "node", + "description": "The `CifUser` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "CifUser", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "operatorsByCreatedBy", + "description": "Reads and enables pagination through a set of `Operator`.", "args": [ { "name": "after", @@ -84625,7 +82407,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "MilestoneReportCondition", + "name": "OperatorCondition", "ofType": null }, "defaultValue": null @@ -84635,7 +82417,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "MilestoneReportFilter", + "name": "OperatorFilter", "ofType": null }, "defaultValue": null @@ -84682,7 +82464,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `MilestoneReport`.", + "description": "The method to use when ordering `Operator`.", "type": { "kind": "LIST", "name": null, @@ -84691,7 +82473,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "MilestoneReportsOrderBy", + "name": "OperatorsOrderBy", "ofType": null } } @@ -84704,24 +82486,12 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "MilestoneReportsConnection", + "name": "OperatorsConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "node", - "description": "The `CifUser` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "CifUser", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null } ], "inputFields": null, @@ -84731,12 +82501,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByMilestoneReportUpdatedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `MilestoneReport`.", + "name": "CifUserCifUsersByOperatorArchivedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Operator`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `MilestoneReport`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `Operator`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -84749,7 +82519,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByMilestoneReportUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByOperatorArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -84818,244 +82588,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByMilestoneReportUpdatedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `MilestoneReport`.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "milestoneReportsByCreatedBy", - "description": "Reads and enables pagination through a set of `MilestoneReport`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "MilestoneReportCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "MilestoneReportFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `MilestoneReport`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MilestoneReportsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "MilestoneReportsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `CifUser` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "CifUser", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CifUserCifUsersByOperatorArchivedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Operator`.", - "fields": [ - { - "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Operator`, and the cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CifUserCifUsersByOperatorArchivedByAndCreatedByManyToManyEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `CifUser` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CifUser", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `CifUser` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CifUserCifUsersByOperatorArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByOperatorArchivedByAndUpdatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `Operator`.", "fields": [ { @@ -85083,7 +82616,7 @@ "deprecationReason": null }, { - "name": "operatorsByCreatedBy", + "name": "operatorsByUpdatedBy", "description": "Reads and enables pagination through a set of `Operator`.", "args": [ { @@ -85205,7 +82738,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByOperatorArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByOperatorCreatedByAndArchivedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `Operator`.", "fields": [ { @@ -85223,7 +82756,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByOperatorArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByOperatorCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -85292,7 +82825,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByOperatorArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByOperatorCreatedByAndArchivedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `Operator`.", "fields": [ { @@ -85320,7 +82853,7 @@ "deprecationReason": null }, { - "name": "operatorsByUpdatedBy", + "name": "operatorsByArchivedBy", "description": "Reads and enables pagination through a set of `Operator`.", "args": [ { @@ -85442,7 +82975,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByOperatorCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByOperatorCreatedByAndUpdatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `Operator`.", "fields": [ { @@ -85460,7 +82993,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByOperatorCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByOperatorCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -85529,7 +83062,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByOperatorCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByOperatorCreatedByAndUpdatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `Operator`.", "fields": [ { @@ -85557,7 +83090,7 @@ "deprecationReason": null }, { - "name": "operatorsByArchivedBy", + "name": "operatorsByUpdatedBy", "description": "Reads and enables pagination through a set of `Operator`.", "args": [ { @@ -85679,7 +83212,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByOperatorCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByOperatorUpdatedByAndArchivedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `Operator`.", "fields": [ { @@ -85697,7 +83230,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByOperatorCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByOperatorUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -85766,7 +83299,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByOperatorCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByOperatorUpdatedByAndArchivedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `Operator`.", "fields": [ { @@ -85794,7 +83327,7 @@ "deprecationReason": null }, { - "name": "operatorsByUpdatedBy", + "name": "operatorsByArchivedBy", "description": "Reads and enables pagination through a set of `Operator`.", "args": [ { @@ -85916,7 +83449,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByOperatorUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByOperatorUpdatedByAndCreatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `Operator`.", "fields": [ { @@ -85934,7 +83467,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByOperatorUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByOperatorUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -86003,7 +83536,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByOperatorUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByOperatorUpdatedByAndCreatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `Operator`.", "fields": [ { @@ -86031,7 +83564,7 @@ "deprecationReason": null }, { - "name": "operatorsByArchivedBy", + "name": "operatorsByCreatedBy", "description": "Reads and enables pagination through a set of `Operator`.", "args": [ { @@ -86153,12 +83686,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByOperatorUpdatedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Operator`.", + "name": "CifUserCifUsersByPaymentArchivedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Payment`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Operator`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `Payment`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -86171,7 +83704,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByOperatorUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByPaymentArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -86240,8 +83773,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByOperatorUpdatedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `Operator`.", + "name": "CifUserCifUsersByPaymentArchivedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `Payment`.", "fields": [ { "name": "cursor", @@ -86268,8 +83801,8 @@ "deprecationReason": null }, { - "name": "operatorsByCreatedBy", - "description": "Reads and enables pagination through a set of `Operator`.", + "name": "paymentsByCreatedBy", + "description": "Reads and enables pagination through a set of `Payment`.", "args": [ { "name": "after", @@ -86296,7 +83829,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "OperatorCondition", + "name": "PaymentCondition", "ofType": null }, "defaultValue": null @@ -86306,7 +83839,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "OperatorFilter", + "name": "PaymentFilter", "ofType": null }, "defaultValue": null @@ -86353,7 +83886,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Operator`.", + "description": "The method to use when ordering `Payment`.", "type": { "kind": "LIST", "name": null, @@ -86362,7 +83895,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "OperatorsOrderBy", + "name": "PaymentsOrderBy", "ofType": null } } @@ -86375,7 +83908,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "OperatorsConnection", + "name": "PaymentsConnection", "ofType": null } }, @@ -86390,7 +83923,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByPaymentArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByPaymentArchivedByAndUpdatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `Payment`.", "fields": [ { @@ -86408,7 +83941,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByPaymentArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByPaymentArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -86477,7 +84010,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByPaymentArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByPaymentArchivedByAndUpdatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `Payment`.", "fields": [ { @@ -86505,7 +84038,7 @@ "deprecationReason": null }, { - "name": "paymentsByCreatedBy", + "name": "paymentsByUpdatedBy", "description": "Reads and enables pagination through a set of `Payment`.", "args": [ { @@ -86627,7 +84160,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByPaymentArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByPaymentCreatedByAndArchivedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `Payment`.", "fields": [ { @@ -86645,7 +84178,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByPaymentArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByPaymentCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -86714,7 +84247,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByPaymentArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByPaymentCreatedByAndArchivedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `Payment`.", "fields": [ { @@ -86742,7 +84275,7 @@ "deprecationReason": null }, { - "name": "paymentsByUpdatedBy", + "name": "paymentsByArchivedBy", "description": "Reads and enables pagination through a set of `Payment`.", "args": [ { @@ -86864,7 +84397,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByPaymentCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByPaymentCreatedByAndUpdatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `Payment`.", "fields": [ { @@ -86882,7 +84415,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByPaymentCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByPaymentCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -86951,7 +84484,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByPaymentCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByPaymentCreatedByAndUpdatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `Payment`.", "fields": [ { @@ -86979,7 +84512,7 @@ "deprecationReason": null }, { - "name": "paymentsByArchivedBy", + "name": "paymentsByUpdatedBy", "description": "Reads and enables pagination through a set of `Payment`.", "args": [ { @@ -87101,7 +84634,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByPaymentCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByPaymentUpdatedByAndArchivedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `Payment`.", "fields": [ { @@ -87119,7 +84652,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByPaymentCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByPaymentUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -87188,7 +84721,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByPaymentCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByPaymentUpdatedByAndArchivedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `Payment`.", "fields": [ { @@ -87216,7 +84749,7 @@ "deprecationReason": null }, { - "name": "paymentsByUpdatedBy", + "name": "paymentsByArchivedBy", "description": "Reads and enables pagination through a set of `Payment`.", "args": [ { @@ -87338,7 +84871,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByPaymentUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByPaymentUpdatedByAndCreatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `Payment`.", "fields": [ { @@ -87356,7 +84889,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByPaymentUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByPaymentUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -87425,7 +84958,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByPaymentUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByPaymentUpdatedByAndCreatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `Payment`.", "fields": [ { @@ -87453,7 +84986,7 @@ "deprecationReason": null }, { - "name": "paymentsByArchivedBy", + "name": "paymentsByCreatedBy", "description": "Reads and enables pagination through a set of `Payment`.", "args": [ { @@ -87575,12 +85108,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByPaymentUpdatedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Payment`.", + "name": "CifUserCifUsersByProjectArchivedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Project`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Payment`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `Project`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -87593,7 +85126,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByPaymentUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -87662,8 +85195,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByPaymentUpdatedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `Payment`.", + "name": "CifUserCifUsersByProjectArchivedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `Project`.", "fields": [ { "name": "cursor", @@ -87690,8 +85223,8 @@ "deprecationReason": null }, { - "name": "paymentsByCreatedBy", - "description": "Reads and enables pagination through a set of `Payment`.", + "name": "projectsByCreatedBy", + "description": "Reads and enables pagination through a set of `Project`.", "args": [ { "name": "after", @@ -87718,7 +85251,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "PaymentCondition", + "name": "ProjectCondition", "ofType": null }, "defaultValue": null @@ -87728,7 +85261,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "PaymentFilter", + "name": "ProjectFilter", "ofType": null }, "defaultValue": null @@ -87775,7 +85308,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Payment`.", + "description": "The method to use when ordering `Project`.", "type": { "kind": "LIST", "name": null, @@ -87784,7 +85317,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "PaymentsOrderBy", + "name": "ProjectsOrderBy", "ofType": null } } @@ -87797,7 +85330,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PaymentsConnection", + "name": "ProjectsConnection", "ofType": null } }, @@ -87812,7 +85345,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectArchivedByAndUpdatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `Project`.", "fields": [ { @@ -87830,7 +85363,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -87899,7 +85432,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectArchivedByAndUpdatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `Project`.", "fields": [ { @@ -87927,7 +85460,7 @@ "deprecationReason": null }, { - "name": "projectsByCreatedBy", + "name": "projectsByUpdatedBy", "description": "Reads and enables pagination through a set of `Project`.", "args": [ { @@ -88049,12 +85582,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectArchivedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Project`.", + "name": "CifUserCifUsersByProjectContactArchivedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectContact`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Project`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectContact`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -88067,7 +85600,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectContactArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -88136,8 +85669,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectArchivedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `Project`.", + "name": "CifUserCifUsersByProjectContactArchivedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectContact`.", "fields": [ { "name": "cursor", @@ -88164,8 +85697,8 @@ "deprecationReason": null }, { - "name": "projectsByUpdatedBy", - "description": "Reads and enables pagination through a set of `Project`.", + "name": "projectContactsByCreatedBy", + "description": "Reads and enables pagination through a set of `ProjectContact`.", "args": [ { "name": "after", @@ -88192,7 +85725,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCondition", + "name": "ProjectContactCondition", "ofType": null }, "defaultValue": null @@ -88202,7 +85735,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectFilter", + "name": "ProjectContactFilter", "ofType": null }, "defaultValue": null @@ -88249,7 +85782,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Project`.", + "description": "The method to use when ordering `ProjectContact`.", "type": { "kind": "LIST", "name": null, @@ -88258,7 +85791,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectsOrderBy", + "name": "ProjectContactsOrderBy", "ofType": null } } @@ -88271,7 +85804,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectsConnection", + "name": "ProjectContactsConnection", "ofType": null } }, @@ -88286,12 +85819,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectAttachmentArchivedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectAttachment`.", + "name": "CifUserCifUsersByProjectContactArchivedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectContact`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectAttachment`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectContact`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -88304,7 +85837,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectAttachmentArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectContactArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -88373,8 +85906,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectAttachmentArchivedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectAttachment`.", + "name": "CifUserCifUsersByProjectContactArchivedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectContact`.", "fields": [ { "name": "cursor", @@ -88401,8 +85934,8 @@ "deprecationReason": null }, { - "name": "projectAttachmentsByCreatedBy", - "description": "Reads and enables pagination through a set of `ProjectAttachment`.", + "name": "projectContactsByUpdatedBy", + "description": "Reads and enables pagination through a set of `ProjectContact`.", "args": [ { "name": "after", @@ -88429,7 +85962,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentCondition", + "name": "ProjectContactCondition", "ofType": null }, "defaultValue": null @@ -88439,7 +85972,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentFilter", + "name": "ProjectContactFilter", "ofType": null }, "defaultValue": null @@ -88486,7 +86019,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectAttachment`.", + "description": "The method to use when ordering `ProjectContact`.", "type": { "kind": "LIST", "name": null, @@ -88495,7 +86028,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectAttachmentsOrderBy", + "name": "ProjectContactsOrderBy", "ofType": null } } @@ -88508,7 +86041,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectAttachmentsConnection", + "name": "ProjectContactsConnection", "ofType": null } }, @@ -88523,12 +86056,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectAttachmentArchivedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectAttachment`.", + "name": "CifUserCifUsersByProjectContactCreatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectContact`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectAttachment`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectContact`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -88541,7 +86074,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectAttachmentArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectContactCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -88610,8 +86143,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectAttachmentArchivedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectAttachment`.", + "name": "CifUserCifUsersByProjectContactCreatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectContact`.", "fields": [ { "name": "cursor", @@ -88638,8 +86171,8 @@ "deprecationReason": null }, { - "name": "projectAttachmentsByUpdatedBy", - "description": "Reads and enables pagination through a set of `ProjectAttachment`.", + "name": "projectContactsByArchivedBy", + "description": "Reads and enables pagination through a set of `ProjectContact`.", "args": [ { "name": "after", @@ -88666,7 +86199,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentCondition", + "name": "ProjectContactCondition", "ofType": null }, "defaultValue": null @@ -88676,7 +86209,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentFilter", + "name": "ProjectContactFilter", "ofType": null }, "defaultValue": null @@ -88723,7 +86256,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectAttachment`.", + "description": "The method to use when ordering `ProjectContact`.", "type": { "kind": "LIST", "name": null, @@ -88732,7 +86265,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectAttachmentsOrderBy", + "name": "ProjectContactsOrderBy", "ofType": null } } @@ -88745,7 +86278,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectAttachmentsConnection", + "name": "ProjectContactsConnection", "ofType": null } }, @@ -88760,12 +86293,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectAttachmentCreatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectAttachment`.", + "name": "CifUserCifUsersByProjectContactCreatedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectContact`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectAttachment`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectContact`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -88778,7 +86311,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectAttachmentCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByProjectContactCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -88847,8 +86380,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectAttachmentCreatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectAttachment`.", + "name": "CifUserCifUsersByProjectContactCreatedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectContact`.", "fields": [ { "name": "cursor", @@ -88875,8 +86408,8 @@ "deprecationReason": null }, { - "name": "projectAttachmentsByArchivedBy", - "description": "Reads and enables pagination through a set of `ProjectAttachment`.", + "name": "projectContactsByUpdatedBy", + "description": "Reads and enables pagination through a set of `ProjectContact`.", "args": [ { "name": "after", @@ -88903,7 +86436,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentCondition", + "name": "ProjectContactCondition", "ofType": null }, "defaultValue": null @@ -88913,7 +86446,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentFilter", + "name": "ProjectContactFilter", "ofType": null }, "defaultValue": null @@ -88960,7 +86493,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectAttachment`.", + "description": "The method to use when ordering `ProjectContact`.", "type": { "kind": "LIST", "name": null, @@ -88969,7 +86502,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectAttachmentsOrderBy", + "name": "ProjectContactsOrderBy", "ofType": null } } @@ -88982,7 +86515,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectAttachmentsConnection", + "name": "ProjectContactsConnection", "ofType": null } }, @@ -88997,12 +86530,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectAttachmentCreatedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectAttachment`.", + "name": "CifUserCifUsersByProjectContactUpdatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectContact`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectAttachment`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectContact`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -89015,7 +86548,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectAttachmentCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectContactUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -89084,8 +86617,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectAttachmentCreatedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectAttachment`.", + "name": "CifUserCifUsersByProjectContactUpdatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectContact`.", "fields": [ { "name": "cursor", @@ -89112,8 +86645,8 @@ "deprecationReason": null }, { - "name": "projectAttachmentsByUpdatedBy", - "description": "Reads and enables pagination through a set of `ProjectAttachment`.", + "name": "projectContactsByArchivedBy", + "description": "Reads and enables pagination through a set of `ProjectContact`.", "args": [ { "name": "after", @@ -89140,7 +86673,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentCondition", + "name": "ProjectContactCondition", "ofType": null }, "defaultValue": null @@ -89150,7 +86683,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentFilter", + "name": "ProjectContactFilter", "ofType": null }, "defaultValue": null @@ -89197,7 +86730,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectAttachment`.", + "description": "The method to use when ordering `ProjectContact`.", "type": { "kind": "LIST", "name": null, @@ -89206,7 +86739,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectAttachmentsOrderBy", + "name": "ProjectContactsOrderBy", "ofType": null } } @@ -89219,7 +86752,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectAttachmentsConnection", + "name": "ProjectContactsConnection", "ofType": null } }, @@ -89234,12 +86767,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectAttachmentUpdatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectAttachment`.", + "name": "CifUserCifUsersByProjectContactUpdatedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectContact`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectAttachment`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectContact`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -89252,7 +86785,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectAttachmentUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByProjectContactUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -89321,8 +86854,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectAttachmentUpdatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectAttachment`.", + "name": "CifUserCifUsersByProjectContactUpdatedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectContact`.", "fields": [ { "name": "cursor", @@ -89349,8 +86882,8 @@ "deprecationReason": null }, { - "name": "projectAttachmentsByArchivedBy", - "description": "Reads and enables pagination through a set of `ProjectAttachment`.", + "name": "projectContactsByCreatedBy", + "description": "Reads and enables pagination through a set of `ProjectContact`.", "args": [ { "name": "after", @@ -89377,7 +86910,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentCondition", + "name": "ProjectContactCondition", "ofType": null }, "defaultValue": null @@ -89387,7 +86920,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentFilter", + "name": "ProjectContactFilter", "ofType": null }, "defaultValue": null @@ -89434,7 +86967,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectAttachment`.", + "description": "The method to use when ordering `ProjectContact`.", "type": { "kind": "LIST", "name": null, @@ -89443,7 +86976,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectAttachmentsOrderBy", + "name": "ProjectContactsOrderBy", "ofType": null } } @@ -89456,7 +86989,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectAttachmentsConnection", + "name": "ProjectContactsConnection", "ofType": null } }, @@ -89471,12 +87004,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectAttachmentUpdatedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectAttachment`.", + "name": "CifUserCifUsersByProjectCreatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Project`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectAttachment`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `Project`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -89489,7 +87022,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectAttachmentUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -89558,8 +87091,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectAttachmentUpdatedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectAttachment`.", + "name": "CifUserCifUsersByProjectCreatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `Project`.", "fields": [ { "name": "cursor", @@ -89586,8 +87119,8 @@ "deprecationReason": null }, { - "name": "projectAttachmentsByCreatedBy", - "description": "Reads and enables pagination through a set of `ProjectAttachment`.", + "name": "projectsByArchivedBy", + "description": "Reads and enables pagination through a set of `Project`.", "args": [ { "name": "after", @@ -89614,7 +87147,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentCondition", + "name": "ProjectCondition", "ofType": null }, "defaultValue": null @@ -89624,7 +87157,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentFilter", + "name": "ProjectFilter", "ofType": null }, "defaultValue": null @@ -89671,7 +87204,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectAttachment`.", + "description": "The method to use when ordering `Project`.", "type": { "kind": "LIST", "name": null, @@ -89680,7 +87213,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectAttachmentsOrderBy", + "name": "ProjectsOrderBy", "ofType": null } } @@ -89693,7 +87226,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectAttachmentsConnection", + "name": "ProjectsConnection", "ofType": null } }, @@ -89708,12 +87241,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectContactArchivedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectContact`.", + "name": "CifUserCifUsersByProjectCreatedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Project`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectContact`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `Project`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -89726,7 +87259,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectContactArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -89795,8 +87328,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectContactArchivedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectContact`.", + "name": "CifUserCifUsersByProjectCreatedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `Project`.", "fields": [ { "name": "cursor", @@ -89823,8 +87356,8 @@ "deprecationReason": null }, { - "name": "projectContactsByCreatedBy", - "description": "Reads and enables pagination through a set of `ProjectContact`.", + "name": "projectsByUpdatedBy", + "description": "Reads and enables pagination through a set of `Project`.", "args": [ { "name": "after", @@ -89851,7 +87384,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactCondition", + "name": "ProjectCondition", "ofType": null }, "defaultValue": null @@ -89861,7 +87394,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactFilter", + "name": "ProjectFilter", "ofType": null }, "defaultValue": null @@ -89908,7 +87441,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectContact`.", + "description": "The method to use when ordering `Project`.", "type": { "kind": "LIST", "name": null, @@ -89917,7 +87450,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectContactsOrderBy", + "name": "ProjectsOrderBy", "ofType": null } } @@ -89930,7 +87463,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectContactsConnection", + "name": "ProjectsConnection", "ofType": null } }, @@ -89945,12 +87478,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectContactArchivedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectContact`.", + "name": "CifUserCifUsersByProjectManagerArchivedByAndCifUserIdManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectManager`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectContact`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectManager`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -89963,7 +87496,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectContactArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectManagerArchivedByAndCifUserIdManyToManyEdge", "ofType": null } } @@ -90032,8 +87565,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectContactArchivedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectContact`.", + "name": "CifUserCifUsersByProjectManagerArchivedByAndCifUserIdManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectManager`.", "fields": [ { "name": "cursor", @@ -90060,8 +87593,8 @@ "deprecationReason": null }, { - "name": "projectContactsByUpdatedBy", - "description": "Reads and enables pagination through a set of `ProjectContact`.", + "name": "projectManagersByCifUserId", + "description": "Reads and enables pagination through a set of `ProjectManager`.", "args": [ { "name": "after", @@ -90088,7 +87621,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactCondition", + "name": "ProjectManagerCondition", "ofType": null }, "defaultValue": null @@ -90098,7 +87631,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactFilter", + "name": "ProjectManagerFilter", "ofType": null }, "defaultValue": null @@ -90145,7 +87678,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectContact`.", + "description": "The method to use when ordering `ProjectManager`.", "type": { "kind": "LIST", "name": null, @@ -90154,7 +87687,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectContactsOrderBy", + "name": "ProjectManagersOrderBy", "ofType": null } } @@ -90167,7 +87700,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectContactsConnection", + "name": "ProjectManagersConnection", "ofType": null } }, @@ -90182,12 +87715,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectContactCreatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectContact`.", + "name": "CifUserCifUsersByProjectManagerArchivedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectManager`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectContact`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectManager`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -90200,7 +87733,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectContactCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByProjectManagerArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -90269,8 +87802,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectContactCreatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectContact`.", + "name": "CifUserCifUsersByProjectManagerArchivedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectManager`.", "fields": [ { "name": "cursor", @@ -90297,8 +87830,8 @@ "deprecationReason": null }, { - "name": "projectContactsByArchivedBy", - "description": "Reads and enables pagination through a set of `ProjectContact`.", + "name": "projectManagersByCreatedBy", + "description": "Reads and enables pagination through a set of `ProjectManager`.", "args": [ { "name": "after", @@ -90325,7 +87858,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactCondition", + "name": "ProjectManagerCondition", "ofType": null }, "defaultValue": null @@ -90335,7 +87868,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactFilter", + "name": "ProjectManagerFilter", "ofType": null }, "defaultValue": null @@ -90382,7 +87915,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectContact`.", + "description": "The method to use when ordering `ProjectManager`.", "type": { "kind": "LIST", "name": null, @@ -90391,7 +87924,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectContactsOrderBy", + "name": "ProjectManagersOrderBy", "ofType": null } } @@ -90404,7 +87937,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectContactsConnection", + "name": "ProjectManagersConnection", "ofType": null } }, @@ -90419,12 +87952,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectContactCreatedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectContact`.", + "name": "CifUserCifUsersByProjectManagerArchivedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectManager`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectContact`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectManager`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -90437,7 +87970,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectContactCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectManagerArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -90506,8 +88039,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectContactCreatedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectContact`.", + "name": "CifUserCifUsersByProjectManagerArchivedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectManager`.", "fields": [ { "name": "cursor", @@ -90534,8 +88067,8 @@ "deprecationReason": null }, { - "name": "projectContactsByUpdatedBy", - "description": "Reads and enables pagination through a set of `ProjectContact`.", + "name": "projectManagersByUpdatedBy", + "description": "Reads and enables pagination through a set of `ProjectManager`.", "args": [ { "name": "after", @@ -90562,7 +88095,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactCondition", + "name": "ProjectManagerCondition", "ofType": null }, "defaultValue": null @@ -90572,7 +88105,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactFilter", + "name": "ProjectManagerFilter", "ofType": null }, "defaultValue": null @@ -90619,7 +88152,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectContact`.", + "description": "The method to use when ordering `ProjectManager`.", "type": { "kind": "LIST", "name": null, @@ -90628,7 +88161,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectContactsOrderBy", + "name": "ProjectManagersOrderBy", "ofType": null } } @@ -90641,7 +88174,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectContactsConnection", + "name": "ProjectManagersConnection", "ofType": null } }, @@ -90656,12 +88189,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectContactUpdatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectContact`.", + "name": "CifUserCifUsersByProjectManagerCifUserIdAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectManager`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectContact`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectManager`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -90674,7 +88207,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectContactUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByProjectManagerCifUserIdAndArchivedByManyToManyEdge", "ofType": null } } @@ -90743,8 +88276,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectContactUpdatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectContact`.", + "name": "CifUserCifUsersByProjectManagerCifUserIdAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectManager`.", "fields": [ { "name": "cursor", @@ -90771,8 +88304,8 @@ "deprecationReason": null }, { - "name": "projectContactsByArchivedBy", - "description": "Reads and enables pagination through a set of `ProjectContact`.", + "name": "projectManagersByArchivedBy", + "description": "Reads and enables pagination through a set of `ProjectManager`.", "args": [ { "name": "after", @@ -90799,7 +88332,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactCondition", + "name": "ProjectManagerCondition", "ofType": null }, "defaultValue": null @@ -90809,7 +88342,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactFilter", + "name": "ProjectManagerFilter", "ofType": null }, "defaultValue": null @@ -90856,7 +88389,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectContact`.", + "description": "The method to use when ordering `ProjectManager`.", "type": { "kind": "LIST", "name": null, @@ -90865,7 +88398,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectContactsOrderBy", + "name": "ProjectManagersOrderBy", "ofType": null } } @@ -90878,7 +88411,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectContactsConnection", + "name": "ProjectManagersConnection", "ofType": null } }, @@ -90893,12 +88426,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectContactUpdatedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectContact`.", + "name": "CifUserCifUsersByProjectManagerCifUserIdAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectManager`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectContact`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectManager`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -90911,7 +88444,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectContactUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectManagerCifUserIdAndCreatedByManyToManyEdge", "ofType": null } } @@ -90980,8 +88513,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectContactUpdatedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectContact`.", + "name": "CifUserCifUsersByProjectManagerCifUserIdAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectManager`.", "fields": [ { "name": "cursor", @@ -91008,8 +88541,8 @@ "deprecationReason": null }, { - "name": "projectContactsByCreatedBy", - "description": "Reads and enables pagination through a set of `ProjectContact`.", + "name": "projectManagersByCreatedBy", + "description": "Reads and enables pagination through a set of `ProjectManager`.", "args": [ { "name": "after", @@ -91036,7 +88569,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactCondition", + "name": "ProjectManagerCondition", "ofType": null }, "defaultValue": null @@ -91046,7 +88579,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactFilter", + "name": "ProjectManagerFilter", "ofType": null }, "defaultValue": null @@ -91093,7 +88626,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectContact`.", + "description": "The method to use when ordering `ProjectManager`.", "type": { "kind": "LIST", "name": null, @@ -91102,7 +88635,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectContactsOrderBy", + "name": "ProjectManagersOrderBy", "ofType": null } } @@ -91115,7 +88648,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectContactsConnection", + "name": "ProjectManagersConnection", "ofType": null } }, @@ -91130,12 +88663,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectCreatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Project`.", + "name": "CifUserCifUsersByProjectManagerCifUserIdAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectManager`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Project`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectManager`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -91148,7 +88681,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByProjectManagerCifUserIdAndUpdatedByManyToManyEdge", "ofType": null } } @@ -91217,8 +88750,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectCreatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `Project`.", + "name": "CifUserCifUsersByProjectManagerCifUserIdAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectManager`.", "fields": [ { "name": "cursor", @@ -91245,8 +88778,8 @@ "deprecationReason": null }, { - "name": "projectsByArchivedBy", - "description": "Reads and enables pagination through a set of `Project`.", + "name": "projectManagersByUpdatedBy", + "description": "Reads and enables pagination through a set of `ProjectManager`.", "args": [ { "name": "after", @@ -91273,7 +88806,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCondition", + "name": "ProjectManagerCondition", "ofType": null }, "defaultValue": null @@ -91283,7 +88816,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectFilter", + "name": "ProjectManagerFilter", "ofType": null }, "defaultValue": null @@ -91330,7 +88863,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Project`.", + "description": "The method to use when ordering `ProjectManager`.", "type": { "kind": "LIST", "name": null, @@ -91339,7 +88872,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectsOrderBy", + "name": "ProjectManagersOrderBy", "ofType": null } } @@ -91352,7 +88885,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectsConnection", + "name": "ProjectManagersConnection", "ofType": null } }, @@ -91367,12 +88900,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectCreatedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Project`.", + "name": "CifUserCifUsersByProjectManagerCreatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectManager`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Project`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectManager`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -91385,7 +88918,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectManagerCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -91454,8 +88987,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectCreatedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `Project`.", + "name": "CifUserCifUsersByProjectManagerCreatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectManager`.", "fields": [ { "name": "cursor", @@ -91482,8 +89015,8 @@ "deprecationReason": null }, { - "name": "projectsByUpdatedBy", - "description": "Reads and enables pagination through a set of `Project`.", + "name": "projectManagersByArchivedBy", + "description": "Reads and enables pagination through a set of `ProjectManager`.", "args": [ { "name": "after", @@ -91510,7 +89043,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCondition", + "name": "ProjectManagerCondition", "ofType": null }, "defaultValue": null @@ -91520,7 +89053,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectFilter", + "name": "ProjectManagerFilter", "ofType": null }, "defaultValue": null @@ -91567,7 +89100,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Project`.", + "description": "The method to use when ordering `ProjectManager`.", "type": { "kind": "LIST", "name": null, @@ -91576,7 +89109,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectsOrderBy", + "name": "ProjectManagersOrderBy", "ofType": null } } @@ -91589,7 +89122,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectsConnection", + "name": "ProjectManagersConnection", "ofType": null } }, @@ -91604,7 +89137,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerArchivedByAndCifUserIdManyToManyConnection", + "name": "CifUserCifUsersByProjectManagerCreatedByAndCifUserIdManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `ProjectManager`.", "fields": [ { @@ -91622,7 +89155,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerArchivedByAndCifUserIdManyToManyEdge", + "name": "CifUserCifUsersByProjectManagerCreatedByAndCifUserIdManyToManyEdge", "ofType": null } } @@ -91691,7 +89224,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerArchivedByAndCifUserIdManyToManyEdge", + "name": "CifUserCifUsersByProjectManagerCreatedByAndCifUserIdManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `ProjectManager`.", "fields": [ { @@ -91841,7 +89374,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectManagerCreatedByAndUpdatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `ProjectManager`.", "fields": [ { @@ -91859,7 +89392,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectManagerCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -91928,7 +89461,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectManagerCreatedByAndUpdatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `ProjectManager`.", "fields": [ { @@ -91956,7 +89489,7 @@ "deprecationReason": null }, { - "name": "projectManagersByCreatedBy", + "name": "projectManagersByUpdatedBy", "description": "Reads and enables pagination through a set of `ProjectManager`.", "args": [ { @@ -92078,12 +89611,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerArchivedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectManager`.", + "name": "CifUserCifUsersByProjectManagerLabelArchivedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectManagerLabel`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectManager`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectManagerLabel`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -92096,7 +89629,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectManagerLabelArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -92165,8 +89698,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerArchivedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectManager`.", + "name": "CifUserCifUsersByProjectManagerLabelArchivedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectManagerLabel`.", "fields": [ { "name": "cursor", @@ -92193,8 +89726,8 @@ "deprecationReason": null }, { - "name": "projectManagersByUpdatedBy", - "description": "Reads and enables pagination through a set of `ProjectManager`.", + "name": "projectManagerLabelsByCreatedBy", + "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", "args": [ { "name": "after", @@ -92221,7 +89754,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerCondition", + "name": "ProjectManagerLabelCondition", "ofType": null }, "defaultValue": null @@ -92231,7 +89764,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerFilter", + "name": "ProjectManagerLabelFilter", "ofType": null }, "defaultValue": null @@ -92278,7 +89811,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManager`.", + "description": "The method to use when ordering `ProjectManagerLabel`.", "type": { "kind": "LIST", "name": null, @@ -92287,7 +89820,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagersOrderBy", + "name": "ProjectManagerLabelsOrderBy", "ofType": null } } @@ -92300,7 +89833,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectManagersConnection", + "name": "ProjectManagerLabelsConnection", "ofType": null } }, @@ -92315,12 +89848,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerCifUserIdAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectManager`.", + "name": "CifUserCifUsersByProjectManagerLabelArchivedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectManagerLabel`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectManager`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectManagerLabel`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -92333,7 +89866,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerCifUserIdAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByProjectManagerLabelArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -92402,8 +89935,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerCifUserIdAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectManager`.", + "name": "CifUserCifUsersByProjectManagerLabelArchivedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectManagerLabel`.", "fields": [ { "name": "cursor", @@ -92430,8 +89963,8 @@ "deprecationReason": null }, { - "name": "projectManagersByArchivedBy", - "description": "Reads and enables pagination through a set of `ProjectManager`.", + "name": "projectManagerLabelsByUpdatedBy", + "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", "args": [ { "name": "after", @@ -92458,7 +89991,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerCondition", + "name": "ProjectManagerLabelCondition", "ofType": null }, "defaultValue": null @@ -92468,7 +90001,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerFilter", + "name": "ProjectManagerLabelFilter", "ofType": null }, "defaultValue": null @@ -92515,7 +90048,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManager`.", + "description": "The method to use when ordering `ProjectManagerLabel`.", "type": { "kind": "LIST", "name": null, @@ -92524,7 +90057,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagersOrderBy", + "name": "ProjectManagerLabelsOrderBy", "ofType": null } } @@ -92537,7 +90070,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectManagersConnection", + "name": "ProjectManagerLabelsConnection", "ofType": null } }, @@ -92552,12 +90085,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerCifUserIdAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectManager`.", + "name": "CifUserCifUsersByProjectManagerLabelCreatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectManagerLabel`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectManager`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectManagerLabel`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -92570,7 +90103,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerCifUserIdAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectManagerLabelCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -92639,8 +90172,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerCifUserIdAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectManager`.", + "name": "CifUserCifUsersByProjectManagerLabelCreatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectManagerLabel`.", "fields": [ { "name": "cursor", @@ -92667,8 +90200,8 @@ "deprecationReason": null }, { - "name": "projectManagersByCreatedBy", - "description": "Reads and enables pagination through a set of `ProjectManager`.", + "name": "projectManagerLabelsByArchivedBy", + "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", "args": [ { "name": "after", @@ -92695,7 +90228,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerCondition", + "name": "ProjectManagerLabelCondition", "ofType": null }, "defaultValue": null @@ -92705,7 +90238,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerFilter", + "name": "ProjectManagerLabelFilter", "ofType": null }, "defaultValue": null @@ -92752,7 +90285,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManager`.", + "description": "The method to use when ordering `ProjectManagerLabel`.", "type": { "kind": "LIST", "name": null, @@ -92761,7 +90294,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagersOrderBy", + "name": "ProjectManagerLabelsOrderBy", "ofType": null } } @@ -92774,7 +90307,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectManagersConnection", + "name": "ProjectManagerLabelsConnection", "ofType": null } }, @@ -92789,12 +90322,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerCifUserIdAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectManager`.", + "name": "CifUserCifUsersByProjectManagerLabelCreatedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectManagerLabel`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectManager`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectManagerLabel`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -92807,7 +90340,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerCifUserIdAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectManagerLabelCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -92876,8 +90409,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerCifUserIdAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectManager`.", + "name": "CifUserCifUsersByProjectManagerLabelCreatedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectManagerLabel`.", "fields": [ { "name": "cursor", @@ -92904,8 +90437,8 @@ "deprecationReason": null }, { - "name": "projectManagersByUpdatedBy", - "description": "Reads and enables pagination through a set of `ProjectManager`.", + "name": "projectManagerLabelsByUpdatedBy", + "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", "args": [ { "name": "after", @@ -92932,7 +90465,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerCondition", + "name": "ProjectManagerLabelCondition", "ofType": null }, "defaultValue": null @@ -92942,7 +90475,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerFilter", + "name": "ProjectManagerLabelFilter", "ofType": null }, "defaultValue": null @@ -92989,7 +90522,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManager`.", + "description": "The method to use when ordering `ProjectManagerLabel`.", "type": { "kind": "LIST", "name": null, @@ -92998,7 +90531,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagersOrderBy", + "name": "ProjectManagerLabelsOrderBy", "ofType": null } } @@ -93011,7 +90544,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectManagersConnection", + "name": "ProjectManagerLabelsConnection", "ofType": null } }, @@ -93026,12 +90559,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerCreatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectManager`.", + "name": "CifUserCifUsersByProjectManagerLabelUpdatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectManagerLabel`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectManager`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectManagerLabel`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -93044,7 +90577,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByProjectManagerLabelUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -93113,8 +90646,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerCreatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectManager`.", + "name": "CifUserCifUsersByProjectManagerLabelUpdatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectManagerLabel`.", "fields": [ { "name": "cursor", @@ -93141,8 +90674,8 @@ "deprecationReason": null }, { - "name": "projectManagersByArchivedBy", - "description": "Reads and enables pagination through a set of `ProjectManager`.", + "name": "projectManagerLabelsByArchivedBy", + "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", "args": [ { "name": "after", @@ -93169,7 +90702,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerCondition", + "name": "ProjectManagerLabelCondition", "ofType": null }, "defaultValue": null @@ -93179,7 +90712,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerFilter", + "name": "ProjectManagerLabelFilter", "ofType": null }, "defaultValue": null @@ -93226,7 +90759,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManager`.", + "description": "The method to use when ordering `ProjectManagerLabel`.", "type": { "kind": "LIST", "name": null, @@ -93235,7 +90768,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagersOrderBy", + "name": "ProjectManagerLabelsOrderBy", "ofType": null } } @@ -93248,7 +90781,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectManagersConnection", + "name": "ProjectManagerLabelsConnection", "ofType": null } }, @@ -93263,12 +90796,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerCreatedByAndCifUserIdManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectManager`.", + "name": "CifUserCifUsersByProjectManagerLabelUpdatedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectManagerLabel`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectManager`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectManagerLabel`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -93281,7 +90814,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerCreatedByAndCifUserIdManyToManyEdge", + "name": "CifUserCifUsersByProjectManagerLabelUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -93350,8 +90883,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerCreatedByAndCifUserIdManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectManager`.", + "name": "CifUserCifUsersByProjectManagerLabelUpdatedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectManagerLabel`.", "fields": [ { "name": "cursor", @@ -93378,8 +90911,8 @@ "deprecationReason": null }, { - "name": "projectManagersByCifUserId", - "description": "Reads and enables pagination through a set of `ProjectManager`.", + "name": "projectManagerLabelsByCreatedBy", + "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", "args": [ { "name": "after", @@ -93406,7 +90939,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerCondition", + "name": "ProjectManagerLabelCondition", "ofType": null }, "defaultValue": null @@ -93416,7 +90949,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerFilter", + "name": "ProjectManagerLabelFilter", "ofType": null }, "defaultValue": null @@ -93463,7 +90996,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManager`.", + "description": "The method to use when ordering `ProjectManagerLabel`.", "type": { "kind": "LIST", "name": null, @@ -93472,7 +91005,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagersOrderBy", + "name": "ProjectManagerLabelsOrderBy", "ofType": null } } @@ -93485,7 +91018,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectManagersConnection", + "name": "ProjectManagerLabelsConnection", "ofType": null } }, @@ -93500,7 +91033,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectManagerUpdatedByAndArchivedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `ProjectManager`.", "fields": [ { @@ -93518,7 +91051,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectManagerUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -93587,7 +91120,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectManagerUpdatedByAndArchivedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `ProjectManager`.", "fields": [ { @@ -93615,7 +91148,7 @@ "deprecationReason": null }, { - "name": "projectManagersByUpdatedBy", + "name": "projectManagersByArchivedBy", "description": "Reads and enables pagination through a set of `ProjectManager`.", "args": [ { @@ -93737,12 +91270,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerLabelArchivedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectManagerLabel`.", + "name": "CifUserCifUsersByProjectManagerUpdatedByAndCifUserIdManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectManager`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectManagerLabel`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectManager`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -93755,7 +91288,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerLabelArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectManagerUpdatedByAndCifUserIdManyToManyEdge", "ofType": null } } @@ -93824,8 +91357,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerLabelArchivedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectManagerLabel`.", + "name": "CifUserCifUsersByProjectManagerUpdatedByAndCifUserIdManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectManager`.", "fields": [ { "name": "cursor", @@ -93852,8 +91385,8 @@ "deprecationReason": null }, { - "name": "projectManagerLabelsByCreatedBy", - "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", + "name": "projectManagersByCifUserId", + "description": "Reads and enables pagination through a set of `ProjectManager`.", "args": [ { "name": "after", @@ -93880,7 +91413,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelCondition", + "name": "ProjectManagerCondition", "ofType": null }, "defaultValue": null @@ -93890,7 +91423,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelFilter", + "name": "ProjectManagerFilter", "ofType": null }, "defaultValue": null @@ -93937,7 +91470,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManagerLabel`.", + "description": "The method to use when ordering `ProjectManager`.", "type": { "kind": "LIST", "name": null, @@ -93946,7 +91479,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagerLabelsOrderBy", + "name": "ProjectManagersOrderBy", "ofType": null } } @@ -93959,7 +91492,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectManagerLabelsConnection", + "name": "ProjectManagersConnection", "ofType": null } }, @@ -93974,12 +91507,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerLabelArchivedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectManagerLabel`.", + "name": "CifUserCifUsersByProjectManagerUpdatedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectManager`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectManagerLabel`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectManager`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -93992,7 +91525,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerLabelArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectManagerUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -94061,8 +91594,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerLabelArchivedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectManagerLabel`.", + "name": "CifUserCifUsersByProjectManagerUpdatedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectManager`.", "fields": [ { "name": "cursor", @@ -94089,8 +91622,8 @@ "deprecationReason": null }, { - "name": "projectManagerLabelsByUpdatedBy", - "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", + "name": "projectManagersByCreatedBy", + "description": "Reads and enables pagination through a set of `ProjectManager`.", "args": [ { "name": "after", @@ -94117,7 +91650,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelCondition", + "name": "ProjectManagerCondition", "ofType": null }, "defaultValue": null @@ -94127,7 +91660,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelFilter", + "name": "ProjectManagerFilter", "ofType": null }, "defaultValue": null @@ -94174,7 +91707,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManagerLabel`.", + "description": "The method to use when ordering `ProjectManager`.", "type": { "kind": "LIST", "name": null, @@ -94183,7 +91716,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagerLabelsOrderBy", + "name": "ProjectManagersOrderBy", "ofType": null } } @@ -94196,7 +91729,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectManagerLabelsConnection", + "name": "ProjectManagersConnection", "ofType": null } }, @@ -94211,12 +91744,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerLabelCreatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectManagerLabel`.", + "name": "CifUserCifUsersByProjectRevisionAmendmentTypeArchivedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectRevisionAmendmentType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectManagerLabel`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectRevisionAmendmentType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -94229,7 +91762,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerLabelCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByProjectRevisionAmendmentTypeArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -94298,8 +91831,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerLabelCreatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectManagerLabel`.", + "name": "CifUserCifUsersByProjectRevisionAmendmentTypeArchivedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectRevisionAmendmentType`.", "fields": [ { "name": "cursor", @@ -94326,8 +91859,8 @@ "deprecationReason": null }, { - "name": "projectManagerLabelsByArchivedBy", - "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", + "name": "projectRevisionAmendmentTypesByCreatedBy", + "description": "Reads and enables pagination through a set of `ProjectRevisionAmendmentType`.", "args": [ { "name": "after", @@ -94354,7 +91887,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelCondition", + "name": "ProjectRevisionAmendmentTypeCondition", "ofType": null }, "defaultValue": null @@ -94364,7 +91897,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelFilter", + "name": "ProjectRevisionAmendmentTypeFilter", "ofType": null }, "defaultValue": null @@ -94411,7 +91944,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManagerLabel`.", + "description": "The method to use when ordering `ProjectRevisionAmendmentType`.", "type": { "kind": "LIST", "name": null, @@ -94420,7 +91953,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagerLabelsOrderBy", + "name": "ProjectRevisionAmendmentTypesOrderBy", "ofType": null } } @@ -94433,7 +91966,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectManagerLabelsConnection", + "name": "ProjectRevisionAmendmentTypesConnection", "ofType": null } }, @@ -94448,12 +91981,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerLabelCreatedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectManagerLabel`.", + "name": "CifUserCifUsersByProjectRevisionAmendmentTypeArchivedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectRevisionAmendmentType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectManagerLabel`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectRevisionAmendmentType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -94466,7 +91999,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerLabelCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectRevisionAmendmentTypeArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -94535,8 +92068,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerLabelCreatedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectManagerLabel`.", + "name": "CifUserCifUsersByProjectRevisionAmendmentTypeArchivedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectRevisionAmendmentType`.", "fields": [ { "name": "cursor", @@ -94563,8 +92096,8 @@ "deprecationReason": null }, { - "name": "projectManagerLabelsByUpdatedBy", - "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", + "name": "projectRevisionAmendmentTypesByUpdatedBy", + "description": "Reads and enables pagination through a set of `ProjectRevisionAmendmentType`.", "args": [ { "name": "after", @@ -94591,7 +92124,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelCondition", + "name": "ProjectRevisionAmendmentTypeCondition", "ofType": null }, "defaultValue": null @@ -94601,7 +92134,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelFilter", + "name": "ProjectRevisionAmendmentTypeFilter", "ofType": null }, "defaultValue": null @@ -94648,7 +92181,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManagerLabel`.", + "description": "The method to use when ordering `ProjectRevisionAmendmentType`.", "type": { "kind": "LIST", "name": null, @@ -94657,7 +92190,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagerLabelsOrderBy", + "name": "ProjectRevisionAmendmentTypesOrderBy", "ofType": null } } @@ -94670,7 +92203,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectManagerLabelsConnection", + "name": "ProjectRevisionAmendmentTypesConnection", "ofType": null } }, @@ -94685,12 +92218,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerLabelUpdatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectManagerLabel`.", + "name": "CifUserCifUsersByProjectRevisionAmendmentTypeCreatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectRevisionAmendmentType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectManagerLabel`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectRevisionAmendmentType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -94703,7 +92236,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerLabelUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByProjectRevisionAmendmentTypeCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -94772,8 +92305,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerLabelUpdatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectManagerLabel`.", + "name": "CifUserCifUsersByProjectRevisionAmendmentTypeCreatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectRevisionAmendmentType`.", "fields": [ { "name": "cursor", @@ -94800,8 +92333,8 @@ "deprecationReason": null }, { - "name": "projectManagerLabelsByArchivedBy", - "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", + "name": "projectRevisionAmendmentTypesByArchivedBy", + "description": "Reads and enables pagination through a set of `ProjectRevisionAmendmentType`.", "args": [ { "name": "after", @@ -94828,7 +92361,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelCondition", + "name": "ProjectRevisionAmendmentTypeCondition", "ofType": null }, "defaultValue": null @@ -94838,7 +92371,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelFilter", + "name": "ProjectRevisionAmendmentTypeFilter", "ofType": null }, "defaultValue": null @@ -94885,7 +92418,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManagerLabel`.", + "description": "The method to use when ordering `ProjectRevisionAmendmentType`.", "type": { "kind": "LIST", "name": null, @@ -94894,7 +92427,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagerLabelsOrderBy", + "name": "ProjectRevisionAmendmentTypesOrderBy", "ofType": null } } @@ -94907,7 +92440,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectManagerLabelsConnection", + "name": "ProjectRevisionAmendmentTypesConnection", "ofType": null } }, @@ -94922,12 +92455,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerLabelUpdatedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectManagerLabel`.", + "name": "CifUserCifUsersByProjectRevisionAmendmentTypeCreatedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectRevisionAmendmentType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectManagerLabel`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectRevisionAmendmentType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -94940,7 +92473,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerLabelUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectRevisionAmendmentTypeCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -95009,8 +92542,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerLabelUpdatedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectManagerLabel`.", + "name": "CifUserCifUsersByProjectRevisionAmendmentTypeCreatedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectRevisionAmendmentType`.", "fields": [ { "name": "cursor", @@ -95037,8 +92570,8 @@ "deprecationReason": null }, { - "name": "projectManagerLabelsByCreatedBy", - "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", + "name": "projectRevisionAmendmentTypesByUpdatedBy", + "description": "Reads and enables pagination through a set of `ProjectRevisionAmendmentType`.", "args": [ { "name": "after", @@ -95065,7 +92598,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelCondition", + "name": "ProjectRevisionAmendmentTypeCondition", "ofType": null }, "defaultValue": null @@ -95075,7 +92608,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelFilter", + "name": "ProjectRevisionAmendmentTypeFilter", "ofType": null }, "defaultValue": null @@ -95122,7 +92655,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManagerLabel`.", + "description": "The method to use when ordering `ProjectRevisionAmendmentType`.", "type": { "kind": "LIST", "name": null, @@ -95131,7 +92664,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagerLabelsOrderBy", + "name": "ProjectRevisionAmendmentTypesOrderBy", "ofType": null } } @@ -95144,7 +92677,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectManagerLabelsConnection", + "name": "ProjectRevisionAmendmentTypesConnection", "ofType": null } }, @@ -95159,12 +92692,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerUpdatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectManager`.", + "name": "CifUserCifUsersByProjectRevisionAmendmentTypeUpdatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectRevisionAmendmentType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectManager`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectRevisionAmendmentType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -95177,7 +92710,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByProjectRevisionAmendmentTypeUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -95246,8 +92779,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerUpdatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectManager`.", + "name": "CifUserCifUsersByProjectRevisionAmendmentTypeUpdatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectRevisionAmendmentType`.", "fields": [ { "name": "cursor", @@ -95274,8 +92807,8 @@ "deprecationReason": null }, { - "name": "projectManagersByArchivedBy", - "description": "Reads and enables pagination through a set of `ProjectManager`.", + "name": "projectRevisionAmendmentTypesByArchivedBy", + "description": "Reads and enables pagination through a set of `ProjectRevisionAmendmentType`.", "args": [ { "name": "after", @@ -95302,7 +92835,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerCondition", + "name": "ProjectRevisionAmendmentTypeCondition", "ofType": null }, "defaultValue": null @@ -95312,7 +92845,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerFilter", + "name": "ProjectRevisionAmendmentTypeFilter", "ofType": null }, "defaultValue": null @@ -95359,7 +92892,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManager`.", + "description": "The method to use when ordering `ProjectRevisionAmendmentType`.", "type": { "kind": "LIST", "name": null, @@ -95368,7 +92901,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagersOrderBy", + "name": "ProjectRevisionAmendmentTypesOrderBy", "ofType": null } } @@ -95381,7 +92914,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectManagersConnection", + "name": "ProjectRevisionAmendmentTypesConnection", "ofType": null } }, @@ -95396,12 +92929,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerUpdatedByAndCifUserIdManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectManager`.", + "name": "CifUserCifUsersByProjectRevisionAmendmentTypeUpdatedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectRevisionAmendmentType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectManager`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectRevisionAmendmentType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -95414,7 +92947,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerUpdatedByAndCifUserIdManyToManyEdge", + "name": "CifUserCifUsersByProjectRevisionAmendmentTypeUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -95483,8 +93016,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerUpdatedByAndCifUserIdManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectManager`.", + "name": "CifUserCifUsersByProjectRevisionAmendmentTypeUpdatedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectRevisionAmendmentType`.", "fields": [ { "name": "cursor", @@ -95511,8 +93044,8 @@ "deprecationReason": null }, { - "name": "projectManagersByCifUserId", - "description": "Reads and enables pagination through a set of `ProjectManager`.", + "name": "projectRevisionAmendmentTypesByCreatedBy", + "description": "Reads and enables pagination through a set of `ProjectRevisionAmendmentType`.", "args": [ { "name": "after", @@ -95539,7 +93072,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerCondition", + "name": "ProjectRevisionAmendmentTypeCondition", "ofType": null }, "defaultValue": null @@ -95549,7 +93082,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerFilter", + "name": "ProjectRevisionAmendmentTypeFilter", "ofType": null }, "defaultValue": null @@ -95596,7 +93129,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManager`.", + "description": "The method to use when ordering `ProjectRevisionAmendmentType`.", "type": { "kind": "LIST", "name": null, @@ -95605,7 +93138,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagersOrderBy", + "name": "ProjectRevisionAmendmentTypesOrderBy", "ofType": null } } @@ -95618,7 +93151,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectManagersConnection", + "name": "ProjectRevisionAmendmentTypesConnection", "ofType": null } }, @@ -95633,12 +93166,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerUpdatedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectManager`.", + "name": "CifUserCifUsersByProjectRevisionCreatedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectRevision`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectManager`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectRevision`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -95651,7 +93184,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectRevisionCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -95720,8 +93253,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerUpdatedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectManager`.", + "name": "CifUserCifUsersByProjectRevisionCreatedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectRevision`.", "fields": [ { "name": "cursor", @@ -95748,8 +93281,8 @@ "deprecationReason": null }, { - "name": "projectManagersByCreatedBy", - "description": "Reads and enables pagination through a set of `ProjectManager`.", + "name": "projectRevisionsByUpdatedBy", + "description": "Reads and enables pagination through a set of `ProjectRevision`.", "args": [ { "name": "after", @@ -95776,7 +93309,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerCondition", + "name": "ProjectRevisionCondition", "ofType": null }, "defaultValue": null @@ -95786,7 +93319,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerFilter", + "name": "ProjectRevisionFilter", "ofType": null }, "defaultValue": null @@ -95801,16 +93334,6 @@ }, "defaultValue": null }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -95833,7 +93356,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManager`.", + "description": "The method to use when ordering `ProjectRevision`.", "type": { "kind": "LIST", "name": null, @@ -95842,7 +93365,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagersOrderBy", + "name": "ProjectRevisionsOrderBy", "ofType": null } } @@ -95855,7 +93378,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectManagersConnection", + "name": "ProjectRevisionsConnection", "ofType": null } }, @@ -95870,12 +93393,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionAmendmentTypeArchivedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectRevisionAmendmentType`.", + "name": "CifUserCifUsersByProjectRevisionUpdatedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectRevision`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectRevisionAmendmentType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectRevision`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -95888,7 +93411,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionAmendmentTypeArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectRevisionUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -95957,8 +93480,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionAmendmentTypeArchivedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectRevisionAmendmentType`.", + "name": "CifUserCifUsersByProjectRevisionUpdatedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectRevision`.", "fields": [ { "name": "cursor", @@ -95985,8 +93508,8 @@ "deprecationReason": null }, { - "name": "projectRevisionAmendmentTypesByCreatedBy", - "description": "Reads and enables pagination through a set of `ProjectRevisionAmendmentType`.", + "name": "projectRevisionsByCreatedBy", + "description": "Reads and enables pagination through a set of `ProjectRevision`.", "args": [ { "name": "after", @@ -96013,7 +93536,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionAmendmentTypeCondition", + "name": "ProjectRevisionCondition", "ofType": null }, "defaultValue": null @@ -96023,7 +93546,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionAmendmentTypeFilter", + "name": "ProjectRevisionFilter", "ofType": null }, "defaultValue": null @@ -96038,16 +93561,6 @@ }, "defaultValue": null }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -96070,7 +93583,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectRevisionAmendmentType`.", + "description": "The method to use when ordering `ProjectRevision`.", "type": { "kind": "LIST", "name": null, @@ -96079,7 +93592,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectRevisionAmendmentTypesOrderBy", + "name": "ProjectRevisionsOrderBy", "ofType": null } } @@ -96092,7 +93605,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectRevisionAmendmentTypesConnection", + "name": "ProjectRevisionsConnection", "ofType": null } }, @@ -96107,12 +93620,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionAmendmentTypeArchivedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectRevisionAmendmentType`.", + "name": "CifUserCifUsersByProjectStatusArchivedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectStatus`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectRevisionAmendmentType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectStatus`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -96125,7 +93638,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionAmendmentTypeArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectStatusArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -96194,8 +93707,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionAmendmentTypeArchivedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectRevisionAmendmentType`.", + "name": "CifUserCifUsersByProjectStatusArchivedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectStatus`.", "fields": [ { "name": "cursor", @@ -96222,8 +93735,8 @@ "deprecationReason": null }, { - "name": "projectRevisionAmendmentTypesByUpdatedBy", - "description": "Reads and enables pagination through a set of `ProjectRevisionAmendmentType`.", + "name": "projectStatusesByCreatedBy", + "description": "Reads and enables pagination through a set of `ProjectStatus`.", "args": [ { "name": "after", @@ -96250,7 +93763,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionAmendmentTypeCondition", + "name": "ProjectStatusCondition", "ofType": null }, "defaultValue": null @@ -96260,7 +93773,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionAmendmentTypeFilter", + "name": "ProjectStatusFilter", "ofType": null }, "defaultValue": null @@ -96307,7 +93820,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectRevisionAmendmentType`.", + "description": "The method to use when ordering `ProjectStatus`.", "type": { "kind": "LIST", "name": null, @@ -96316,7 +93829,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectRevisionAmendmentTypesOrderBy", + "name": "ProjectStatusesOrderBy", "ofType": null } } @@ -96329,7 +93842,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectRevisionAmendmentTypesConnection", + "name": "ProjectStatusesConnection", "ofType": null } }, @@ -96344,12 +93857,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionAmendmentTypeCreatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectRevisionAmendmentType`.", + "name": "CifUserCifUsersByProjectStatusArchivedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectStatus`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectRevisionAmendmentType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectStatus`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -96362,7 +93875,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionAmendmentTypeCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByProjectStatusArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -96431,8 +93944,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionAmendmentTypeCreatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectRevisionAmendmentType`.", + "name": "CifUserCifUsersByProjectStatusArchivedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectStatus`.", "fields": [ { "name": "cursor", @@ -96459,8 +93972,8 @@ "deprecationReason": null }, { - "name": "projectRevisionAmendmentTypesByArchivedBy", - "description": "Reads and enables pagination through a set of `ProjectRevisionAmendmentType`.", + "name": "projectStatusesByUpdatedBy", + "description": "Reads and enables pagination through a set of `ProjectStatus`.", "args": [ { "name": "after", @@ -96487,7 +94000,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionAmendmentTypeCondition", + "name": "ProjectStatusCondition", "ofType": null }, "defaultValue": null @@ -96497,7 +94010,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionAmendmentTypeFilter", + "name": "ProjectStatusFilter", "ofType": null }, "defaultValue": null @@ -96544,7 +94057,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectRevisionAmendmentType`.", + "description": "The method to use when ordering `ProjectStatus`.", "type": { "kind": "LIST", "name": null, @@ -96553,7 +94066,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectRevisionAmendmentTypesOrderBy", + "name": "ProjectStatusesOrderBy", "ofType": null } } @@ -96566,7 +94079,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectRevisionAmendmentTypesConnection", + "name": "ProjectStatusesConnection", "ofType": null } }, @@ -96581,12 +94094,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionAmendmentTypeCreatedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectRevisionAmendmentType`.", + "name": "CifUserCifUsersByProjectStatusCreatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectStatus`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectRevisionAmendmentType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectStatus`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -96599,7 +94112,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionAmendmentTypeCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectStatusCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -96668,8 +94181,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionAmendmentTypeCreatedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectRevisionAmendmentType`.", + "name": "CifUserCifUsersByProjectStatusCreatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectStatus`.", "fields": [ { "name": "cursor", @@ -96696,8 +94209,8 @@ "deprecationReason": null }, { - "name": "projectRevisionAmendmentTypesByUpdatedBy", - "description": "Reads and enables pagination through a set of `ProjectRevisionAmendmentType`.", + "name": "projectStatusesByArchivedBy", + "description": "Reads and enables pagination through a set of `ProjectStatus`.", "args": [ { "name": "after", @@ -96724,7 +94237,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionAmendmentTypeCondition", + "name": "ProjectStatusCondition", "ofType": null }, "defaultValue": null @@ -96734,7 +94247,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionAmendmentTypeFilter", + "name": "ProjectStatusFilter", "ofType": null }, "defaultValue": null @@ -96781,7 +94294,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectRevisionAmendmentType`.", + "description": "The method to use when ordering `ProjectStatus`.", "type": { "kind": "LIST", "name": null, @@ -96790,7 +94303,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectRevisionAmendmentTypesOrderBy", + "name": "ProjectStatusesOrderBy", "ofType": null } } @@ -96803,7 +94316,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectRevisionAmendmentTypesConnection", + "name": "ProjectStatusesConnection", "ofType": null } }, @@ -96818,12 +94331,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionAmendmentTypeUpdatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectRevisionAmendmentType`.", + "name": "CifUserCifUsersByProjectStatusCreatedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectStatus`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectRevisionAmendmentType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectStatus`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -96836,7 +94349,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionAmendmentTypeUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByProjectStatusCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -96905,8 +94418,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionAmendmentTypeUpdatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectRevisionAmendmentType`.", + "name": "CifUserCifUsersByProjectStatusCreatedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectStatus`.", "fields": [ { "name": "cursor", @@ -96933,8 +94446,8 @@ "deprecationReason": null }, { - "name": "projectRevisionAmendmentTypesByArchivedBy", - "description": "Reads and enables pagination through a set of `ProjectRevisionAmendmentType`.", + "name": "projectStatusesByUpdatedBy", + "description": "Reads and enables pagination through a set of `ProjectStatus`.", "args": [ { "name": "after", @@ -96961,7 +94474,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionAmendmentTypeCondition", + "name": "ProjectStatusCondition", "ofType": null }, "defaultValue": null @@ -96971,7 +94484,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionAmendmentTypeFilter", + "name": "ProjectStatusFilter", "ofType": null }, "defaultValue": null @@ -97018,7 +94531,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectRevisionAmendmentType`.", + "description": "The method to use when ordering `ProjectStatus`.", "type": { "kind": "LIST", "name": null, @@ -97027,7 +94540,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectRevisionAmendmentTypesOrderBy", + "name": "ProjectStatusesOrderBy", "ofType": null } } @@ -97040,7 +94553,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectRevisionAmendmentTypesConnection", + "name": "ProjectStatusesConnection", "ofType": null } }, @@ -97055,12 +94568,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionAmendmentTypeUpdatedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectRevisionAmendmentType`.", + "name": "CifUserCifUsersByProjectStatusUpdatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectStatus`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectRevisionAmendmentType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectStatus`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -97073,7 +94586,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionAmendmentTypeUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectStatusUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -97142,8 +94655,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionAmendmentTypeUpdatedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectRevisionAmendmentType`.", + "name": "CifUserCifUsersByProjectStatusUpdatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectStatus`.", "fields": [ { "name": "cursor", @@ -97170,8 +94683,8 @@ "deprecationReason": null }, { - "name": "projectRevisionAmendmentTypesByCreatedBy", - "description": "Reads and enables pagination through a set of `ProjectRevisionAmendmentType`.", + "name": "projectStatusesByArchivedBy", + "description": "Reads and enables pagination through a set of `ProjectStatus`.", "args": [ { "name": "after", @@ -97198,7 +94711,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionAmendmentTypeCondition", + "name": "ProjectStatusCondition", "ofType": null }, "defaultValue": null @@ -97208,7 +94721,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionAmendmentTypeFilter", + "name": "ProjectStatusFilter", "ofType": null }, "defaultValue": null @@ -97255,7 +94768,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectRevisionAmendmentType`.", + "description": "The method to use when ordering `ProjectStatus`.", "type": { "kind": "LIST", "name": null, @@ -97264,7 +94777,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectRevisionAmendmentTypesOrderBy", + "name": "ProjectStatusesOrderBy", "ofType": null } } @@ -97277,7 +94790,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectRevisionAmendmentTypesConnection", + "name": "ProjectStatusesConnection", "ofType": null } }, @@ -97292,12 +94805,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionCreatedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectRevision`.", + "name": "CifUserCifUsersByProjectStatusUpdatedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectStatus`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectRevision`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectStatus`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -97310,7 +94823,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectStatusUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -97379,8 +94892,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionCreatedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectRevision`.", + "name": "CifUserCifUsersByProjectStatusUpdatedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectStatus`.", "fields": [ { "name": "cursor", @@ -97407,8 +94920,8 @@ "deprecationReason": null }, { - "name": "projectRevisionsByUpdatedBy", - "description": "Reads and enables pagination through a set of `ProjectRevision`.", + "name": "projectStatusesByCreatedBy", + "description": "Reads and enables pagination through a set of `ProjectStatus`.", "args": [ { "name": "after", @@ -97435,7 +94948,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionCondition", + "name": "ProjectStatusCondition", "ofType": null }, "defaultValue": null @@ -97445,7 +94958,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionFilter", + "name": "ProjectStatusFilter", "ofType": null }, "defaultValue": null @@ -97460,6 +94973,16 @@ }, "defaultValue": null }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -97482,7 +95005,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectRevision`.", + "description": "The method to use when ordering `ProjectStatus`.", "type": { "kind": "LIST", "name": null, @@ -97491,7 +95014,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectRevisionsOrderBy", + "name": "ProjectStatusesOrderBy", "ofType": null } } @@ -97504,7 +95027,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectRevisionsConnection", + "name": "ProjectStatusesConnection", "ofType": null } }, @@ -97519,12 +95042,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionUpdatedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectRevision`.", + "name": "CifUserCifUsersByProjectTypeArchivedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectRevision`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -97537,7 +95060,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectTypeArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -97606,8 +95129,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionUpdatedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectRevision`.", + "name": "CifUserCifUsersByProjectTypeArchivedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectType`.", "fields": [ { "name": "cursor", @@ -97634,8 +95157,8 @@ "deprecationReason": null }, { - "name": "projectRevisionsByCreatedBy", - "description": "Reads and enables pagination through a set of `ProjectRevision`.", + "name": "projectTypesByCreatedBy", + "description": "Reads and enables pagination through a set of `ProjectType`.", "args": [ { "name": "after", @@ -97662,7 +95185,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionCondition", + "name": "ProjectTypeCondition", "ofType": null }, "defaultValue": null @@ -97672,7 +95195,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionFilter", + "name": "ProjectTypeFilter", "ofType": null }, "defaultValue": null @@ -97687,6 +95210,16 @@ }, "defaultValue": null }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -97709,7 +95242,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectRevision`.", + "description": "The method to use when ordering `ProjectType`.", "type": { "kind": "LIST", "name": null, @@ -97718,7 +95251,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectRevisionsOrderBy", + "name": "ProjectTypesOrderBy", "ofType": null } } @@ -97731,7 +95264,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectRevisionsConnection", + "name": "ProjectTypesConnection", "ofType": null } }, @@ -97746,12 +95279,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectStatusArchivedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectStatus`.", + "name": "CifUserCifUsersByProjectTypeArchivedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectStatus`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -97764,7 +95297,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectStatusArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectTypeArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -97833,8 +95366,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectStatusArchivedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectStatus`.", + "name": "CifUserCifUsersByProjectTypeArchivedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectType`.", "fields": [ { "name": "cursor", @@ -97861,8 +95394,8 @@ "deprecationReason": null }, { - "name": "projectStatusesByCreatedBy", - "description": "Reads and enables pagination through a set of `ProjectStatus`.", + "name": "projectTypesByUpdatedBy", + "description": "Reads and enables pagination through a set of `ProjectType`.", "args": [ { "name": "after", @@ -97889,7 +95422,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusCondition", + "name": "ProjectTypeCondition", "ofType": null }, "defaultValue": null @@ -97899,7 +95432,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusFilter", + "name": "ProjectTypeFilter", "ofType": null }, "defaultValue": null @@ -97946,7 +95479,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectStatus`.", + "description": "The method to use when ordering `ProjectType`.", "type": { "kind": "LIST", "name": null, @@ -97955,7 +95488,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectStatusesOrderBy", + "name": "ProjectTypesOrderBy", "ofType": null } } @@ -97968,7 +95501,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectStatusesConnection", + "name": "ProjectTypesConnection", "ofType": null } }, @@ -97983,12 +95516,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectStatusArchivedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectStatus`.", + "name": "CifUserCifUsersByProjectTypeCreatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectStatus`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -98001,7 +95534,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectStatusArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectTypeCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -98070,8 +95603,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectStatusArchivedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectStatus`.", + "name": "CifUserCifUsersByProjectTypeCreatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectType`.", "fields": [ { "name": "cursor", @@ -98098,8 +95631,8 @@ "deprecationReason": null }, { - "name": "projectStatusesByUpdatedBy", - "description": "Reads and enables pagination through a set of `ProjectStatus`.", + "name": "projectTypesByArchivedBy", + "description": "Reads and enables pagination through a set of `ProjectType`.", "args": [ { "name": "after", @@ -98126,7 +95659,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusCondition", + "name": "ProjectTypeCondition", "ofType": null }, "defaultValue": null @@ -98136,7 +95669,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusFilter", + "name": "ProjectTypeFilter", "ofType": null }, "defaultValue": null @@ -98183,7 +95716,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectStatus`.", + "description": "The method to use when ordering `ProjectType`.", "type": { "kind": "LIST", "name": null, @@ -98192,7 +95725,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectStatusesOrderBy", + "name": "ProjectTypesOrderBy", "ofType": null } } @@ -98205,7 +95738,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectStatusesConnection", + "name": "ProjectTypesConnection", "ofType": null } }, @@ -98220,12 +95753,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectStatusCreatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectStatus`.", + "name": "CifUserCifUsersByProjectTypeCreatedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectStatus`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -98238,7 +95771,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectStatusCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByProjectTypeCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -98307,8 +95840,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectStatusCreatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectStatus`.", + "name": "CifUserCifUsersByProjectTypeCreatedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectType`.", "fields": [ { "name": "cursor", @@ -98335,8 +95868,8 @@ "deprecationReason": null }, { - "name": "projectStatusesByArchivedBy", - "description": "Reads and enables pagination through a set of `ProjectStatus`.", + "name": "projectTypesByUpdatedBy", + "description": "Reads and enables pagination through a set of `ProjectType`.", "args": [ { "name": "after", @@ -98363,7 +95896,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusCondition", + "name": "ProjectTypeCondition", "ofType": null }, "defaultValue": null @@ -98373,7 +95906,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusFilter", + "name": "ProjectTypeFilter", "ofType": null }, "defaultValue": null @@ -98420,7 +95953,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectStatus`.", + "description": "The method to use when ordering `ProjectType`.", "type": { "kind": "LIST", "name": null, @@ -98429,7 +95962,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectStatusesOrderBy", + "name": "ProjectTypesOrderBy", "ofType": null } } @@ -98442,7 +95975,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectStatusesConnection", + "name": "ProjectTypesConnection", "ofType": null } }, @@ -98457,12 +95990,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectStatusCreatedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectStatus`.", + "name": "CifUserCifUsersByProjectTypeUpdatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectStatus`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -98475,7 +96008,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectStatusCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectTypeUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -98544,8 +96077,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectStatusCreatedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectStatus`.", + "name": "CifUserCifUsersByProjectTypeUpdatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectType`.", "fields": [ { "name": "cursor", @@ -98572,8 +96105,8 @@ "deprecationReason": null }, { - "name": "projectStatusesByUpdatedBy", - "description": "Reads and enables pagination through a set of `ProjectStatus`.", + "name": "projectTypesByArchivedBy", + "description": "Reads and enables pagination through a set of `ProjectType`.", "args": [ { "name": "after", @@ -98600,7 +96133,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusCondition", + "name": "ProjectTypeCondition", "ofType": null }, "defaultValue": null @@ -98610,7 +96143,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusFilter", + "name": "ProjectTypeFilter", "ofType": null }, "defaultValue": null @@ -98657,7 +96190,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectStatus`.", + "description": "The method to use when ordering `ProjectType`.", "type": { "kind": "LIST", "name": null, @@ -98666,7 +96199,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectStatusesOrderBy", + "name": "ProjectTypesOrderBy", "ofType": null } } @@ -98679,7 +96212,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectStatusesConnection", + "name": "ProjectTypesConnection", "ofType": null } }, @@ -98694,12 +96227,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectStatusUpdatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectStatus`.", + "name": "CifUserCifUsersByProjectTypeUpdatedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectStatus`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -98712,7 +96245,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectStatusUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByProjectTypeUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -98781,8 +96314,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectStatusUpdatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectStatus`.", + "name": "CifUserCifUsersByProjectTypeUpdatedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectType`.", "fields": [ { "name": "cursor", @@ -98809,8 +96342,8 @@ "deprecationReason": null }, { - "name": "projectStatusesByArchivedBy", - "description": "Reads and enables pagination through a set of `ProjectStatus`.", + "name": "projectTypesByCreatedBy", + "description": "Reads and enables pagination through a set of `ProjectType`.", "args": [ { "name": "after", @@ -98837,7 +96370,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusCondition", + "name": "ProjectTypeCondition", "ofType": null }, "defaultValue": null @@ -98847,7 +96380,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusFilter", + "name": "ProjectTypeFilter", "ofType": null }, "defaultValue": null @@ -98894,7 +96427,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectStatus`.", + "description": "The method to use when ordering `ProjectType`.", "type": { "kind": "LIST", "name": null, @@ -98903,7 +96436,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectStatusesOrderBy", + "name": "ProjectTypesOrderBy", "ofType": null } } @@ -98916,7 +96449,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectStatusesConnection", + "name": "ProjectTypesConnection", "ofType": null } }, @@ -98931,12 +96464,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectStatusUpdatedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectStatus`.", + "name": "CifUserCifUsersByProjectUpdatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Project`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectStatus`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `Project`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -98949,7 +96482,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectStatusUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -99018,8 +96551,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectStatusUpdatedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectStatus`.", + "name": "CifUserCifUsersByProjectUpdatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `Project`.", "fields": [ { "name": "cursor", @@ -99046,8 +96579,8 @@ "deprecationReason": null }, { - "name": "projectStatusesByCreatedBy", - "description": "Reads and enables pagination through a set of `ProjectStatus`.", + "name": "projectsByArchivedBy", + "description": "Reads and enables pagination through a set of `Project`.", "args": [ { "name": "after", @@ -99074,7 +96607,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusCondition", + "name": "ProjectCondition", "ofType": null }, "defaultValue": null @@ -99084,7 +96617,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusFilter", + "name": "ProjectFilter", "ofType": null }, "defaultValue": null @@ -99131,7 +96664,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectStatus`.", + "description": "The method to use when ordering `Project`.", "type": { "kind": "LIST", "name": null, @@ -99140,7 +96673,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectStatusesOrderBy", + "name": "ProjectsOrderBy", "ofType": null } } @@ -99153,7 +96686,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectStatusesConnection", + "name": "ProjectsConnection", "ofType": null } }, @@ -99168,12 +96701,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectTypeArchivedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectType`.", + "name": "CifUserCifUsersByProjectUpdatedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Project`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `Project`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -99186,7 +96719,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectTypeArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -99255,8 +96788,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectTypeArchivedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectType`.", + "name": "CifUserCifUsersByProjectUpdatedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `Project`.", "fields": [ { "name": "cursor", @@ -99283,8 +96816,8 @@ "deprecationReason": null }, { - "name": "projectTypesByCreatedBy", - "description": "Reads and enables pagination through a set of `ProjectType`.", + "name": "projectsByCreatedBy", + "description": "Reads and enables pagination through a set of `Project`.", "args": [ { "name": "after", @@ -99311,7 +96844,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTypeCondition", + "name": "ProjectCondition", "ofType": null }, "defaultValue": null @@ -99321,7 +96854,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTypeFilter", + "name": "ProjectFilter", "ofType": null }, "defaultValue": null @@ -99368,7 +96901,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectType`.", + "description": "The method to use when ordering `Project`.", "type": { "kind": "LIST", "name": null, @@ -99377,7 +96910,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectTypesOrderBy", + "name": "ProjectsOrderBy", "ofType": null } } @@ -99390,7 +96923,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectTypesConnection", + "name": "ProjectsConnection", "ofType": null } }, @@ -99405,12 +96938,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectTypeArchivedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectType`.", + "name": "CifUserCifUsersByReportTypeArchivedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ReportType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ReportType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -99423,7 +96956,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectTypeArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByReportTypeArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -99492,8 +97025,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectTypeArchivedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectType`.", + "name": "CifUserCifUsersByReportTypeArchivedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ReportType`.", "fields": [ { "name": "cursor", @@ -99520,8 +97053,8 @@ "deprecationReason": null }, { - "name": "projectTypesByUpdatedBy", - "description": "Reads and enables pagination through a set of `ProjectType`.", + "name": "reportTypesByCreatedBy", + "description": "Reads and enables pagination through a set of `ReportType`.", "args": [ { "name": "after", @@ -99548,7 +97081,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTypeCondition", + "name": "ReportTypeCondition", "ofType": null }, "defaultValue": null @@ -99558,7 +97091,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTypeFilter", + "name": "ReportTypeFilter", "ofType": null }, "defaultValue": null @@ -99605,7 +97138,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectType`.", + "description": "The method to use when ordering `ReportType`.", "type": { "kind": "LIST", "name": null, @@ -99614,7 +97147,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectTypesOrderBy", + "name": "ReportTypesOrderBy", "ofType": null } } @@ -99627,7 +97160,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectTypesConnection", + "name": "ReportTypesConnection", "ofType": null } }, @@ -99642,12 +97175,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectTypeCreatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectType`.", + "name": "CifUserCifUsersByReportTypeArchivedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ReportType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ReportType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -99660,7 +97193,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectTypeCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByReportTypeArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -99729,8 +97262,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectTypeCreatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectType`.", + "name": "CifUserCifUsersByReportTypeArchivedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ReportType`.", "fields": [ { "name": "cursor", @@ -99757,8 +97290,8 @@ "deprecationReason": null }, { - "name": "projectTypesByArchivedBy", - "description": "Reads and enables pagination through a set of `ProjectType`.", + "name": "reportTypesByUpdatedBy", + "description": "Reads and enables pagination through a set of `ReportType`.", "args": [ { "name": "after", @@ -99785,7 +97318,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTypeCondition", + "name": "ReportTypeCondition", "ofType": null }, "defaultValue": null @@ -99795,7 +97328,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTypeFilter", + "name": "ReportTypeFilter", "ofType": null }, "defaultValue": null @@ -99842,7 +97375,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectType`.", + "description": "The method to use when ordering `ReportType`.", "type": { "kind": "LIST", "name": null, @@ -99851,7 +97384,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectTypesOrderBy", + "name": "ReportTypesOrderBy", "ofType": null } } @@ -99864,7 +97397,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectTypesConnection", + "name": "ReportTypesConnection", "ofType": null } }, @@ -99879,12 +97412,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectTypeCreatedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectType`.", + "name": "CifUserCifUsersByReportTypeCreatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ReportType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ReportType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -99897,7 +97430,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectTypeCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByReportTypeCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -99966,8 +97499,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectTypeCreatedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectType`.", + "name": "CifUserCifUsersByReportTypeCreatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ReportType`.", "fields": [ { "name": "cursor", @@ -99994,8 +97527,8 @@ "deprecationReason": null }, { - "name": "projectTypesByUpdatedBy", - "description": "Reads and enables pagination through a set of `ProjectType`.", + "name": "reportTypesByArchivedBy", + "description": "Reads and enables pagination through a set of `ReportType`.", "args": [ { "name": "after", @@ -100022,7 +97555,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTypeCondition", + "name": "ReportTypeCondition", "ofType": null }, "defaultValue": null @@ -100032,7 +97565,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTypeFilter", + "name": "ReportTypeFilter", "ofType": null }, "defaultValue": null @@ -100079,7 +97612,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectType`.", + "description": "The method to use when ordering `ReportType`.", "type": { "kind": "LIST", "name": null, @@ -100088,7 +97621,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectTypesOrderBy", + "name": "ReportTypesOrderBy", "ofType": null } } @@ -100101,7 +97634,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectTypesConnection", + "name": "ReportTypesConnection", "ofType": null } }, @@ -100116,12 +97649,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectTypeUpdatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectType`.", + "name": "CifUserCifUsersByReportTypeCreatedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ReportType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ReportType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -100134,7 +97667,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectTypeUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByReportTypeCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -100203,8 +97736,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectTypeUpdatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectType`.", + "name": "CifUserCifUsersByReportTypeCreatedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ReportType`.", "fields": [ { "name": "cursor", @@ -100231,8 +97764,8 @@ "deprecationReason": null }, { - "name": "projectTypesByArchivedBy", - "description": "Reads and enables pagination through a set of `ProjectType`.", + "name": "reportTypesByUpdatedBy", + "description": "Reads and enables pagination through a set of `ReportType`.", "args": [ { "name": "after", @@ -100259,7 +97792,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTypeCondition", + "name": "ReportTypeCondition", "ofType": null }, "defaultValue": null @@ -100269,7 +97802,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTypeFilter", + "name": "ReportTypeFilter", "ofType": null }, "defaultValue": null @@ -100316,7 +97849,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectType`.", + "description": "The method to use when ordering `ReportType`.", "type": { "kind": "LIST", "name": null, @@ -100325,7 +97858,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectTypesOrderBy", + "name": "ReportTypesOrderBy", "ofType": null } } @@ -100338,7 +97871,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectTypesConnection", + "name": "ReportTypesConnection", "ofType": null } }, @@ -100353,12 +97886,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectTypeUpdatedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectType`.", + "name": "CifUserCifUsersByReportTypeUpdatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ReportType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ReportType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -100371,7 +97904,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectTypeUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByReportTypeUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -100440,8 +97973,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectTypeUpdatedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectType`.", + "name": "CifUserCifUsersByReportTypeUpdatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ReportType`.", "fields": [ { "name": "cursor", @@ -100468,8 +98001,8 @@ "deprecationReason": null }, { - "name": "projectTypesByCreatedBy", - "description": "Reads and enables pagination through a set of `ProjectType`.", + "name": "reportTypesByArchivedBy", + "description": "Reads and enables pagination through a set of `ReportType`.", "args": [ { "name": "after", @@ -100496,7 +98029,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTypeCondition", + "name": "ReportTypeCondition", "ofType": null }, "defaultValue": null @@ -100506,7 +98039,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTypeFilter", + "name": "ReportTypeFilter", "ofType": null }, "defaultValue": null @@ -100553,7 +98086,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectType`.", + "description": "The method to use when ordering `ReportType`.", "type": { "kind": "LIST", "name": null, @@ -100562,7 +98095,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectTypesOrderBy", + "name": "ReportTypesOrderBy", "ofType": null } } @@ -100575,7 +98108,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectTypesConnection", + "name": "ReportTypesConnection", "ofType": null } }, @@ -100590,12 +98123,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectUpdatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Project`.", + "name": "CifUserCifUsersByReportTypeUpdatedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ReportType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Project`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ReportType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -100608,7 +98141,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByReportTypeUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -100677,8 +98210,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectUpdatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `Project`.", + "name": "CifUserCifUsersByReportTypeUpdatedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ReportType`.", "fields": [ { "name": "cursor", @@ -100705,8 +98238,8 @@ "deprecationReason": null }, { - "name": "projectsByArchivedBy", - "description": "Reads and enables pagination through a set of `Project`.", + "name": "reportTypesByCreatedBy", + "description": "Reads and enables pagination through a set of `ReportType`.", "args": [ { "name": "after", @@ -100733,7 +98266,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCondition", + "name": "ReportTypeCondition", "ofType": null }, "defaultValue": null @@ -100743,7 +98276,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectFilter", + "name": "ReportTypeFilter", "ofType": null }, "defaultValue": null @@ -100790,7 +98323,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Project`.", + "description": "The method to use when ordering `ReportType`.", "type": { "kind": "LIST", "name": null, @@ -100799,7 +98332,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectsOrderBy", + "name": "ReportTypesOrderBy", "ofType": null } } @@ -100812,7 +98345,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectsConnection", + "name": "ReportTypesConnection", "ofType": null } }, @@ -100827,12 +98360,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectUpdatedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Project`.", + "name": "CifUserCifUsersByReportingRequirementArchivedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ReportingRequirement`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Project`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ReportingRequirement`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -100845,7 +98378,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByReportingRequirementArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -100914,8 +98447,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectUpdatedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `Project`.", + "name": "CifUserCifUsersByReportingRequirementArchivedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ReportingRequirement`.", "fields": [ { "name": "cursor", @@ -100942,8 +98475,8 @@ "deprecationReason": null }, { - "name": "projectsByCreatedBy", - "description": "Reads and enables pagination through a set of `Project`.", + "name": "reportingRequirementsByCreatedBy", + "description": "Reads and enables pagination through a set of `ReportingRequirement`.", "args": [ { "name": "after", @@ -100970,7 +98503,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCondition", + "name": "ReportingRequirementCondition", "ofType": null }, "defaultValue": null @@ -100980,7 +98513,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectFilter", + "name": "ReportingRequirementFilter", "ofType": null }, "defaultValue": null @@ -101027,7 +98560,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Project`.", + "description": "The method to use when ordering `ReportingRequirement`.", "type": { "kind": "LIST", "name": null, @@ -101036,7 +98569,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectsOrderBy", + "name": "ReportingRequirementsOrderBy", "ofType": null } } @@ -101049,7 +98582,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectsConnection", + "name": "ReportingRequirementsConnection", "ofType": null } }, @@ -101064,12 +98597,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByReportTypeArchivedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ReportType`.", + "name": "CifUserCifUsersByReportingRequirementArchivedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ReportingRequirement`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ReportType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ReportingRequirement`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -101082,7 +98615,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByReportTypeArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByReportingRequirementArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -101151,8 +98684,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByReportTypeArchivedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ReportType`.", + "name": "CifUserCifUsersByReportingRequirementArchivedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ReportingRequirement`.", "fields": [ { "name": "cursor", @@ -101179,8 +98712,8 @@ "deprecationReason": null }, { - "name": "reportTypesByCreatedBy", - "description": "Reads and enables pagination through a set of `ReportType`.", + "name": "reportingRequirementsByUpdatedBy", + "description": "Reads and enables pagination through a set of `ReportingRequirement`.", "args": [ { "name": "after", @@ -101207,7 +98740,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportTypeCondition", + "name": "ReportingRequirementCondition", "ofType": null }, "defaultValue": null @@ -101217,7 +98750,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportTypeFilter", + "name": "ReportingRequirementFilter", "ofType": null }, "defaultValue": null @@ -101264,7 +98797,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportType`.", + "description": "The method to use when ordering `ReportingRequirement`.", "type": { "kind": "LIST", "name": null, @@ -101273,7 +98806,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportTypesOrderBy", + "name": "ReportingRequirementsOrderBy", "ofType": null } } @@ -101286,7 +98819,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ReportTypesConnection", + "name": "ReportingRequirementsConnection", "ofType": null } }, @@ -101301,12 +98834,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByReportTypeArchivedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ReportType`.", + "name": "CifUserCifUsersByReportingRequirementCreatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ReportingRequirement`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ReportType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ReportingRequirement`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -101319,7 +98852,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByReportTypeArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByReportingRequirementCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -101388,8 +98921,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByReportTypeArchivedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ReportType`.", + "name": "CifUserCifUsersByReportingRequirementCreatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ReportingRequirement`.", "fields": [ { "name": "cursor", @@ -101416,8 +98949,8 @@ "deprecationReason": null }, { - "name": "reportTypesByUpdatedBy", - "description": "Reads and enables pagination through a set of `ReportType`.", + "name": "reportingRequirementsByArchivedBy", + "description": "Reads and enables pagination through a set of `ReportingRequirement`.", "args": [ { "name": "after", @@ -101444,7 +98977,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportTypeCondition", + "name": "ReportingRequirementCondition", "ofType": null }, "defaultValue": null @@ -101454,7 +98987,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportTypeFilter", + "name": "ReportingRequirementFilter", "ofType": null }, "defaultValue": null @@ -101501,7 +99034,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportType`.", + "description": "The method to use when ordering `ReportingRequirement`.", "type": { "kind": "LIST", "name": null, @@ -101510,7 +99043,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportTypesOrderBy", + "name": "ReportingRequirementsOrderBy", "ofType": null } } @@ -101523,7 +99056,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ReportTypesConnection", + "name": "ReportingRequirementsConnection", "ofType": null } }, @@ -101538,12 +99071,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByReportTypeCreatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ReportType`.", + "name": "CifUserCifUsersByReportingRequirementCreatedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ReportingRequirement`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ReportType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ReportingRequirement`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -101556,7 +99089,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByReportTypeCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByReportingRequirementCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -101625,8 +99158,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByReportTypeCreatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ReportType`.", + "name": "CifUserCifUsersByReportingRequirementCreatedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ReportingRequirement`.", "fields": [ { "name": "cursor", @@ -101653,8 +99186,8 @@ "deprecationReason": null }, { - "name": "reportTypesByArchivedBy", - "description": "Reads and enables pagination through a set of `ReportType`.", + "name": "reportingRequirementsByUpdatedBy", + "description": "Reads and enables pagination through a set of `ReportingRequirement`.", "args": [ { "name": "after", @@ -101681,7 +99214,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportTypeCondition", + "name": "ReportingRequirementCondition", "ofType": null }, "defaultValue": null @@ -101691,7 +99224,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportTypeFilter", + "name": "ReportingRequirementFilter", "ofType": null }, "defaultValue": null @@ -101738,7 +99271,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportType`.", + "description": "The method to use when ordering `ReportingRequirement`.", "type": { "kind": "LIST", "name": null, @@ -101747,7 +99280,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportTypesOrderBy", + "name": "ReportingRequirementsOrderBy", "ofType": null } } @@ -101760,7 +99293,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ReportTypesConnection", + "name": "ReportingRequirementsConnection", "ofType": null } }, @@ -101775,12 +99308,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByReportTypeCreatedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ReportType`.", + "name": "CifUserCifUsersByReportingRequirementUpdatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ReportingRequirement`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ReportType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ReportingRequirement`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -101793,7 +99326,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByReportTypeCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByReportingRequirementUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -101862,8 +99395,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByReportTypeCreatedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ReportType`.", + "name": "CifUserCifUsersByReportingRequirementUpdatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ReportingRequirement`.", "fields": [ { "name": "cursor", @@ -101890,8 +99423,8 @@ "deprecationReason": null }, { - "name": "reportTypesByUpdatedBy", - "description": "Reads and enables pagination through a set of `ReportType`.", + "name": "reportingRequirementsByArchivedBy", + "description": "Reads and enables pagination through a set of `ReportingRequirement`.", "args": [ { "name": "after", @@ -101918,7 +99451,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportTypeCondition", + "name": "ReportingRequirementCondition", "ofType": null }, "defaultValue": null @@ -101928,7 +99461,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportTypeFilter", + "name": "ReportingRequirementFilter", "ofType": null }, "defaultValue": null @@ -101975,7 +99508,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportType`.", + "description": "The method to use when ordering `ReportingRequirement`.", "type": { "kind": "LIST", "name": null, @@ -101984,7 +99517,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportTypesOrderBy", + "name": "ReportingRequirementsOrderBy", "ofType": null } } @@ -101997,7 +99530,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ReportTypesConnection", + "name": "ReportingRequirementsConnection", "ofType": null } }, @@ -102012,12 +99545,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByReportTypeUpdatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ReportType`.", + "name": "CifUserCifUsersByReportingRequirementUpdatedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ReportingRequirement`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ReportType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ReportingRequirement`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -102030,7 +99563,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByReportTypeUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByReportingRequirementUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -102099,8 +99632,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByReportTypeUpdatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ReportType`.", + "name": "CifUserCifUsersByReportingRequirementUpdatedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ReportingRequirement`.", "fields": [ { "name": "cursor", @@ -102127,8 +99660,8 @@ "deprecationReason": null }, { - "name": "reportTypesByArchivedBy", - "description": "Reads and enables pagination through a set of `ReportType`.", + "name": "reportingRequirementsByCreatedBy", + "description": "Reads and enables pagination through a set of `ReportingRequirement`.", "args": [ { "name": "after", @@ -102155,7 +99688,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportTypeCondition", + "name": "ReportingRequirementCondition", "ofType": null }, "defaultValue": null @@ -102165,7 +99698,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportTypeFilter", + "name": "ReportingRequirementFilter", "ofType": null }, "defaultValue": null @@ -102212,7 +99745,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportType`.", + "description": "The method to use when ordering `ReportingRequirement`.", "type": { "kind": "LIST", "name": null, @@ -102221,7 +99754,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportTypesOrderBy", + "name": "ReportingRequirementsOrderBy", "ofType": null } } @@ -102234,7 +99767,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ReportTypesConnection", + "name": "ReportingRequirementsConnection", "ofType": null } }, @@ -102249,12 +99782,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByReportTypeUpdatedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ReportType`.", + "name": "CifUserCifUsersByRevisionStatusArchivedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `RevisionStatus`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ReportType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `RevisionStatus`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -102267,7 +99800,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByReportTypeUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByRevisionStatusArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -102336,8 +99869,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByReportTypeUpdatedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ReportType`.", + "name": "CifUserCifUsersByRevisionStatusArchivedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `RevisionStatus`.", "fields": [ { "name": "cursor", @@ -102364,8 +99897,8 @@ "deprecationReason": null }, { - "name": "reportTypesByCreatedBy", - "description": "Reads and enables pagination through a set of `ReportType`.", + "name": "revisionStatusesByCreatedBy", + "description": "Reads and enables pagination through a set of `RevisionStatus`.", "args": [ { "name": "after", @@ -102392,7 +99925,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportTypeCondition", + "name": "RevisionStatusCondition", "ofType": null }, "defaultValue": null @@ -102402,7 +99935,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportTypeFilter", + "name": "RevisionStatusFilter", "ofType": null }, "defaultValue": null @@ -102449,7 +99982,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportType`.", + "description": "The method to use when ordering `RevisionStatus`.", "type": { "kind": "LIST", "name": null, @@ -102458,7 +99991,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportTypesOrderBy", + "name": "RevisionStatusesOrderBy", "ofType": null } } @@ -102471,7 +100004,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ReportTypesConnection", + "name": "RevisionStatusesConnection", "ofType": null } }, @@ -102486,12 +100019,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByReportingRequirementArchivedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ReportingRequirement`.", + "name": "CifUserCifUsersByRevisionStatusArchivedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `RevisionStatus`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ReportingRequirement`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `RevisionStatus`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -102504,7 +100037,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByReportingRequirementArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByRevisionStatusArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -102573,8 +100106,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByReportingRequirementArchivedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ReportingRequirement`.", + "name": "CifUserCifUsersByRevisionStatusArchivedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `RevisionStatus`.", "fields": [ { "name": "cursor", @@ -102601,8 +100134,8 @@ "deprecationReason": null }, { - "name": "reportingRequirementsByCreatedBy", - "description": "Reads and enables pagination through a set of `ReportingRequirement`.", + "name": "revisionStatusesByUpdatedBy", + "description": "Reads and enables pagination through a set of `RevisionStatus`.", "args": [ { "name": "after", @@ -102629,7 +100162,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementCondition", + "name": "RevisionStatusCondition", "ofType": null }, "defaultValue": null @@ -102639,7 +100172,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementFilter", + "name": "RevisionStatusFilter", "ofType": null }, "defaultValue": null @@ -102686,7 +100219,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportingRequirement`.", + "description": "The method to use when ordering `RevisionStatus`.", "type": { "kind": "LIST", "name": null, @@ -102695,7 +100228,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportingRequirementsOrderBy", + "name": "RevisionStatusesOrderBy", "ofType": null } } @@ -102708,7 +100241,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ReportingRequirementsConnection", + "name": "RevisionStatusesConnection", "ofType": null } }, @@ -102723,12 +100256,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByReportingRequirementArchivedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ReportingRequirement`.", + "name": "CifUserCifUsersByRevisionStatusCreatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `RevisionStatus`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ReportingRequirement`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `RevisionStatus`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -102741,7 +100274,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByReportingRequirementArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByRevisionStatusCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -102810,8 +100343,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByReportingRequirementArchivedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ReportingRequirement`.", + "name": "CifUserCifUsersByRevisionStatusCreatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `RevisionStatus`.", "fields": [ { "name": "cursor", @@ -102838,8 +100371,8 @@ "deprecationReason": null }, { - "name": "reportingRequirementsByUpdatedBy", - "description": "Reads and enables pagination through a set of `ReportingRequirement`.", + "name": "revisionStatusesByArchivedBy", + "description": "Reads and enables pagination through a set of `RevisionStatus`.", "args": [ { "name": "after", @@ -102866,7 +100399,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementCondition", + "name": "RevisionStatusCondition", "ofType": null }, "defaultValue": null @@ -102876,7 +100409,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementFilter", + "name": "RevisionStatusFilter", "ofType": null }, "defaultValue": null @@ -102923,7 +100456,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportingRequirement`.", + "description": "The method to use when ordering `RevisionStatus`.", "type": { "kind": "LIST", "name": null, @@ -102932,7 +100465,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportingRequirementsOrderBy", + "name": "RevisionStatusesOrderBy", "ofType": null } } @@ -102945,7 +100478,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ReportingRequirementsConnection", + "name": "RevisionStatusesConnection", "ofType": null } }, @@ -102960,12 +100493,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByReportingRequirementCreatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ReportingRequirement`.", + "name": "CifUserCifUsersByRevisionStatusCreatedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `RevisionStatus`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ReportingRequirement`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `RevisionStatus`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -102978,7 +100511,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByReportingRequirementCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByRevisionStatusCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -103047,8 +100580,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByReportingRequirementCreatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ReportingRequirement`.", + "name": "CifUserCifUsersByRevisionStatusCreatedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `RevisionStatus`.", "fields": [ { "name": "cursor", @@ -103075,8 +100608,8 @@ "deprecationReason": null }, { - "name": "reportingRequirementsByArchivedBy", - "description": "Reads and enables pagination through a set of `ReportingRequirement`.", + "name": "revisionStatusesByUpdatedBy", + "description": "Reads and enables pagination through a set of `RevisionStatus`.", "args": [ { "name": "after", @@ -103103,7 +100636,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementCondition", + "name": "RevisionStatusCondition", "ofType": null }, "defaultValue": null @@ -103113,7 +100646,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementFilter", + "name": "RevisionStatusFilter", "ofType": null }, "defaultValue": null @@ -103160,7 +100693,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportingRequirement`.", + "description": "The method to use when ordering `RevisionStatus`.", "type": { "kind": "LIST", "name": null, @@ -103169,7 +100702,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportingRequirementsOrderBy", + "name": "RevisionStatusesOrderBy", "ofType": null } } @@ -103182,7 +100715,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ReportingRequirementsConnection", + "name": "RevisionStatusesConnection", "ofType": null } }, @@ -103197,12 +100730,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByReportingRequirementCreatedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ReportingRequirement`.", + "name": "CifUserCifUsersByRevisionStatusUpdatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `RevisionStatus`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ReportingRequirement`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `RevisionStatus`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -103215,7 +100748,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByReportingRequirementCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByRevisionStatusUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -103284,8 +100817,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByReportingRequirementCreatedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ReportingRequirement`.", + "name": "CifUserCifUsersByRevisionStatusUpdatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `RevisionStatus`.", "fields": [ { "name": "cursor", @@ -103312,8 +100845,8 @@ "deprecationReason": null }, { - "name": "reportingRequirementsByUpdatedBy", - "description": "Reads and enables pagination through a set of `ReportingRequirement`.", + "name": "revisionStatusesByArchivedBy", + "description": "Reads and enables pagination through a set of `RevisionStatus`.", "args": [ { "name": "after", @@ -103340,7 +100873,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementCondition", + "name": "RevisionStatusCondition", "ofType": null }, "defaultValue": null @@ -103350,7 +100883,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementFilter", + "name": "RevisionStatusFilter", "ofType": null }, "defaultValue": null @@ -103397,7 +100930,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportingRequirement`.", + "description": "The method to use when ordering `RevisionStatus`.", "type": { "kind": "LIST", "name": null, @@ -103406,7 +100939,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportingRequirementsOrderBy", + "name": "RevisionStatusesOrderBy", "ofType": null } } @@ -103419,7 +100952,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ReportingRequirementsConnection", + "name": "RevisionStatusesConnection", "ofType": null } }, @@ -103434,12 +100967,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByReportingRequirementUpdatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ReportingRequirement`.", + "name": "CifUserCifUsersByRevisionStatusUpdatedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `RevisionStatus`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ReportingRequirement`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `RevisionStatus`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -103452,7 +100985,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByReportingRequirementUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByRevisionStatusUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -103521,8 +101054,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByReportingRequirementUpdatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ReportingRequirement`.", + "name": "CifUserCifUsersByRevisionStatusUpdatedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `RevisionStatus`.", "fields": [ { "name": "cursor", @@ -103549,8 +101082,8 @@ "deprecationReason": null }, { - "name": "reportingRequirementsByArchivedBy", - "description": "Reads and enables pagination through a set of `ReportingRequirement`.", + "name": "revisionStatusesByCreatedBy", + "description": "Reads and enables pagination through a set of `RevisionStatus`.", "args": [ { "name": "after", @@ -103577,7 +101110,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementCondition", + "name": "RevisionStatusCondition", "ofType": null }, "defaultValue": null @@ -103587,7 +101120,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementFilter", + "name": "RevisionStatusFilter", "ofType": null }, "defaultValue": null @@ -103634,7 +101167,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportingRequirement`.", + "description": "The method to use when ordering `RevisionStatus`.", "type": { "kind": "LIST", "name": null, @@ -103643,7 +101176,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportingRequirementsOrderBy", + "name": "RevisionStatusesOrderBy", "ofType": null } } @@ -103656,7 +101189,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ReportingRequirementsConnection", + "name": "RevisionStatusesConnection", "ofType": null } }, @@ -103671,12 +101204,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByReportingRequirementUpdatedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ReportingRequirement`.", + "name": "CifUserCifUsersByRevisionTypeArchivedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `RevisionType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ReportingRequirement`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `RevisionType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -103689,7 +101222,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByReportingRequirementUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByRevisionTypeArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -103758,8 +101291,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByReportingRequirementUpdatedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ReportingRequirement`.", + "name": "CifUserCifUsersByRevisionTypeArchivedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `RevisionType`.", "fields": [ { "name": "cursor", @@ -103786,8 +101319,8 @@ "deprecationReason": null }, { - "name": "reportingRequirementsByCreatedBy", - "description": "Reads and enables pagination through a set of `ReportingRequirement`.", + "name": "revisionTypesByCreatedBy", + "description": "Reads and enables pagination through a set of `RevisionType`.", "args": [ { "name": "after", @@ -103814,7 +101347,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementCondition", + "name": "RevisionTypeCondition", "ofType": null }, "defaultValue": null @@ -103824,7 +101357,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementFilter", + "name": "RevisionTypeFilter", "ofType": null }, "defaultValue": null @@ -103871,7 +101404,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportingRequirement`.", + "description": "The method to use when ordering `RevisionType`.", "type": { "kind": "LIST", "name": null, @@ -103880,7 +101413,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportingRequirementsOrderBy", + "name": "RevisionTypesOrderBy", "ofType": null } } @@ -103893,7 +101426,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ReportingRequirementsConnection", + "name": "RevisionTypesConnection", "ofType": null } }, @@ -103908,12 +101441,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionStatusArchivedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `RevisionStatus`.", + "name": "CifUserCifUsersByRevisionTypeArchivedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `RevisionType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `RevisionStatus`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `RevisionType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -103926,7 +101459,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionStatusArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByRevisionTypeArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -103995,8 +101528,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionStatusArchivedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `RevisionStatus`.", + "name": "CifUserCifUsersByRevisionTypeArchivedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `RevisionType`.", "fields": [ { "name": "cursor", @@ -104023,8 +101556,8 @@ "deprecationReason": null }, { - "name": "revisionStatusesByCreatedBy", - "description": "Reads and enables pagination through a set of `RevisionStatus`.", + "name": "revisionTypesByUpdatedBy", + "description": "Reads and enables pagination through a set of `RevisionType`.", "args": [ { "name": "after", @@ -104051,7 +101584,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionStatusCondition", + "name": "RevisionTypeCondition", "ofType": null }, "defaultValue": null @@ -104061,7 +101594,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionStatusFilter", + "name": "RevisionTypeFilter", "ofType": null }, "defaultValue": null @@ -104108,7 +101641,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `RevisionStatus`.", + "description": "The method to use when ordering `RevisionType`.", "type": { "kind": "LIST", "name": null, @@ -104117,7 +101650,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "RevisionStatusesOrderBy", + "name": "RevisionTypesOrderBy", "ofType": null } } @@ -104130,7 +101663,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RevisionStatusesConnection", + "name": "RevisionTypesConnection", "ofType": null } }, @@ -104145,12 +101678,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionStatusArchivedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `RevisionStatus`.", + "name": "CifUserCifUsersByRevisionTypeCreatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `RevisionType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `RevisionStatus`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `RevisionType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -104163,7 +101696,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionStatusArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByRevisionTypeCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -104232,8 +101765,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionStatusArchivedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `RevisionStatus`.", + "name": "CifUserCifUsersByRevisionTypeCreatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `RevisionType`.", "fields": [ { "name": "cursor", @@ -104260,8 +101793,8 @@ "deprecationReason": null }, { - "name": "revisionStatusesByUpdatedBy", - "description": "Reads and enables pagination through a set of `RevisionStatus`.", + "name": "revisionTypesByArchivedBy", + "description": "Reads and enables pagination through a set of `RevisionType`.", "args": [ { "name": "after", @@ -104288,7 +101821,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionStatusCondition", + "name": "RevisionTypeCondition", "ofType": null }, "defaultValue": null @@ -104298,7 +101831,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionStatusFilter", + "name": "RevisionTypeFilter", "ofType": null }, "defaultValue": null @@ -104345,7 +101878,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `RevisionStatus`.", + "description": "The method to use when ordering `RevisionType`.", "type": { "kind": "LIST", "name": null, @@ -104354,7 +101887,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "RevisionStatusesOrderBy", + "name": "RevisionTypesOrderBy", "ofType": null } } @@ -104367,7 +101900,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RevisionStatusesConnection", + "name": "RevisionTypesConnection", "ofType": null } }, @@ -104382,12 +101915,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionStatusCreatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `RevisionStatus`.", + "name": "CifUserCifUsersByRevisionTypeCreatedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `RevisionType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `RevisionStatus`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `RevisionType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -104400,7 +101933,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionStatusCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByRevisionTypeCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -104469,8 +102002,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionStatusCreatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `RevisionStatus`.", + "name": "CifUserCifUsersByRevisionTypeCreatedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `RevisionType`.", "fields": [ { "name": "cursor", @@ -104497,8 +102030,8 @@ "deprecationReason": null }, { - "name": "revisionStatusesByArchivedBy", - "description": "Reads and enables pagination through a set of `RevisionStatus`.", + "name": "revisionTypesByUpdatedBy", + "description": "Reads and enables pagination through a set of `RevisionType`.", "args": [ { "name": "after", @@ -104525,7 +102058,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionStatusCondition", + "name": "RevisionTypeCondition", "ofType": null }, "defaultValue": null @@ -104535,7 +102068,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionStatusFilter", + "name": "RevisionTypeFilter", "ofType": null }, "defaultValue": null @@ -104582,7 +102115,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `RevisionStatus`.", + "description": "The method to use when ordering `RevisionType`.", "type": { "kind": "LIST", "name": null, @@ -104591,7 +102124,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "RevisionStatusesOrderBy", + "name": "RevisionTypesOrderBy", "ofType": null } } @@ -104604,7 +102137,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RevisionStatusesConnection", + "name": "RevisionTypesConnection", "ofType": null } }, @@ -104619,12 +102152,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionStatusCreatedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `RevisionStatus`.", + "name": "CifUserCifUsersByRevisionTypeUpdatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `RevisionType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `RevisionStatus`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `RevisionType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -104637,7 +102170,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionStatusCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByRevisionTypeUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -104706,8 +102239,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionStatusCreatedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `RevisionStatus`.", + "name": "CifUserCifUsersByRevisionTypeUpdatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `RevisionType`.", "fields": [ { "name": "cursor", @@ -104734,8 +102267,8 @@ "deprecationReason": null }, { - "name": "revisionStatusesByUpdatedBy", - "description": "Reads and enables pagination through a set of `RevisionStatus`.", + "name": "revisionTypesByArchivedBy", + "description": "Reads and enables pagination through a set of `RevisionType`.", "args": [ { "name": "after", @@ -104762,7 +102295,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionStatusCondition", + "name": "RevisionTypeCondition", "ofType": null }, "defaultValue": null @@ -104772,7 +102305,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionStatusFilter", + "name": "RevisionTypeFilter", "ofType": null }, "defaultValue": null @@ -104819,7 +102352,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `RevisionStatus`.", + "description": "The method to use when ordering `RevisionType`.", "type": { "kind": "LIST", "name": null, @@ -104828,7 +102361,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "RevisionStatusesOrderBy", + "name": "RevisionTypesOrderBy", "ofType": null } } @@ -104841,7 +102374,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RevisionStatusesConnection", + "name": "RevisionTypesConnection", "ofType": null } }, @@ -104856,12 +102389,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionStatusUpdatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `RevisionStatus`.", + "name": "CifUserCifUsersByRevisionTypeUpdatedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `RevisionType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `RevisionStatus`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `RevisionType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -104874,7 +102407,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionStatusUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByRevisionTypeUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -104943,8 +102476,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionStatusUpdatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `RevisionStatus`.", + "name": "CifUserCifUsersByRevisionTypeUpdatedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `RevisionType`.", "fields": [ { "name": "cursor", @@ -104971,8 +102504,8 @@ "deprecationReason": null }, { - "name": "revisionStatusesByArchivedBy", - "description": "Reads and enables pagination through a set of `RevisionStatus`.", + "name": "revisionTypesByCreatedBy", + "description": "Reads and enables pagination through a set of `RevisionType`.", "args": [ { "name": "after", @@ -104999,7 +102532,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionStatusCondition", + "name": "RevisionTypeCondition", "ofType": null }, "defaultValue": null @@ -105009,7 +102542,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionStatusFilter", + "name": "RevisionTypeFilter", "ofType": null }, "defaultValue": null @@ -105056,7 +102589,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `RevisionStatus`.", + "description": "The method to use when ordering `RevisionType`.", "type": { "kind": "LIST", "name": null, @@ -105065,7 +102598,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "RevisionStatusesOrderBy", + "name": "RevisionTypesOrderBy", "ofType": null } } @@ -105078,7 +102611,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RevisionStatusesConnection", + "name": "RevisionTypesConnection", "ofType": null } }, @@ -105093,12 +102626,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionStatusUpdatedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `RevisionStatus`.", + "name": "CifUserCifUsersBySectorArchivedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Sector`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `RevisionStatus`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `Sector`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -105111,7 +102644,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionStatusUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersBySectorArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -105180,8 +102713,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionStatusUpdatedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `RevisionStatus`.", + "name": "CifUserCifUsersBySectorArchivedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `Sector`.", "fields": [ { "name": "cursor", @@ -105208,8 +102741,8 @@ "deprecationReason": null }, { - "name": "revisionStatusesByCreatedBy", - "description": "Reads and enables pagination through a set of `RevisionStatus`.", + "name": "sectorsByCreatedBy", + "description": "Reads and enables pagination through a set of `Sector`.", "args": [ { "name": "after", @@ -105236,7 +102769,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionStatusCondition", + "name": "SectorCondition", "ofType": null }, "defaultValue": null @@ -105246,7 +102779,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionStatusFilter", + "name": "SectorFilter", "ofType": null }, "defaultValue": null @@ -105293,7 +102826,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `RevisionStatus`.", + "description": "The method to use when ordering `Sector`.", "type": { "kind": "LIST", "name": null, @@ -105302,7 +102835,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "RevisionStatusesOrderBy", + "name": "SectorsOrderBy", "ofType": null } } @@ -105315,7 +102848,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RevisionStatusesConnection", + "name": "SectorsConnection", "ofType": null } }, @@ -105330,12 +102863,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionTypeArchivedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `RevisionType`.", + "name": "CifUserCifUsersBySectorArchivedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Sector`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `RevisionType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `Sector`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -105348,7 +102881,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionTypeArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersBySectorArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -105417,8 +102950,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionTypeArchivedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `RevisionType`.", + "name": "CifUserCifUsersBySectorArchivedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `Sector`.", "fields": [ { "name": "cursor", @@ -105445,8 +102978,8 @@ "deprecationReason": null }, { - "name": "revisionTypesByCreatedBy", - "description": "Reads and enables pagination through a set of `RevisionType`.", + "name": "sectorsByUpdatedBy", + "description": "Reads and enables pagination through a set of `Sector`.", "args": [ { "name": "after", @@ -105473,7 +103006,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionTypeCondition", + "name": "SectorCondition", "ofType": null }, "defaultValue": null @@ -105483,7 +103016,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionTypeFilter", + "name": "SectorFilter", "ofType": null }, "defaultValue": null @@ -105530,7 +103063,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `RevisionType`.", + "description": "The method to use when ordering `Sector`.", "type": { "kind": "LIST", "name": null, @@ -105539,7 +103072,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "RevisionTypesOrderBy", + "name": "SectorsOrderBy", "ofType": null } } @@ -105552,7 +103085,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RevisionTypesConnection", + "name": "SectorsConnection", "ofType": null } }, @@ -105567,12 +103100,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionTypeArchivedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `RevisionType`.", + "name": "CifUserCifUsersBySectorCreatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Sector`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `RevisionType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `Sector`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -105585,7 +103118,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionTypeArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersBySectorCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -105654,8 +103187,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionTypeArchivedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `RevisionType`.", + "name": "CifUserCifUsersBySectorCreatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `Sector`.", "fields": [ { "name": "cursor", @@ -105682,8 +103215,8 @@ "deprecationReason": null }, { - "name": "revisionTypesByUpdatedBy", - "description": "Reads and enables pagination through a set of `RevisionType`.", + "name": "sectorsByArchivedBy", + "description": "Reads and enables pagination through a set of `Sector`.", "args": [ { "name": "after", @@ -105710,7 +103243,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionTypeCondition", + "name": "SectorCondition", "ofType": null }, "defaultValue": null @@ -105720,7 +103253,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionTypeFilter", + "name": "SectorFilter", "ofType": null }, "defaultValue": null @@ -105767,7 +103300,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `RevisionType`.", + "description": "The method to use when ordering `Sector`.", "type": { "kind": "LIST", "name": null, @@ -105776,7 +103309,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "RevisionTypesOrderBy", + "name": "SectorsOrderBy", "ofType": null } } @@ -105789,7 +103322,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RevisionTypesConnection", + "name": "SectorsConnection", "ofType": null } }, @@ -105804,12 +103337,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionTypeCreatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `RevisionType`.", + "name": "CifUserCifUsersBySectorCreatedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Sector`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `RevisionType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `Sector`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -105822,7 +103355,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionTypeCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersBySectorCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -105891,8 +103424,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionTypeCreatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `RevisionType`.", + "name": "CifUserCifUsersBySectorCreatedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `Sector`.", "fields": [ { "name": "cursor", @@ -105919,8 +103452,8 @@ "deprecationReason": null }, { - "name": "revisionTypesByArchivedBy", - "description": "Reads and enables pagination through a set of `RevisionType`.", + "name": "sectorsByUpdatedBy", + "description": "Reads and enables pagination through a set of `Sector`.", "args": [ { "name": "after", @@ -105947,7 +103480,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionTypeCondition", + "name": "SectorCondition", "ofType": null }, "defaultValue": null @@ -105957,7 +103490,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionTypeFilter", + "name": "SectorFilter", "ofType": null }, "defaultValue": null @@ -106004,7 +103537,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `RevisionType`.", + "description": "The method to use when ordering `Sector`.", "type": { "kind": "LIST", "name": null, @@ -106013,7 +103546,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "RevisionTypesOrderBy", + "name": "SectorsOrderBy", "ofType": null } } @@ -106026,7 +103559,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RevisionTypesConnection", + "name": "SectorsConnection", "ofType": null } }, @@ -106041,12 +103574,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionTypeCreatedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `RevisionType`.", + "name": "CifUserCifUsersBySectorUpdatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Sector`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `RevisionType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `Sector`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -106059,7 +103592,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionTypeCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersBySectorUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -106128,8 +103661,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionTypeCreatedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `RevisionType`.", + "name": "CifUserCifUsersBySectorUpdatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `Sector`.", "fields": [ { "name": "cursor", @@ -106156,8 +103689,8 @@ "deprecationReason": null }, { - "name": "revisionTypesByUpdatedBy", - "description": "Reads and enables pagination through a set of `RevisionType`.", + "name": "sectorsByArchivedBy", + "description": "Reads and enables pagination through a set of `Sector`.", "args": [ { "name": "after", @@ -106184,7 +103717,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionTypeCondition", + "name": "SectorCondition", "ofType": null }, "defaultValue": null @@ -106194,7 +103727,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionTypeFilter", + "name": "SectorFilter", "ofType": null }, "defaultValue": null @@ -106241,7 +103774,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `RevisionType`.", + "description": "The method to use when ordering `Sector`.", "type": { "kind": "LIST", "name": null, @@ -106250,7 +103783,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "RevisionTypesOrderBy", + "name": "SectorsOrderBy", "ofType": null } } @@ -106263,7 +103796,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RevisionTypesConnection", + "name": "SectorsConnection", "ofType": null } }, @@ -106278,12 +103811,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionTypeUpdatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `RevisionType`.", + "name": "CifUserCifUsersBySectorUpdatedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Sector`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `RevisionType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `Sector`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -106296,7 +103829,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionTypeUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersBySectorUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -106365,8 +103898,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionTypeUpdatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `RevisionType`.", + "name": "CifUserCifUsersBySectorUpdatedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `Sector`.", "fields": [ { "name": "cursor", @@ -106393,8 +103926,8 @@ "deprecationReason": null }, { - "name": "revisionTypesByArchivedBy", - "description": "Reads and enables pagination through a set of `RevisionType`.", + "name": "sectorsByCreatedBy", + "description": "Reads and enables pagination through a set of `Sector`.", "args": [ { "name": "after", @@ -106421,7 +103954,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionTypeCondition", + "name": "SectorCondition", "ofType": null }, "defaultValue": null @@ -106431,7 +103964,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionTypeFilter", + "name": "SectorFilter", "ofType": null }, "defaultValue": null @@ -106478,7 +104011,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `RevisionType`.", + "description": "The method to use when ordering `Sector`.", "type": { "kind": "LIST", "name": null, @@ -106487,7 +104020,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "RevisionTypesOrderBy", + "name": "SectorsOrderBy", "ofType": null } } @@ -106500,7 +104033,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RevisionTypesConnection", + "name": "SectorsConnection", "ofType": null } }, @@ -106513,14 +104046,145 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "INPUT_OBJECT", + "name": "CifUserCondition", + "description": "A condition to be used against `CifUser` object types. All fields are tested for equality and combined with a logical ‘and.’", + "fields": null, + "inputFields": [ + { + "name": "allowSubUpdate", + "description": "Checks for equality with the object’s `allowSubUpdate` field.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "archivedAt", + "description": "Checks for equality with the object’s `archivedAt` field.", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "archivedBy", + "description": "Checks for equality with the object’s `archivedBy` field.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "Checks for equality with the object’s `createdAt` field.", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdBy", + "description": "Checks for equality with the object’s `createdBy` field.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "emailAddress", + "description": "Checks for equality with the object’s `emailAddress` field.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "familyName", + "description": "Checks for equality with the object’s `familyName` field.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "givenName", + "description": "Checks for equality with the object’s `givenName` field.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "rowId", + "description": "Checks for equality with the object’s `rowId` field.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sessionSub", + "description": "Checks for equality with the object’s `sessionSub` field.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": "Checks for equality with the object’s `updatedAt` field.", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedBy", + "description": "Checks for equality with the object’s `updatedBy` field.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionTypeUpdatedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `RevisionType`.", + "name": "CifUserContactsByProjectContactArchivedByAndContactIdManyToManyConnection", + "description": "A connection to a list of `Contact` values, with data from `ProjectContact`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `RevisionType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `Contact`, info from the `ProjectContact`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -106533,7 +104197,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionTypeUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserContactsByProjectContactArchivedByAndContactIdManyToManyEdge", "ofType": null } } @@ -106544,7 +104208,7 @@ }, { "name": "nodes", - "description": "A list of `CifUser` objects.", + "description": "A list of `Contact` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -106554,7 +104218,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUser", + "name": "Contact", "ofType": null } } @@ -106580,7 +104244,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `CifUser` you could get from the connection.", + "description": "The count of *all* `Contact` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -106602,8 +104266,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionTypeUpdatedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `RevisionType`.", + "name": "CifUserContactsByProjectContactArchivedByAndContactIdManyToManyEdge", + "description": "A `Contact` edge in the connection, with data from `ProjectContact`.", "fields": [ { "name": "cursor", @@ -106619,19 +104283,19 @@ }, { "name": "node", - "description": "The `CifUser` at the end of the edge.", + "description": "The `Contact` at the end of the edge.", "args": [], "type": { "kind": "OBJECT", - "name": "CifUser", + "name": "Contact", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "revisionTypesByCreatedBy", - "description": "Reads and enables pagination through a set of `RevisionType`.", + "name": "projectContactsByContactId", + "description": "Reads and enables pagination through a set of `ProjectContact`.", "args": [ { "name": "after", @@ -106658,7 +104322,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionTypeCondition", + "name": "ProjectContactCondition", "ofType": null }, "defaultValue": null @@ -106668,7 +104332,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionTypeFilter", + "name": "ProjectContactFilter", "ofType": null }, "defaultValue": null @@ -106715,7 +104379,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `RevisionType`.", + "description": "The method to use when ordering `ProjectContact`.", "type": { "kind": "LIST", "name": null, @@ -106724,7 +104388,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "RevisionTypesOrderBy", + "name": "ProjectContactsOrderBy", "ofType": null } } @@ -106737,7 +104401,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RevisionTypesConnection", + "name": "ProjectContactsConnection", "ofType": null } }, @@ -106752,12 +104416,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersBySectorArchivedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Sector`.", + "name": "CifUserContactsByProjectContactCreatedByAndContactIdManyToManyConnection", + "description": "A connection to a list of `Contact` values, with data from `ProjectContact`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Sector`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `Contact`, info from the `ProjectContact`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -106770,7 +104434,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersBySectorArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserContactsByProjectContactCreatedByAndContactIdManyToManyEdge", "ofType": null } } @@ -106781,7 +104445,7 @@ }, { "name": "nodes", - "description": "A list of `CifUser` objects.", + "description": "A list of `Contact` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -106791,7 +104455,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUser", + "name": "Contact", "ofType": null } } @@ -106817,7 +104481,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `CifUser` you could get from the connection.", + "description": "The count of *all* `Contact` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -106839,8 +104503,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersBySectorArchivedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `Sector`.", + "name": "CifUserContactsByProjectContactCreatedByAndContactIdManyToManyEdge", + "description": "A `Contact` edge in the connection, with data from `ProjectContact`.", "fields": [ { "name": "cursor", @@ -106856,19 +104520,19 @@ }, { "name": "node", - "description": "The `CifUser` at the end of the edge.", + "description": "The `Contact` at the end of the edge.", "args": [], "type": { "kind": "OBJECT", - "name": "CifUser", + "name": "Contact", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "sectorsByCreatedBy", - "description": "Reads and enables pagination through a set of `Sector`.", + "name": "projectContactsByContactId", + "description": "Reads and enables pagination through a set of `ProjectContact`.", "args": [ { "name": "after", @@ -106895,7 +104559,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "SectorCondition", + "name": "ProjectContactCondition", "ofType": null }, "defaultValue": null @@ -106905,7 +104569,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "SectorFilter", + "name": "ProjectContactFilter", "ofType": null }, "defaultValue": null @@ -106952,7 +104616,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Sector`.", + "description": "The method to use when ordering `ProjectContact`.", "type": { "kind": "LIST", "name": null, @@ -106961,7 +104625,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "SectorsOrderBy", + "name": "ProjectContactsOrderBy", "ofType": null } } @@ -106974,7 +104638,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SectorsConnection", + "name": "ProjectContactsConnection", "ofType": null } }, @@ -106989,12 +104653,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersBySectorArchivedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Sector`.", + "name": "CifUserContactsByProjectContactUpdatedByAndContactIdManyToManyConnection", + "description": "A connection to a list of `Contact` values, with data from `ProjectContact`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Sector`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `Contact`, info from the `ProjectContact`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -107007,7 +104671,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersBySectorArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserContactsByProjectContactUpdatedByAndContactIdManyToManyEdge", "ofType": null } } @@ -107018,7 +104682,7 @@ }, { "name": "nodes", - "description": "A list of `CifUser` objects.", + "description": "A list of `Contact` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -107028,7 +104692,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUser", + "name": "Contact", "ofType": null } } @@ -107054,7 +104718,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `CifUser` you could get from the connection.", + "description": "The count of *all* `Contact` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -107076,8 +104740,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersBySectorArchivedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `Sector`.", + "name": "CifUserContactsByProjectContactUpdatedByAndContactIdManyToManyEdge", + "description": "A `Contact` edge in the connection, with data from `ProjectContact`.", "fields": [ { "name": "cursor", @@ -107093,19 +104757,19 @@ }, { "name": "node", - "description": "The `CifUser` at the end of the edge.", + "description": "The `Contact` at the end of the edge.", "args": [], "type": { "kind": "OBJECT", - "name": "CifUser", + "name": "Contact", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "sectorsByUpdatedBy", - "description": "Reads and enables pagination through a set of `Sector`.", + "name": "projectContactsByContactId", + "description": "Reads and enables pagination through a set of `ProjectContact`.", "args": [ { "name": "after", @@ -107132,7 +104796,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "SectorCondition", + "name": "ProjectContactCondition", "ofType": null }, "defaultValue": null @@ -107142,7 +104806,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "SectorFilter", + "name": "ProjectContactFilter", "ofType": null }, "defaultValue": null @@ -107189,7 +104853,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Sector`.", + "description": "The method to use when ordering `ProjectContact`.", "type": { "kind": "LIST", "name": null, @@ -107198,7 +104862,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "SectorsOrderBy", + "name": "ProjectContactsOrderBy", "ofType": null } } @@ -107211,7 +104875,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SectorsConnection", + "name": "ProjectContactsConnection", "ofType": null } }, @@ -107225,962 +104889,332 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "CifUserCifUsersBySectorCreatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Sector`.", - "fields": [ + "kind": "INPUT_OBJECT", + "name": "CifUserFilter", + "description": "A filter to be used against `CifUser` object types. All fields are combined with a logical ‘and.’", + "fields": null, + "inputFields": [ { - "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Sector`, and the cursor to aid in pagination.", - "args": [], + "name": "additionalFundingSourceStatusesByArchivedBy", + "description": "Filter by the object’s `additionalFundingSourceStatusesByArchivedBy` relation.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CifUserCifUsersBySectorCreatedByAndArchivedByManyToManyEdge", - "ofType": null - } - } - } + "kind": "INPUT_OBJECT", + "name": "CifUserToManyAdditionalFundingSourceStatusFilter", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "nodes", - "description": "A list of `CifUser` objects.", - "args": [], + "name": "additionalFundingSourceStatusesByArchivedByExist", + "description": "Some related `additionalFundingSourceStatusesByArchivedBy` exist.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CifUser", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], + "name": "additionalFundingSourceStatusesByCreatedBy", + "description": "Filter by the object’s `additionalFundingSourceStatusesByCreatedBy` relation.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "CifUserToManyAdditionalFundingSourceStatusFilter", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "totalCount", - "description": "The count of *all* `CifUser` you could get from the connection.", - "args": [], + "name": "additionalFundingSourceStatusesByCreatedByExist", + "description": "Some related `additionalFundingSourceStatusesByCreatedBy` exist.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CifUserCifUsersBySectorCreatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `Sector`.", - "fields": [ + "defaultValue": null + }, { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], + "name": "additionalFundingSourceStatusesByUpdatedBy", + "description": "Filter by the object’s `additionalFundingSourceStatusesByUpdatedBy` relation.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CifUserToManyAdditionalFundingSourceStatusFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "additionalFundingSourceStatusesByUpdatedByExist", + "description": "Some related `additionalFundingSourceStatusesByUpdatedBy` exist.", "type": { "kind": "SCALAR", - "name": "Cursor", + "name": "Boolean", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "node", - "description": "The `CifUser` at the end of the edge.", - "args": [], + "name": "additionalFundingSourcesByArchivedBy", + "description": "Filter by the object’s `additionalFundingSourcesByArchivedBy` relation.", "type": { - "kind": "OBJECT", - "name": "CifUser", + "kind": "INPUT_OBJECT", + "name": "CifUserToManyAdditionalFundingSourceFilter", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "sectorsByArchivedBy", - "description": "Reads and enables pagination through a set of `Sector`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SectorCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SectorFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Sector`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SectorsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], + "name": "additionalFundingSourcesByArchivedByExist", + "description": "Some related `additionalFundingSourcesByArchivedBy` exist.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SectorsConnection", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CifUserCifUsersBySectorCreatedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Sector`.", - "fields": [ + "defaultValue": null + }, { - "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Sector`, and the cursor to aid in pagination.", - "args": [], + "name": "additionalFundingSourcesByCreatedBy", + "description": "Filter by the object’s `additionalFundingSourcesByCreatedBy` relation.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CifUserCifUsersBySectorCreatedByAndUpdatedByManyToManyEdge", - "ofType": null - } - } - } + "kind": "INPUT_OBJECT", + "name": "CifUserToManyAdditionalFundingSourceFilter", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "nodes", - "description": "A list of `CifUser` objects.", - "args": [], + "name": "additionalFundingSourcesByCreatedByExist", + "description": "Some related `additionalFundingSourcesByCreatedBy` exist.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CifUser", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], + "name": "additionalFundingSourcesByUpdatedBy", + "description": "Filter by the object’s `additionalFundingSourcesByUpdatedBy` relation.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "CifUserToManyAdditionalFundingSourceFilter", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "totalCount", - "description": "The count of *all* `CifUser` you could get from the connection.", - "args": [], + "name": "additionalFundingSourcesByUpdatedByExist", + "description": "Some related `additionalFundingSourcesByUpdatedBy` exist.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CifUserCifUsersBySectorCreatedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `Sector`.", - "fields": [ + "defaultValue": null + }, { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], + "name": "allowSubUpdate", + "description": "Filter by the object’s `allowSubUpdate` field.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amendmentTypesByArchivedBy", + "description": "Filter by the object’s `amendmentTypesByArchivedBy` relation.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CifUserToManyAmendmentTypeFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amendmentTypesByArchivedByExist", + "description": "Some related `amendmentTypesByArchivedBy` exist.", "type": { "kind": "SCALAR", - "name": "Cursor", + "name": "Boolean", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "node", - "description": "The `CifUser` at the end of the edge.", - "args": [], + "name": "amendmentTypesByCreatedBy", + "description": "Filter by the object’s `amendmentTypesByCreatedBy` relation.", "type": { - "kind": "OBJECT", - "name": "CifUser", + "kind": "INPUT_OBJECT", + "name": "CifUserToManyAmendmentTypeFilter", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "sectorsByUpdatedBy", - "description": "Reads and enables pagination through a set of `Sector`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SectorCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SectorFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Sector`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SectorsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], + "name": "amendmentTypesByCreatedByExist", + "description": "Some related `amendmentTypesByCreatedBy` exist.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SectorsConnection", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CifUserCifUsersBySectorUpdatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Sector`.", - "fields": [ + "defaultValue": null + }, { - "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Sector`, and the cursor to aid in pagination.", - "args": [], + "name": "amendmentTypesByUpdatedBy", + "description": "Filter by the object’s `amendmentTypesByUpdatedBy` relation.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CifUserCifUsersBySectorUpdatedByAndArchivedByManyToManyEdge", - "ofType": null - } - } - } + "kind": "INPUT_OBJECT", + "name": "CifUserToManyAmendmentTypeFilter", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "nodes", - "description": "A list of `CifUser` objects.", - "args": [], + "name": "amendmentTypesByUpdatedByExist", + "description": "Some related `amendmentTypesByUpdatedBy` exist.", "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": "Checks for all expressions in this list.", + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "CifUser", + "kind": "INPUT_OBJECT", + "name": "CifUserFilter", "ofType": null } } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], + "name": "archivedAt", + "description": "Filter by the object’s `archivedAt` field.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "totalCount", - "description": "The count of *all* `CifUser` you could get from the connection.", - "args": [], + "name": "archivedBy", + "description": "Filter by the object’s `archivedBy` field.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CifUserCifUsersBySectorUpdatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `Sector`.", - "fields": [ + "defaultValue": null + }, { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], + "name": "attachmentsByArchivedBy", + "description": "Filter by the object’s `attachmentsByArchivedBy` relation.", "type": { - "kind": "SCALAR", - "name": "Cursor", + "kind": "INPUT_OBJECT", + "name": "CifUserToManyAttachmentFilter", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "node", - "description": "The `CifUser` at the end of the edge.", - "args": [], + "name": "attachmentsByArchivedByExist", + "description": "Some related `attachmentsByArchivedBy` exist.", "type": { - "kind": "OBJECT", - "name": "CifUser", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "sectorsByArchivedBy", - "description": "Reads and enables pagination through a set of `Sector`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SectorCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SectorFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Sector`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SectorsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], + "name": "attachmentsByCreatedBy", + "description": "Filter by the object’s `attachmentsByCreatedBy` relation.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SectorsConnection", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "CifUserToManyAttachmentFilter", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CifUserCifUsersBySectorUpdatedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Sector`.", - "fields": [ + "defaultValue": null + }, { - "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Sector`, and the cursor to aid in pagination.", - "args": [], + "name": "attachmentsByCreatedByExist", + "description": "Some related `attachmentsByCreatedBy` exist.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CifUserCifUsersBySectorUpdatedByAndCreatedByManyToManyEdge", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "nodes", - "description": "A list of `CifUser` objects.", - "args": [], + "name": "attachmentsByUpdatedBy", + "description": "Filter by the object’s `attachmentsByUpdatedBy` relation.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CifUser", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "CifUserToManyAttachmentFilter", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], + "name": "attachmentsByUpdatedByExist", + "description": "Some related `attachmentsByUpdatedBy` exist.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "totalCount", - "description": "The count of *all* `CifUser` you could get from the connection.", - "args": [], + "name": "changeStatusesByArchivedBy", + "description": "Filter by the object’s `changeStatusesByArchivedBy` relation.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "CifUserToManyChangeStatusFilter", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CifUserCifUsersBySectorUpdatedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `Sector`.", - "fields": [ + "defaultValue": null + }, { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], + "name": "changeStatusesByArchivedByExist", + "description": "Some related `changeStatusesByArchivedBy` exist.", "type": { "kind": "SCALAR", - "name": "Cursor", + "name": "Boolean", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "node", - "description": "The `CifUser` at the end of the edge.", - "args": [], + "name": "changeStatusesByCreatedBy", + "description": "Filter by the object’s `changeStatusesByCreatedBy` relation.", "type": { - "kind": "OBJECT", - "name": "CifUser", + "kind": "INPUT_OBJECT", + "name": "CifUserToManyChangeStatusFilter", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "sectorsByCreatedBy", - "description": "Reads and enables pagination through a set of `Sector`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SectorCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SectorFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Sector`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SectorsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SectorsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CifUserCondition", - "description": "A condition to be used against `CifUser` object types. All fields are tested for equality and combined with a logical ‘and.’", - "fields": null, - "inputFields": [ - { - "name": "allowSubUpdate", - "description": "Checks for equality with the object’s `allowSubUpdate` field.", + "name": "changeStatusesByCreatedByExist", + "description": "Some related `changeStatusesByCreatedBy` exist.", "type": { "kind": "SCALAR", "name": "Boolean", @@ -108189,850 +105223,248 @@ "defaultValue": null }, { - "name": "archivedAt", - "description": "Checks for equality with the object’s `archivedAt` field.", + "name": "changeStatusesByUpdatedBy", + "description": "Filter by the object’s `changeStatusesByUpdatedBy` relation.", "type": { - "kind": "SCALAR", - "name": "Datetime", + "kind": "INPUT_OBJECT", + "name": "CifUserToManyChangeStatusFilter", "ofType": null }, "defaultValue": null }, { - "name": "archivedBy", - "description": "Checks for equality with the object’s `archivedBy` field.", + "name": "changeStatusesByUpdatedByExist", + "description": "Some related `changeStatusesByUpdatedBy` exist.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "createdAt", - "description": "Checks for equality with the object’s `createdAt` field.", + "name": "cifUserByArchivedBy", + "description": "Filter by the object’s `cifUserByArchivedBy` relation.", "type": { - "kind": "SCALAR", - "name": "Datetime", + "kind": "INPUT_OBJECT", + "name": "CifUserFilter", "ofType": null }, "defaultValue": null }, { - "name": "createdBy", - "description": "Checks for equality with the object’s `createdBy` field.", + "name": "cifUserByArchivedByExists", + "description": "A related `cifUserByArchivedBy` exists.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "emailAddress", - "description": "Checks for equality with the object’s `emailAddress` field.", + "name": "cifUserByCreatedBy", + "description": "Filter by the object’s `cifUserByCreatedBy` relation.", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CifUserFilter", "ofType": null }, "defaultValue": null }, { - "name": "familyName", - "description": "Checks for equality with the object’s `familyName` field.", + "name": "cifUserByCreatedByExists", + "description": "A related `cifUserByCreatedBy` exists.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "givenName", - "description": "Checks for equality with the object’s `givenName` field.", + "name": "cifUserByUpdatedBy", + "description": "Filter by the object’s `cifUserByUpdatedBy` relation.", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CifUserFilter", "ofType": null }, "defaultValue": null }, { - "name": "rowId", - "description": "Checks for equality with the object’s `rowId` field.", + "name": "cifUserByUpdatedByExists", + "description": "A related `cifUserByUpdatedBy` exists.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "sessionSub", - "description": "Checks for equality with the object’s `sessionSub` field.", + "name": "cifUsersByArchivedBy", + "description": "Filter by the object’s `cifUsersByArchivedBy` relation.", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CifUserToManyCifUserFilter", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt", - "description": "Checks for equality with the object’s `updatedAt` field.", + "name": "cifUsersByArchivedByExist", + "description": "Some related `cifUsersByArchivedBy` exist.", "type": { "kind": "SCALAR", - "name": "Datetime", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "updatedBy", - "description": "Checks for equality with the object’s `updatedBy` field.", + "name": "cifUsersByCreatedBy", + "description": "Filter by the object’s `cifUsersByCreatedBy` relation.", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "CifUserToManyCifUserFilter", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CifUserContactsByProjectContactArchivedByAndContactIdManyToManyConnection", - "description": "A connection to a list of `Contact` values, with data from `ProjectContact`.", - "fields": [ - { - "name": "edges", - "description": "A list of edges which contains the `Contact`, info from the `ProjectContact`, and the cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CifUserContactsByProjectContactArchivedByAndContactIdManyToManyEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "nodes", - "description": "A list of `Contact` objects.", - "args": [], + "name": "cifUsersByCreatedByExist", + "description": "Some related `cifUsersByCreatedBy` exist.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Contact", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], + "name": "cifUsersByUpdatedBy", + "description": "Filter by the object’s `cifUsersByUpdatedBy` relation.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "CifUserToManyCifUserFilter", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "totalCount", - "description": "The count of *all* `Contact` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CifUserContactsByProjectContactArchivedByAndContactIdManyToManyEdge", - "description": "A `Contact` edge in the connection, with data from `ProjectContact`.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], + "name": "cifUsersByUpdatedByExist", + "description": "Some related `cifUsersByUpdatedBy` exist.", "type": { "kind": "SCALAR", - "name": "Cursor", + "name": "Boolean", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "node", - "description": "The `Contact` at the end of the edge.", - "args": [], + "name": "contactsByArchivedBy", + "description": "Filter by the object’s `contactsByArchivedBy` relation.", "type": { - "kind": "OBJECT", - "name": "Contact", + "kind": "INPUT_OBJECT", + "name": "CifUserToManyContactFilter", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectContactsByContactId", - "description": "Reads and enables pagination through a set of `ProjectContact`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectContactCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectContactFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `ProjectContact`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProjectContactsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectContactsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CifUserContactsByProjectContactCreatedByAndContactIdManyToManyConnection", - "description": "A connection to a list of `Contact` values, with data from `ProjectContact`.", - "fields": [ - { - "name": "edges", - "description": "A list of edges which contains the `Contact`, info from the `ProjectContact`, and the cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CifUserContactsByProjectContactCreatedByAndContactIdManyToManyEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "nodes", - "description": "A list of `Contact` objects.", - "args": [], + "name": "contactsByArchivedByExist", + "description": "Some related `contactsByArchivedBy` exist.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Contact", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], + "name": "contactsByCreatedBy", + "description": "Filter by the object’s `contactsByCreatedBy` relation.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "CifUserToManyContactFilter", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "totalCount", - "description": "The count of *all* `Contact` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CifUserContactsByProjectContactCreatedByAndContactIdManyToManyEdge", - "description": "A `Contact` edge in the connection, with data from `ProjectContact`.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], + "name": "contactsByCreatedByExist", + "description": "Some related `contactsByCreatedBy` exist.", "type": { "kind": "SCALAR", - "name": "Cursor", + "name": "Boolean", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "node", - "description": "The `Contact` at the end of the edge.", - "args": [], + "name": "contactsByUpdatedBy", + "description": "Filter by the object’s `contactsByUpdatedBy` relation.", "type": { - "kind": "OBJECT", - "name": "Contact", + "kind": "INPUT_OBJECT", + "name": "CifUserToManyContactFilter", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectContactsByContactId", - "description": "Reads and enables pagination through a set of `ProjectContact`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectContactCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectContactFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `ProjectContact`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProjectContactsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectContactsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CifUserContactsByProjectContactUpdatedByAndContactIdManyToManyConnection", - "description": "A connection to a list of `Contact` values, with data from `ProjectContact`.", - "fields": [ - { - "name": "edges", - "description": "A list of edges which contains the `Contact`, info from the `ProjectContact`, and the cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CifUserContactsByProjectContactUpdatedByAndContactIdManyToManyEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "nodes", - "description": "A list of `Contact` objects.", - "args": [], + "name": "contactsByUpdatedByExist", + "description": "Some related `contactsByUpdatedBy` exist.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Contact", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], + "name": "createdAt", + "description": "Filter by the object’s `createdAt` field.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "totalCount", - "description": "The count of *all* `Contact` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CifUserContactsByProjectContactUpdatedByAndContactIdManyToManyEdge", - "description": "A `Contact` edge in the connection, with data from `ProjectContact`.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], + "name": "createdBy", + "description": "Filter by the object’s `createdBy` field.", "type": { - "kind": "SCALAR", - "name": "Cursor", + "kind": "INPUT_OBJECT", + "name": "IntFilter", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "node", - "description": "The `Contact` at the end of the edge.", - "args": [], + "name": "emailAddress", + "description": "Filter by the object’s `emailAddress` field.", "type": { - "kind": "OBJECT", - "name": "Contact", + "kind": "INPUT_OBJECT", + "name": "StringFilter", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "projectContactsByContactId", - "description": "Reads and enables pagination through a set of `ProjectContact`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectContactCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectContactFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `ProjectContact`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProjectContactsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectContactsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CifUserFilter", - "description": "A filter to be used against `CifUser` object types. All fields are combined with a logical ‘and.’", - "fields": null, - "inputFields": [ - { - "name": "additionalFundingSourceStatusesByArchivedBy", - "description": "Filter by the object’s `additionalFundingSourceStatusesByArchivedBy` relation.", + "name": "emissionIntensityPaymentPercentsByArchivedBy", + "description": "Filter by the object’s `emissionIntensityPaymentPercentsByArchivedBy` relation.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserToManyAdditionalFundingSourceStatusFilter", + "name": "CifUserToManyEmissionIntensityPaymentPercentFilter", "ofType": null }, "defaultValue": null }, { - "name": "additionalFundingSourceStatusesByArchivedByExist", - "description": "Some related `additionalFundingSourceStatusesByArchivedBy` exist.", + "name": "emissionIntensityPaymentPercentsByArchivedByExist", + "description": "Some related `emissionIntensityPaymentPercentsByArchivedBy` exist.", "type": { "kind": "SCALAR", "name": "Boolean", @@ -109041,18 +105473,18 @@ "defaultValue": null }, { - "name": "additionalFundingSourceStatusesByCreatedBy", - "description": "Filter by the object’s `additionalFundingSourceStatusesByCreatedBy` relation.", + "name": "emissionIntensityPaymentPercentsByCreatedBy", + "description": "Filter by the object’s `emissionIntensityPaymentPercentsByCreatedBy` relation.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserToManyAdditionalFundingSourceStatusFilter", + "name": "CifUserToManyEmissionIntensityPaymentPercentFilter", "ofType": null }, "defaultValue": null }, { - "name": "additionalFundingSourceStatusesByCreatedByExist", - "description": "Some related `additionalFundingSourceStatusesByCreatedBy` exist.", + "name": "emissionIntensityPaymentPercentsByCreatedByExist", + "description": "Some related `emissionIntensityPaymentPercentsByCreatedBy` exist.", "type": { "kind": "SCALAR", "name": "Boolean", @@ -109061,18 +105493,18 @@ "defaultValue": null }, { - "name": "additionalFundingSourceStatusesByUpdatedBy", - "description": "Filter by the object’s `additionalFundingSourceStatusesByUpdatedBy` relation.", + "name": "emissionIntensityPaymentPercentsByUpdatedBy", + "description": "Filter by the object’s `emissionIntensityPaymentPercentsByUpdatedBy` relation.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserToManyAdditionalFundingSourceStatusFilter", + "name": "CifUserToManyEmissionIntensityPaymentPercentFilter", "ofType": null }, "defaultValue": null }, { - "name": "additionalFundingSourceStatusesByUpdatedByExist", - "description": "Some related `additionalFundingSourceStatusesByUpdatedBy` exist.", + "name": "emissionIntensityPaymentPercentsByUpdatedByExist", + "description": "Some related `emissionIntensityPaymentPercentsByUpdatedBy` exist.", "type": { "kind": "SCALAR", "name": "Boolean", @@ -109081,18 +105513,18 @@ "defaultValue": null }, { - "name": "additionalFundingSourcesByArchivedBy", - "description": "Filter by the object’s `additionalFundingSourcesByArchivedBy` relation.", + "name": "emissionIntensityReportsByArchivedBy", + "description": "Filter by the object’s `emissionIntensityReportsByArchivedBy` relation.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserToManyAdditionalFundingSourceFilter", + "name": "CifUserToManyEmissionIntensityReportFilter", "ofType": null }, "defaultValue": null }, { - "name": "additionalFundingSourcesByArchivedByExist", - "description": "Some related `additionalFundingSourcesByArchivedBy` exist.", + "name": "emissionIntensityReportsByArchivedByExist", + "description": "Some related `emissionIntensityReportsByArchivedBy` exist.", "type": { "kind": "SCALAR", "name": "Boolean", @@ -109101,18 +105533,18 @@ "defaultValue": null }, { - "name": "additionalFundingSourcesByCreatedBy", - "description": "Filter by the object’s `additionalFundingSourcesByCreatedBy` relation.", + "name": "emissionIntensityReportsByCreatedBy", + "description": "Filter by the object’s `emissionIntensityReportsByCreatedBy` relation.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserToManyAdditionalFundingSourceFilter", + "name": "CifUserToManyEmissionIntensityReportFilter", "ofType": null }, "defaultValue": null }, { - "name": "additionalFundingSourcesByCreatedByExist", - "description": "Some related `additionalFundingSourcesByCreatedBy` exist.", + "name": "emissionIntensityReportsByCreatedByExist", + "description": "Some related `emissionIntensityReportsByCreatedBy` exist.", "type": { "kind": "SCALAR", "name": "Boolean", @@ -109121,18 +105553,18 @@ "defaultValue": null }, { - "name": "additionalFundingSourcesByUpdatedBy", - "description": "Filter by the object’s `additionalFundingSourcesByUpdatedBy` relation.", + "name": "emissionIntensityReportsByUpdatedBy", + "description": "Filter by the object’s `emissionIntensityReportsByUpdatedBy` relation.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserToManyAdditionalFundingSourceFilter", + "name": "CifUserToManyEmissionIntensityReportFilter", "ofType": null }, "defaultValue": null }, { - "name": "additionalFundingSourcesByUpdatedByExist", - "description": "Some related `additionalFundingSourcesByUpdatedBy` exist.", + "name": "emissionIntensityReportsByUpdatedByExist", + "description": "Some related `emissionIntensityReportsByUpdatedBy` exist.", "type": { "kind": "SCALAR", "name": "Boolean", @@ -109141,28 +105573,28 @@ "defaultValue": null }, { - "name": "allowSubUpdate", - "description": "Filter by the object’s `allowSubUpdate` field.", + "name": "familyName", + "description": "Filter by the object’s `familyName` field.", "type": { "kind": "INPUT_OBJECT", - "name": "BooleanFilter", + "name": "StringFilter", "ofType": null }, "defaultValue": null }, { - "name": "amendmentTypesByArchivedBy", - "description": "Filter by the object’s `amendmentTypesByArchivedBy` relation.", + "name": "formChangesByCreatedBy", + "description": "Filter by the object’s `formChangesByCreatedBy` relation.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserToManyAmendmentTypeFilter", + "name": "CifUserToManyFormChangeFilter", "ofType": null }, "defaultValue": null }, { - "name": "amendmentTypesByArchivedByExist", - "description": "Some related `amendmentTypesByArchivedBy` exist.", + "name": "formChangesByCreatedByExist", + "description": "Some related `formChangesByCreatedBy` exist.", "type": { "kind": "SCALAR", "name": "Boolean", @@ -109171,18 +105603,18 @@ "defaultValue": null }, { - "name": "amendmentTypesByCreatedBy", - "description": "Filter by the object’s `amendmentTypesByCreatedBy` relation.", + "name": "formChangesByUpdatedBy", + "description": "Filter by the object’s `formChangesByUpdatedBy` relation.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserToManyAmendmentTypeFilter", + "name": "CifUserToManyFormChangeFilter", "ofType": null }, "defaultValue": null }, { - "name": "amendmentTypesByCreatedByExist", - "description": "Some related `amendmentTypesByCreatedBy` exist.", + "name": "formChangesByUpdatedByExist", + "description": "Some related `formChangesByUpdatedBy` exist.", "type": { "kind": "SCALAR", "name": "Boolean", @@ -109191,18 +105623,18 @@ "defaultValue": null }, { - "name": "amendmentTypesByUpdatedBy", - "description": "Filter by the object’s `amendmentTypesByUpdatedBy` relation.", + "name": "formsByArchivedBy", + "description": "Filter by the object’s `formsByArchivedBy` relation.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserToManyAmendmentTypeFilter", + "name": "CifUserToManyFormFilter", "ofType": null }, "defaultValue": null }, { - "name": "amendmentTypesByUpdatedByExist", - "description": "Some related `amendmentTypesByUpdatedBy` exist.", + "name": "formsByArchivedByExist", + "description": "Some related `formsByArchivedBy` exist.", "type": { "kind": "SCALAR", "name": "Boolean", @@ -109211,566 +105643,8 @@ "defaultValue": null }, { - "name": "and", - "description": "Checks for all expressions in this list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CifUserFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "archivedAt", - "description": "Filter by the object’s `archivedAt` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "DatetimeFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "archivedBy", - "description": "Filter by the object’s `archivedBy` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IntFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "attachmentsByArchivedBy", - "description": "Filter by the object’s `attachmentsByArchivedBy` relation.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserToManyAttachmentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "attachmentsByArchivedByExist", - "description": "Some related `attachmentsByArchivedBy` exist.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "attachmentsByCreatedBy", - "description": "Filter by the object’s `attachmentsByCreatedBy` relation.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserToManyAttachmentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "attachmentsByCreatedByExist", - "description": "Some related `attachmentsByCreatedBy` exist.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "attachmentsByUpdatedBy", - "description": "Filter by the object’s `attachmentsByUpdatedBy` relation.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserToManyAttachmentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "attachmentsByUpdatedByExist", - "description": "Some related `attachmentsByUpdatedBy` exist.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "changeStatusesByArchivedBy", - "description": "Filter by the object’s `changeStatusesByArchivedBy` relation.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserToManyChangeStatusFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "changeStatusesByArchivedByExist", - "description": "Some related `changeStatusesByArchivedBy` exist.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "changeStatusesByCreatedBy", - "description": "Filter by the object’s `changeStatusesByCreatedBy` relation.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserToManyChangeStatusFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "changeStatusesByCreatedByExist", - "description": "Some related `changeStatusesByCreatedBy` exist.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "changeStatusesByUpdatedBy", - "description": "Filter by the object’s `changeStatusesByUpdatedBy` relation.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserToManyChangeStatusFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "changeStatusesByUpdatedByExist", - "description": "Some related `changeStatusesByUpdatedBy` exist.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "cifUserByArchivedBy", - "description": "Filter by the object’s `cifUserByArchivedBy` relation.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "cifUserByArchivedByExists", - "description": "A related `cifUserByArchivedBy` exists.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "cifUserByCreatedBy", - "description": "Filter by the object’s `cifUserByCreatedBy` relation.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "cifUserByCreatedByExists", - "description": "A related `cifUserByCreatedBy` exists.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "cifUserByUpdatedBy", - "description": "Filter by the object’s `cifUserByUpdatedBy` relation.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "cifUserByUpdatedByExists", - "description": "A related `cifUserByUpdatedBy` exists.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "cifUsersByArchivedBy", - "description": "Filter by the object’s `cifUsersByArchivedBy` relation.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserToManyCifUserFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "cifUsersByArchivedByExist", - "description": "Some related `cifUsersByArchivedBy` exist.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "cifUsersByCreatedBy", - "description": "Filter by the object’s `cifUsersByCreatedBy` relation.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserToManyCifUserFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "cifUsersByCreatedByExist", - "description": "Some related `cifUsersByCreatedBy` exist.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "cifUsersByUpdatedBy", - "description": "Filter by the object’s `cifUsersByUpdatedBy` relation.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserToManyCifUserFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "cifUsersByUpdatedByExist", - "description": "Some related `cifUsersByUpdatedBy` exist.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contactsByArchivedBy", - "description": "Filter by the object’s `contactsByArchivedBy` relation.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserToManyContactFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contactsByArchivedByExist", - "description": "Some related `contactsByArchivedBy` exist.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contactsByCreatedBy", - "description": "Filter by the object’s `contactsByCreatedBy` relation.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserToManyContactFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contactsByCreatedByExist", - "description": "Some related `contactsByCreatedBy` exist.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contactsByUpdatedBy", - "description": "Filter by the object’s `contactsByUpdatedBy` relation.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserToManyContactFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contactsByUpdatedByExist", - "description": "Some related `contactsByUpdatedBy` exist.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": "Filter by the object’s `createdAt` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "DatetimeFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdBy", - "description": "Filter by the object’s `createdBy` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IntFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emailAddress", - "description": "Filter by the object’s `emailAddress` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emissionIntensityPaymentPercentsByArchivedBy", - "description": "Filter by the object’s `emissionIntensityPaymentPercentsByArchivedBy` relation.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserToManyEmissionIntensityPaymentPercentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emissionIntensityPaymentPercentsByArchivedByExist", - "description": "Some related `emissionIntensityPaymentPercentsByArchivedBy` exist.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emissionIntensityPaymentPercentsByCreatedBy", - "description": "Filter by the object’s `emissionIntensityPaymentPercentsByCreatedBy` relation.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserToManyEmissionIntensityPaymentPercentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emissionIntensityPaymentPercentsByCreatedByExist", - "description": "Some related `emissionIntensityPaymentPercentsByCreatedBy` exist.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emissionIntensityPaymentPercentsByUpdatedBy", - "description": "Filter by the object’s `emissionIntensityPaymentPercentsByUpdatedBy` relation.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserToManyEmissionIntensityPaymentPercentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emissionIntensityPaymentPercentsByUpdatedByExist", - "description": "Some related `emissionIntensityPaymentPercentsByUpdatedBy` exist.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emissionIntensityReportsByArchivedBy", - "description": "Filter by the object’s `emissionIntensityReportsByArchivedBy` relation.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserToManyEmissionIntensityReportFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emissionIntensityReportsByArchivedByExist", - "description": "Some related `emissionIntensityReportsByArchivedBy` exist.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emissionIntensityReportsByCreatedBy", - "description": "Filter by the object’s `emissionIntensityReportsByCreatedBy` relation.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserToManyEmissionIntensityReportFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emissionIntensityReportsByCreatedByExist", - "description": "Some related `emissionIntensityReportsByCreatedBy` exist.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emissionIntensityReportsByUpdatedBy", - "description": "Filter by the object’s `emissionIntensityReportsByUpdatedBy` relation.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserToManyEmissionIntensityReportFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emissionIntensityReportsByUpdatedByExist", - "description": "Some related `emissionIntensityReportsByUpdatedBy` exist.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "familyName", - "description": "Filter by the object’s `familyName` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "formChangesByCreatedBy", - "description": "Filter by the object’s `formChangesByCreatedBy` relation.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserToManyFormChangeFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "formChangesByCreatedByExist", - "description": "Some related `formChangesByCreatedBy` exist.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "formChangesByUpdatedBy", - "description": "Filter by the object’s `formChangesByUpdatedBy` relation.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserToManyFormChangeFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "formChangesByUpdatedByExist", - "description": "Some related `formChangesByUpdatedBy` exist.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "formsByArchivedBy", - "description": "Filter by the object’s `formsByArchivedBy` relation.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserToManyFormFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "formsByArchivedByExist", - "description": "Some related `formsByArchivedBy` exist.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "formsByCreatedBy", - "description": "Filter by the object’s `formsByCreatedBy` relation.", + "name": "formsByCreatedBy", + "description": "Filter by the object’s `formsByCreatedBy` relation.", "type": { "kind": "INPUT_OBJECT", "name": "CifUserToManyFormFilter", @@ -110296,66 +106170,6 @@ }, "defaultValue": null }, - { - "name": "projectAttachmentsByArchivedBy", - "description": "Filter by the object’s `projectAttachmentsByArchivedBy` relation.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserToManyProjectAttachmentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "projectAttachmentsByArchivedByExist", - "description": "Some related `projectAttachmentsByArchivedBy` exist.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "projectAttachmentsByCreatedBy", - "description": "Filter by the object’s `projectAttachmentsByCreatedBy` relation.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserToManyProjectAttachmentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "projectAttachmentsByCreatedByExist", - "description": "Some related `projectAttachmentsByCreatedBy` exist.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "projectAttachmentsByUpdatedBy", - "description": "Filter by the object’s `projectAttachmentsByUpdatedBy` relation.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserToManyProjectAttachmentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "projectAttachmentsByUpdatedByExist", - "description": "Some related `projectAttachmentsByUpdatedBy` exist.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, { "name": "projectContactsByArchivedBy", "description": "Filter by the object’s `projectContactsByArchivedBy` relation.", @@ -117294,12 +113108,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectStatusesByFundingStreamProjectStatusArchivedByAndProjectStatusIdManyToManyConnection", - "description": "A connection to a list of `ProjectStatus` values, with data from `FundingStreamProjectStatus`.", + "name": "CifUserProjectStatusesByAttachmentArchivedByAndProjectStatusIdManyToManyConnection", + "description": "A connection to a list of `ProjectStatus` values, with data from `Attachment`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `ProjectStatus`, info from the `FundingStreamProjectStatus`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `ProjectStatus`, info from the `Attachment`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -117312,7 +113126,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectStatusesByFundingStreamProjectStatusArchivedByAndProjectStatusIdManyToManyEdge", + "name": "CifUserProjectStatusesByAttachmentArchivedByAndProjectStatusIdManyToManyEdge", "ofType": null } } @@ -117381,24 +113195,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectStatusesByFundingStreamProjectStatusArchivedByAndProjectStatusIdManyToManyEdge", - "description": "A `ProjectStatus` edge in the connection, with data from `FundingStreamProjectStatus`.", + "name": "CifUserProjectStatusesByAttachmentArchivedByAndProjectStatusIdManyToManyEdge", + "description": "A `ProjectStatus` edge in the connection, with data from `Attachment`.", "fields": [ { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fundingStreamProjectStatusesByProjectStatusId", - "description": "Reads and enables pagination through a set of `FundingStreamProjectStatus`.", + "name": "attachmentsByProjectStatusId", + "description": "Reads and enables pagination through a set of `Attachment`.", "args": [ { "name": "after", @@ -117425,7 +113227,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamProjectStatusCondition", + "name": "AttachmentCondition", "ofType": null }, "defaultValue": null @@ -117435,7 +113237,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamProjectStatusFilter", + "name": "AttachmentFilter", "ofType": null }, "defaultValue": null @@ -117482,7 +113284,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStreamProjectStatus`.", + "description": "The method to use when ordering `Attachment`.", "type": { "kind": "LIST", "name": null, @@ -117491,7 +113293,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamProjectStatusesOrderBy", + "name": "AttachmentsOrderBy", "ofType": null } } @@ -117504,13 +113306,25 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingStreamProjectStatusesConnection", + "name": "AttachmentsConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, + { + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "node", "description": "The `ProjectStatus` at the end of the edge.", @@ -117531,12 +113345,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectStatusesByFundingStreamProjectStatusCreatedByAndProjectStatusIdManyToManyConnection", - "description": "A connection to a list of `ProjectStatus` values, with data from `FundingStreamProjectStatus`.", + "name": "CifUserProjectStatusesByAttachmentCreatedByAndProjectStatusIdManyToManyConnection", + "description": "A connection to a list of `ProjectStatus` values, with data from `Attachment`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `ProjectStatus`, info from the `FundingStreamProjectStatus`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `ProjectStatus`, info from the `Attachment`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -117549,7 +113363,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectStatusesByFundingStreamProjectStatusCreatedByAndProjectStatusIdManyToManyEdge", + "name": "CifUserProjectStatusesByAttachmentCreatedByAndProjectStatusIdManyToManyEdge", "ofType": null } } @@ -117618,24 +113432,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectStatusesByFundingStreamProjectStatusCreatedByAndProjectStatusIdManyToManyEdge", - "description": "A `ProjectStatus` edge in the connection, with data from `FundingStreamProjectStatus`.", + "name": "CifUserProjectStatusesByAttachmentCreatedByAndProjectStatusIdManyToManyEdge", + "description": "A `ProjectStatus` edge in the connection, with data from `Attachment`.", "fields": [ { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fundingStreamProjectStatusesByProjectStatusId", - "description": "Reads and enables pagination through a set of `FundingStreamProjectStatus`.", + "name": "attachmentsByProjectStatusId", + "description": "Reads and enables pagination through a set of `Attachment`.", "args": [ { "name": "after", @@ -117662,7 +113464,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamProjectStatusCondition", + "name": "AttachmentCondition", "ofType": null }, "defaultValue": null @@ -117672,7 +113474,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamProjectStatusFilter", + "name": "AttachmentFilter", "ofType": null }, "defaultValue": null @@ -117719,7 +113521,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStreamProjectStatus`.", + "description": "The method to use when ordering `Attachment`.", "type": { "kind": "LIST", "name": null, @@ -117728,7 +113530,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamProjectStatusesOrderBy", + "name": "AttachmentsOrderBy", "ofType": null } } @@ -117741,13 +113543,25 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingStreamProjectStatusesConnection", + "name": "AttachmentsConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, + { + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "node", "description": "The `ProjectStatus` at the end of the edge.", @@ -117768,12 +113582,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectStatusesByFundingStreamProjectStatusUpdatedByAndProjectStatusIdManyToManyConnection", - "description": "A connection to a list of `ProjectStatus` values, with data from `FundingStreamProjectStatus`.", + "name": "CifUserProjectStatusesByAttachmentUpdatedByAndProjectStatusIdManyToManyConnection", + "description": "A connection to a list of `ProjectStatus` values, with data from `Attachment`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `ProjectStatus`, info from the `FundingStreamProjectStatus`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `ProjectStatus`, info from the `Attachment`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -117786,7 +113600,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectStatusesByFundingStreamProjectStatusUpdatedByAndProjectStatusIdManyToManyEdge", + "name": "CifUserProjectStatusesByAttachmentUpdatedByAndProjectStatusIdManyToManyEdge", "ofType": null } } @@ -117855,24 +113669,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectStatusesByFundingStreamProjectStatusUpdatedByAndProjectStatusIdManyToManyEdge", - "description": "A `ProjectStatus` edge in the connection, with data from `FundingStreamProjectStatus`.", + "name": "CifUserProjectStatusesByAttachmentUpdatedByAndProjectStatusIdManyToManyEdge", + "description": "A `ProjectStatus` edge in the connection, with data from `Attachment`.", "fields": [ { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fundingStreamProjectStatusesByProjectStatusId", - "description": "Reads and enables pagination through a set of `FundingStreamProjectStatus`.", + "name": "attachmentsByProjectStatusId", + "description": "Reads and enables pagination through a set of `Attachment`.", "args": [ { "name": "after", @@ -117899,7 +113701,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamProjectStatusCondition", + "name": "AttachmentCondition", "ofType": null }, "defaultValue": null @@ -117909,7 +113711,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamProjectStatusFilter", + "name": "AttachmentFilter", "ofType": null }, "defaultValue": null @@ -117956,7 +113758,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStreamProjectStatus`.", + "description": "The method to use when ordering `Attachment`.", "type": { "kind": "LIST", "name": null, @@ -117965,7 +113767,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamProjectStatusesOrderBy", + "name": "AttachmentsOrderBy", "ofType": null } } @@ -117978,13 +113780,25 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingStreamProjectStatusesConnection", + "name": "AttachmentsConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, + { + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "node", "description": "The `ProjectStatus` at the end of the edge.", @@ -118005,12 +113819,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectStatusesByProjectArchivedByAndProjectStatusIdManyToManyConnection", - "description": "A connection to a list of `ProjectStatus` values, with data from `Project`.", + "name": "CifUserProjectStatusesByFundingStreamProjectStatusArchivedByAndProjectStatusIdManyToManyConnection", + "description": "A connection to a list of `ProjectStatus` values, with data from `FundingStreamProjectStatus`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `ProjectStatus`, info from the `Project`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `ProjectStatus`, info from the `FundingStreamProjectStatus`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -118023,7 +113837,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectStatusesByProjectArchivedByAndProjectStatusIdManyToManyEdge", + "name": "CifUserProjectStatusesByFundingStreamProjectStatusArchivedByAndProjectStatusIdManyToManyEdge", "ofType": null } } @@ -118092,8 +113906,8 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectStatusesByProjectArchivedByAndProjectStatusIdManyToManyEdge", - "description": "A `ProjectStatus` edge in the connection, with data from `Project`.", + "name": "CifUserProjectStatusesByFundingStreamProjectStatusArchivedByAndProjectStatusIdManyToManyEdge", + "description": "A `ProjectStatus` edge in the connection, with data from `FundingStreamProjectStatus`.", "fields": [ { "name": "cursor", @@ -118108,20 +113922,8 @@ "deprecationReason": null }, { - "name": "node", - "description": "The `ProjectStatus` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectStatus", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectsByProjectStatusId", - "description": "Reads and enables pagination through a set of `Project`.", + "name": "fundingStreamProjectStatusesByProjectStatusId", + "description": "Reads and enables pagination through a set of `FundingStreamProjectStatus`.", "args": [ { "name": "after", @@ -118148,7 +113950,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCondition", + "name": "FundingStreamProjectStatusCondition", "ofType": null }, "defaultValue": null @@ -118158,7 +113960,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectFilter", + "name": "FundingStreamProjectStatusFilter", "ofType": null }, "defaultValue": null @@ -118205,7 +114007,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Project`.", + "description": "The method to use when ordering `FundingStreamProjectStatus`.", "type": { "kind": "LIST", "name": null, @@ -118214,7 +114016,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectsOrderBy", + "name": "FundingStreamProjectStatusesOrderBy", "ofType": null } } @@ -118227,12 +114029,24 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectsConnection", + "name": "FundingStreamProjectStatusesConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "node", + "description": "The `ProjectStatus` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectStatus", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -118242,12 +114056,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectStatusesByProjectCreatedByAndProjectStatusIdManyToManyConnection", - "description": "A connection to a list of `ProjectStatus` values, with data from `Project`.", + "name": "CifUserProjectStatusesByFundingStreamProjectStatusCreatedByAndProjectStatusIdManyToManyConnection", + "description": "A connection to a list of `ProjectStatus` values, with data from `FundingStreamProjectStatus`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `ProjectStatus`, info from the `Project`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `ProjectStatus`, info from the `FundingStreamProjectStatus`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -118260,7 +114074,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectStatusesByProjectCreatedByAndProjectStatusIdManyToManyEdge", + "name": "CifUserProjectStatusesByFundingStreamProjectStatusCreatedByAndProjectStatusIdManyToManyEdge", "ofType": null } } @@ -118329,8 +114143,8 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectStatusesByProjectCreatedByAndProjectStatusIdManyToManyEdge", - "description": "A `ProjectStatus` edge in the connection, with data from `Project`.", + "name": "CifUserProjectStatusesByFundingStreamProjectStatusCreatedByAndProjectStatusIdManyToManyEdge", + "description": "A `ProjectStatus` edge in the connection, with data from `FundingStreamProjectStatus`.", "fields": [ { "name": "cursor", @@ -118345,20 +114159,8 @@ "deprecationReason": null }, { - "name": "node", - "description": "The `ProjectStatus` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectStatus", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectsByProjectStatusId", - "description": "Reads and enables pagination through a set of `Project`.", + "name": "fundingStreamProjectStatusesByProjectStatusId", + "description": "Reads and enables pagination through a set of `FundingStreamProjectStatus`.", "args": [ { "name": "after", @@ -118385,7 +114187,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCondition", + "name": "FundingStreamProjectStatusCondition", "ofType": null }, "defaultValue": null @@ -118395,7 +114197,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectFilter", + "name": "FundingStreamProjectStatusFilter", "ofType": null }, "defaultValue": null @@ -118442,7 +114244,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Project`.", + "description": "The method to use when ordering `FundingStreamProjectStatus`.", "type": { "kind": "LIST", "name": null, @@ -118451,7 +114253,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectsOrderBy", + "name": "FundingStreamProjectStatusesOrderBy", "ofType": null } } @@ -118464,12 +114266,24 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectsConnection", + "name": "FundingStreamProjectStatusesConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "node", + "description": "The `ProjectStatus` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectStatus", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -118479,12 +114293,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectStatusesByProjectUpdatedByAndProjectStatusIdManyToManyConnection", - "description": "A connection to a list of `ProjectStatus` values, with data from `Project`.", + "name": "CifUserProjectStatusesByFundingStreamProjectStatusUpdatedByAndProjectStatusIdManyToManyConnection", + "description": "A connection to a list of `ProjectStatus` values, with data from `FundingStreamProjectStatus`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `ProjectStatus`, info from the `Project`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `ProjectStatus`, info from the `FundingStreamProjectStatus`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -118497,7 +114311,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectStatusesByProjectUpdatedByAndProjectStatusIdManyToManyEdge", + "name": "CifUserProjectStatusesByFundingStreamProjectStatusUpdatedByAndProjectStatusIdManyToManyEdge", "ofType": null } } @@ -118566,8 +114380,8 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectStatusesByProjectUpdatedByAndProjectStatusIdManyToManyEdge", - "description": "A `ProjectStatus` edge in the connection, with data from `Project`.", + "name": "CifUserProjectStatusesByFundingStreamProjectStatusUpdatedByAndProjectStatusIdManyToManyEdge", + "description": "A `ProjectStatus` edge in the connection, with data from `FundingStreamProjectStatus`.", "fields": [ { "name": "cursor", @@ -118582,20 +114396,8 @@ "deprecationReason": null }, { - "name": "node", - "description": "The `ProjectStatus` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectStatus", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectsByProjectStatusId", - "description": "Reads and enables pagination through a set of `Project`.", + "name": "fundingStreamProjectStatusesByProjectStatusId", + "description": "Reads and enables pagination through a set of `FundingStreamProjectStatus`.", "args": [ { "name": "after", @@ -118622,7 +114424,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCondition", + "name": "FundingStreamProjectStatusCondition", "ofType": null }, "defaultValue": null @@ -118632,7 +114434,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectFilter", + "name": "FundingStreamProjectStatusFilter", "ofType": null }, "defaultValue": null @@ -118679,7 +114481,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Project`.", + "description": "The method to use when ordering `FundingStreamProjectStatus`.", "type": { "kind": "LIST", "name": null, @@ -118688,7 +114490,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectsOrderBy", + "name": "FundingStreamProjectStatusesOrderBy", "ofType": null } } @@ -118701,12 +114503,24 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectsConnection", + "name": "FundingStreamProjectStatusesConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "node", + "description": "The `ProjectStatus` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectStatus", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -118716,12 +114530,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectTypesByProjectArchivedByAndProjectTypeManyToManyConnection", - "description": "A connection to a list of `ProjectType` values, with data from `Project`.", + "name": "CifUserProjectStatusesByProjectArchivedByAndProjectStatusIdManyToManyConnection", + "description": "A connection to a list of `ProjectStatus` values, with data from `Project`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `ProjectType`, info from the `Project`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `ProjectStatus`, info from the `Project`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -118734,7 +114548,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectTypesByProjectArchivedByAndProjectTypeManyToManyEdge", + "name": "CifUserProjectStatusesByProjectArchivedByAndProjectStatusIdManyToManyEdge", "ofType": null } } @@ -118745,7 +114559,7 @@ }, { "name": "nodes", - "description": "A list of `ProjectType` objects.", + "description": "A list of `ProjectStatus` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -118755,7 +114569,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectType", + "name": "ProjectStatus", "ofType": null } } @@ -118781,7 +114595,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `ProjectType` you could get from the connection.", + "description": "The count of *all* `ProjectStatus` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -118803,8 +114617,8 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectTypesByProjectArchivedByAndProjectTypeManyToManyEdge", - "description": "A `ProjectType` edge in the connection, with data from `Project`.", + "name": "CifUserProjectStatusesByProjectArchivedByAndProjectStatusIdManyToManyEdge", + "description": "A `ProjectStatus` edge in the connection, with data from `Project`.", "fields": [ { "name": "cursor", @@ -118820,18 +114634,18 @@ }, { "name": "node", - "description": "The `ProjectType` at the end of the edge.", + "description": "The `ProjectStatus` at the end of the edge.", "args": [], "type": { "kind": "OBJECT", - "name": "ProjectType", + "name": "ProjectStatus", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectsByProjectType", + "name": "projectsByProjectStatusId", "description": "Reads and enables pagination through a set of `Project`.", "args": [ { @@ -118953,12 +114767,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectTypesByProjectCreatedByAndProjectTypeManyToManyConnection", - "description": "A connection to a list of `ProjectType` values, with data from `Project`.", + "name": "CifUserProjectStatusesByProjectCreatedByAndProjectStatusIdManyToManyConnection", + "description": "A connection to a list of `ProjectStatus` values, with data from `Project`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `ProjectType`, info from the `Project`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `ProjectStatus`, info from the `Project`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -118971,7 +114785,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectTypesByProjectCreatedByAndProjectTypeManyToManyEdge", + "name": "CifUserProjectStatusesByProjectCreatedByAndProjectStatusIdManyToManyEdge", "ofType": null } } @@ -118982,7 +114796,7 @@ }, { "name": "nodes", - "description": "A list of `ProjectType` objects.", + "description": "A list of `ProjectStatus` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -118992,7 +114806,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectType", + "name": "ProjectStatus", "ofType": null } } @@ -119018,7 +114832,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `ProjectType` you could get from the connection.", + "description": "The count of *all* `ProjectStatus` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -119040,8 +114854,8 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectTypesByProjectCreatedByAndProjectTypeManyToManyEdge", - "description": "A `ProjectType` edge in the connection, with data from `Project`.", + "name": "CifUserProjectStatusesByProjectCreatedByAndProjectStatusIdManyToManyEdge", + "description": "A `ProjectStatus` edge in the connection, with data from `Project`.", "fields": [ { "name": "cursor", @@ -119057,18 +114871,18 @@ }, { "name": "node", - "description": "The `ProjectType` at the end of the edge.", + "description": "The `ProjectStatus` at the end of the edge.", "args": [], "type": { "kind": "OBJECT", - "name": "ProjectType", + "name": "ProjectStatus", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectsByProjectType", + "name": "projectsByProjectStatusId", "description": "Reads and enables pagination through a set of `Project`.", "args": [ { @@ -119190,12 +115004,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectTypesByProjectUpdatedByAndProjectTypeManyToManyConnection", - "description": "A connection to a list of `ProjectType` values, with data from `Project`.", + "name": "CifUserProjectStatusesByProjectUpdatedByAndProjectStatusIdManyToManyConnection", + "description": "A connection to a list of `ProjectStatus` values, with data from `Project`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `ProjectType`, info from the `Project`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `ProjectStatus`, info from the `Project`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -119208,7 +115022,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectTypesByProjectUpdatedByAndProjectTypeManyToManyEdge", + "name": "CifUserProjectStatusesByProjectUpdatedByAndProjectStatusIdManyToManyEdge", "ofType": null } } @@ -119219,7 +115033,7 @@ }, { "name": "nodes", - "description": "A list of `ProjectType` objects.", + "description": "A list of `ProjectStatus` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -119229,7 +115043,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectType", + "name": "ProjectStatus", "ofType": null } } @@ -119255,7 +115069,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `ProjectType` you could get from the connection.", + "description": "The count of *all* `ProjectStatus` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -119277,8 +115091,8 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectTypesByProjectUpdatedByAndProjectTypeManyToManyEdge", - "description": "A `ProjectType` edge in the connection, with data from `Project`.", + "name": "CifUserProjectStatusesByProjectUpdatedByAndProjectStatusIdManyToManyEdge", + "description": "A `ProjectStatus` edge in the connection, with data from `Project`.", "fields": [ { "name": "cursor", @@ -119294,18 +115108,18 @@ }, { "name": "node", - "description": "The `ProjectType` at the end of the edge.", + "description": "The `ProjectStatus` at the end of the edge.", "args": [], "type": { "kind": "OBJECT", - "name": "ProjectType", + "name": "ProjectStatus", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectsByProjectType", + "name": "projectsByProjectStatusId", "description": "Reads and enables pagination through a set of `Project`.", "args": [ { @@ -119427,12 +115241,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByAdditionalFundingSourceArchivedByAndProjectIdManyToManyConnection", - "description": "A connection to a list of `Project` values, with data from `AdditionalFundingSource`.", + "name": "CifUserProjectTypesByProjectArchivedByAndProjectTypeManyToManyConnection", + "description": "A connection to a list of `ProjectType` values, with data from `Project`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `Project`, info from the `AdditionalFundingSource`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `ProjectType`, info from the `Project`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -119445,7 +115259,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByAdditionalFundingSourceArchivedByAndProjectIdManyToManyEdge", + "name": "CifUserProjectTypesByProjectArchivedByAndProjectTypeManyToManyEdge", "ofType": null } } @@ -119456,7 +115270,7 @@ }, { "name": "nodes", - "description": "A list of `Project` objects.", + "description": "A list of `ProjectType` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -119466,7 +115280,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Project", + "name": "ProjectType", "ofType": null } } @@ -119492,7 +115306,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `Project` you could get from the connection.", + "description": "The count of *all* `ProjectType` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -119514,12 +115328,36 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByAdditionalFundingSourceArchivedByAndProjectIdManyToManyEdge", - "description": "A `Project` edge in the connection, with data from `AdditionalFundingSource`.", + "name": "CifUserProjectTypesByProjectArchivedByAndProjectTypeManyToManyEdge", + "description": "A `ProjectType` edge in the connection, with data from `Project`.", "fields": [ { - "name": "additionalFundingSourcesByProjectId", - "description": "Reads and enables pagination through a set of `AdditionalFundingSource`.", + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": "The `ProjectType` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectsByProjectType", + "description": "Reads and enables pagination through a set of `Project`.", "args": [ { "name": "after", @@ -119546,7 +115384,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceCondition", + "name": "ProjectCondition", "ofType": null }, "defaultValue": null @@ -119556,7 +115394,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceFilter", + "name": "ProjectFilter", "ofType": null }, "defaultValue": null @@ -119603,7 +115441,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `AdditionalFundingSource`.", + "description": "The method to use when ordering `Project`.", "type": { "kind": "LIST", "name": null, @@ -119612,7 +115450,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AdditionalFundingSourcesOrderBy", + "name": "ProjectsOrderBy", "ofType": null } } @@ -119625,36 +115463,12 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AdditionalFundingSourcesConnection", + "name": "ProjectsConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `Project` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Project", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null } ], "inputFields": null, @@ -119664,12 +115478,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByAdditionalFundingSourceCreatedByAndProjectIdManyToManyConnection", - "description": "A connection to a list of `Project` values, with data from `AdditionalFundingSource`.", + "name": "CifUserProjectTypesByProjectCreatedByAndProjectTypeManyToManyConnection", + "description": "A connection to a list of `ProjectType` values, with data from `Project`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `Project`, info from the `AdditionalFundingSource`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `ProjectType`, info from the `Project`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -119682,7 +115496,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByAdditionalFundingSourceCreatedByAndProjectIdManyToManyEdge", + "name": "CifUserProjectTypesByProjectCreatedByAndProjectTypeManyToManyEdge", "ofType": null } } @@ -119693,7 +115507,7 @@ }, { "name": "nodes", - "description": "A list of `Project` objects.", + "description": "A list of `ProjectType` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -119703,7 +115517,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Project", + "name": "ProjectType", "ofType": null } } @@ -119729,7 +115543,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `Project` you could get from the connection.", + "description": "The count of *all* `ProjectType` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -119751,12 +115565,36 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByAdditionalFundingSourceCreatedByAndProjectIdManyToManyEdge", - "description": "A `Project` edge in the connection, with data from `AdditionalFundingSource`.", + "name": "CifUserProjectTypesByProjectCreatedByAndProjectTypeManyToManyEdge", + "description": "A `ProjectType` edge in the connection, with data from `Project`.", "fields": [ { - "name": "additionalFundingSourcesByProjectId", - "description": "Reads and enables pagination through a set of `AdditionalFundingSource`.", + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": "The `ProjectType` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectsByProjectType", + "description": "Reads and enables pagination through a set of `Project`.", "args": [ { "name": "after", @@ -119783,7 +115621,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceCondition", + "name": "ProjectCondition", "ofType": null }, "defaultValue": null @@ -119793,7 +115631,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceFilter", + "name": "ProjectFilter", "ofType": null }, "defaultValue": null @@ -119840,7 +115678,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `AdditionalFundingSource`.", + "description": "The method to use when ordering `Project`.", "type": { "kind": "LIST", "name": null, @@ -119849,7 +115687,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AdditionalFundingSourcesOrderBy", + "name": "ProjectsOrderBy", "ofType": null } } @@ -119862,36 +115700,12 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AdditionalFundingSourcesConnection", + "name": "ProjectsConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `Project` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Project", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null } ], "inputFields": null, @@ -119901,12 +115715,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByAdditionalFundingSourceUpdatedByAndProjectIdManyToManyConnection", - "description": "A connection to a list of `Project` values, with data from `AdditionalFundingSource`.", + "name": "CifUserProjectTypesByProjectUpdatedByAndProjectTypeManyToManyConnection", + "description": "A connection to a list of `ProjectType` values, with data from `Project`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `Project`, info from the `AdditionalFundingSource`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `ProjectType`, info from the `Project`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -119919,7 +115733,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByAdditionalFundingSourceUpdatedByAndProjectIdManyToManyEdge", + "name": "CifUserProjectTypesByProjectUpdatedByAndProjectTypeManyToManyEdge", "ofType": null } } @@ -119930,7 +115744,7 @@ }, { "name": "nodes", - "description": "A list of `Project` objects.", + "description": "A list of `ProjectType` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -119940,7 +115754,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Project", + "name": "ProjectType", "ofType": null } } @@ -119966,7 +115780,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `Project` you could get from the connection.", + "description": "The count of *all* `ProjectType` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -119988,12 +115802,36 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByAdditionalFundingSourceUpdatedByAndProjectIdManyToManyEdge", - "description": "A `Project` edge in the connection, with data from `AdditionalFundingSource`.", + "name": "CifUserProjectTypesByProjectUpdatedByAndProjectTypeManyToManyEdge", + "description": "A `ProjectType` edge in the connection, with data from `Project`.", "fields": [ { - "name": "additionalFundingSourcesByProjectId", - "description": "Reads and enables pagination through a set of `AdditionalFundingSource`.", + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": "The `ProjectType` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectsByProjectType", + "description": "Reads and enables pagination through a set of `Project`.", "args": [ { "name": "after", @@ -120020,7 +115858,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceCondition", + "name": "ProjectCondition", "ofType": null }, "defaultValue": null @@ -120030,7 +115868,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceFilter", + "name": "ProjectFilter", "ofType": null }, "defaultValue": null @@ -120077,7 +115915,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `AdditionalFundingSource`.", + "description": "The method to use when ordering `Project`.", "type": { "kind": "LIST", "name": null, @@ -120086,7 +115924,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AdditionalFundingSourcesOrderBy", + "name": "ProjectsOrderBy", "ofType": null } } @@ -120099,36 +115937,12 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AdditionalFundingSourcesConnection", + "name": "ProjectsConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `Project` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Project", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null } ], "inputFields": null, @@ -120138,12 +115952,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByFundingParameterArchivedByAndProjectIdManyToManyConnection", - "description": "A connection to a list of `Project` values, with data from `FundingParameter`.", + "name": "CifUserProjectsByAdditionalFundingSourceArchivedByAndProjectIdManyToManyConnection", + "description": "A connection to a list of `Project` values, with data from `AdditionalFundingSource`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `Project`, info from the `FundingParameter`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `Project`, info from the `AdditionalFundingSource`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -120156,7 +115970,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByFundingParameterArchivedByAndProjectIdManyToManyEdge", + "name": "CifUserProjectsByAdditionalFundingSourceArchivedByAndProjectIdManyToManyEdge", "ofType": null } } @@ -120225,24 +116039,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByFundingParameterArchivedByAndProjectIdManyToManyEdge", - "description": "A `Project` edge in the connection, with data from `FundingParameter`.", + "name": "CifUserProjectsByAdditionalFundingSourceArchivedByAndProjectIdManyToManyEdge", + "description": "A `Project` edge in the connection, with data from `AdditionalFundingSource`.", "fields": [ { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fundingParametersByProjectId", - "description": "Reads and enables pagination through a set of `FundingParameter`.", + "name": "additionalFundingSourcesByProjectId", + "description": "Reads and enables pagination through a set of `AdditionalFundingSource`.", "args": [ { "name": "after", @@ -120269,7 +116071,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingParameterCondition", + "name": "AdditionalFundingSourceCondition", "ofType": null }, "defaultValue": null @@ -120279,7 +116081,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingParameterFilter", + "name": "AdditionalFundingSourceFilter", "ofType": null }, "defaultValue": null @@ -120326,7 +116128,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingParameter`.", + "description": "The method to use when ordering `AdditionalFundingSource`.", "type": { "kind": "LIST", "name": null, @@ -120335,7 +116137,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingParametersOrderBy", + "name": "AdditionalFundingSourcesOrderBy", "ofType": null } } @@ -120348,13 +116150,25 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingParametersConnection", + "name": "AdditionalFundingSourcesConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, + { + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "node", "description": "The `Project` at the end of the edge.", @@ -120375,12 +116189,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByFundingParameterCreatedByAndProjectIdManyToManyConnection", - "description": "A connection to a list of `Project` values, with data from `FundingParameter`.", + "name": "CifUserProjectsByAdditionalFundingSourceCreatedByAndProjectIdManyToManyConnection", + "description": "A connection to a list of `Project` values, with data from `AdditionalFundingSource`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `Project`, info from the `FundingParameter`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `Project`, info from the `AdditionalFundingSource`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -120393,7 +116207,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByFundingParameterCreatedByAndProjectIdManyToManyEdge", + "name": "CifUserProjectsByAdditionalFundingSourceCreatedByAndProjectIdManyToManyEdge", "ofType": null } } @@ -120462,24 +116276,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByFundingParameterCreatedByAndProjectIdManyToManyEdge", - "description": "A `Project` edge in the connection, with data from `FundingParameter`.", + "name": "CifUserProjectsByAdditionalFundingSourceCreatedByAndProjectIdManyToManyEdge", + "description": "A `Project` edge in the connection, with data from `AdditionalFundingSource`.", "fields": [ { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fundingParametersByProjectId", - "description": "Reads and enables pagination through a set of `FundingParameter`.", + "name": "additionalFundingSourcesByProjectId", + "description": "Reads and enables pagination through a set of `AdditionalFundingSource`.", "args": [ { "name": "after", @@ -120506,7 +116308,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingParameterCondition", + "name": "AdditionalFundingSourceCondition", "ofType": null }, "defaultValue": null @@ -120516,7 +116318,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingParameterFilter", + "name": "AdditionalFundingSourceFilter", "ofType": null }, "defaultValue": null @@ -120563,7 +116365,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingParameter`.", + "description": "The method to use when ordering `AdditionalFundingSource`.", "type": { "kind": "LIST", "name": null, @@ -120572,7 +116374,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingParametersOrderBy", + "name": "AdditionalFundingSourcesOrderBy", "ofType": null } } @@ -120585,13 +116387,25 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingParametersConnection", + "name": "AdditionalFundingSourcesConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, + { + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "node", "description": "The `Project` at the end of the edge.", @@ -120612,12 +116426,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByFundingParameterUpdatedByAndProjectIdManyToManyConnection", - "description": "A connection to a list of `Project` values, with data from `FundingParameter`.", + "name": "CifUserProjectsByAdditionalFundingSourceUpdatedByAndProjectIdManyToManyConnection", + "description": "A connection to a list of `Project` values, with data from `AdditionalFundingSource`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `Project`, info from the `FundingParameter`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `Project`, info from the `AdditionalFundingSource`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -120630,7 +116444,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByFundingParameterUpdatedByAndProjectIdManyToManyEdge", + "name": "CifUserProjectsByAdditionalFundingSourceUpdatedByAndProjectIdManyToManyEdge", "ofType": null } } @@ -120699,24 +116513,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByFundingParameterUpdatedByAndProjectIdManyToManyEdge", - "description": "A `Project` edge in the connection, with data from `FundingParameter`.", + "name": "CifUserProjectsByAdditionalFundingSourceUpdatedByAndProjectIdManyToManyEdge", + "description": "A `Project` edge in the connection, with data from `AdditionalFundingSource`.", "fields": [ { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fundingParametersByProjectId", - "description": "Reads and enables pagination through a set of `FundingParameter`.", + "name": "additionalFundingSourcesByProjectId", + "description": "Reads and enables pagination through a set of `AdditionalFundingSource`.", "args": [ { "name": "after", @@ -120743,7 +116545,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingParameterCondition", + "name": "AdditionalFundingSourceCondition", "ofType": null }, "defaultValue": null @@ -120753,7 +116555,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingParameterFilter", + "name": "AdditionalFundingSourceFilter", "ofType": null }, "defaultValue": null @@ -120800,7 +116602,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingParameter`.", + "description": "The method to use when ordering `AdditionalFundingSource`.", "type": { "kind": "LIST", "name": null, @@ -120809,7 +116611,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingParametersOrderBy", + "name": "AdditionalFundingSourcesOrderBy", "ofType": null } } @@ -120822,13 +116624,25 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingParametersConnection", + "name": "AdditionalFundingSourcesConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, + { + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "node", "description": "The `Project` at the end of the edge.", @@ -120849,12 +116663,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByProjectAttachmentArchivedByAndProjectIdManyToManyConnection", - "description": "A connection to a list of `Project` values, with data from `ProjectAttachment`.", + "name": "CifUserProjectsByAttachmentArchivedByAndProjectIdManyToManyConnection", + "description": "A connection to a list of `Project` values, with data from `Attachment`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `Project`, info from the `ProjectAttachment`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `Project`, info from the `Attachment`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -120867,7 +116681,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByProjectAttachmentArchivedByAndProjectIdManyToManyEdge", + "name": "CifUserProjectsByAttachmentArchivedByAndProjectIdManyToManyEdge", "ofType": null } } @@ -120936,36 +116750,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByProjectAttachmentArchivedByAndProjectIdManyToManyEdge", - "description": "A `Project` edge in the connection, with data from `ProjectAttachment`.", + "name": "CifUserProjectsByAttachmentArchivedByAndProjectIdManyToManyEdge", + "description": "A `Project` edge in the connection, with data from `Attachment`.", "fields": [ { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `Project` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Project", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectAttachmentsByProjectId", - "description": "Reads and enables pagination through a set of `ProjectAttachment`.", + "name": "attachmentsByProjectId", + "description": "Reads and enables pagination through a set of `Attachment`.", "args": [ { "name": "after", @@ -120992,7 +116782,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentCondition", + "name": "AttachmentCondition", "ofType": null }, "defaultValue": null @@ -121002,7 +116792,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentFilter", + "name": "AttachmentFilter", "ofType": null }, "defaultValue": null @@ -121049,7 +116839,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectAttachment`.", + "description": "The method to use when ordering `Attachment`.", "type": { "kind": "LIST", "name": null, @@ -121058,7 +116848,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectAttachmentsOrderBy", + "name": "AttachmentsOrderBy", "ofType": null } } @@ -121071,12 +116861,36 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectAttachmentsConnection", + "name": "AttachmentsConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": "The `Project` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -121086,12 +116900,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByProjectAttachmentCreatedByAndProjectIdManyToManyConnection", - "description": "A connection to a list of `Project` values, with data from `ProjectAttachment`.", + "name": "CifUserProjectsByAttachmentCreatedByAndProjectIdManyToManyConnection", + "description": "A connection to a list of `Project` values, with data from `Attachment`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `Project`, info from the `ProjectAttachment`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `Project`, info from the `Attachment`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -121104,7 +116918,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByProjectAttachmentCreatedByAndProjectIdManyToManyEdge", + "name": "CifUserProjectsByAttachmentCreatedByAndProjectIdManyToManyEdge", "ofType": null } } @@ -121173,36 +116987,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByProjectAttachmentCreatedByAndProjectIdManyToManyEdge", - "description": "A `Project` edge in the connection, with data from `ProjectAttachment`.", + "name": "CifUserProjectsByAttachmentCreatedByAndProjectIdManyToManyEdge", + "description": "A `Project` edge in the connection, with data from `Attachment`.", "fields": [ { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `Project` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Project", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectAttachmentsByProjectId", - "description": "Reads and enables pagination through a set of `ProjectAttachment`.", + "name": "attachmentsByProjectId", + "description": "Reads and enables pagination through a set of `Attachment`.", "args": [ { "name": "after", @@ -121229,7 +117019,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentCondition", + "name": "AttachmentCondition", "ofType": null }, "defaultValue": null @@ -121239,7 +117029,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentFilter", + "name": "AttachmentFilter", "ofType": null }, "defaultValue": null @@ -121286,7 +117076,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectAttachment`.", + "description": "The method to use when ordering `Attachment`.", "type": { "kind": "LIST", "name": null, @@ -121295,7 +117085,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectAttachmentsOrderBy", + "name": "AttachmentsOrderBy", "ofType": null } } @@ -121308,12 +117098,36 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectAttachmentsConnection", + "name": "AttachmentsConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": "The `Project` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -121323,12 +117137,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByProjectAttachmentUpdatedByAndProjectIdManyToManyConnection", - "description": "A connection to a list of `Project` values, with data from `ProjectAttachment`.", + "name": "CifUserProjectsByAttachmentUpdatedByAndProjectIdManyToManyConnection", + "description": "A connection to a list of `Project` values, with data from `Attachment`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `Project`, info from the `ProjectAttachment`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `Project`, info from the `Attachment`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -121341,7 +117155,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByProjectAttachmentUpdatedByAndProjectIdManyToManyEdge", + "name": "CifUserProjectsByAttachmentUpdatedByAndProjectIdManyToManyEdge", "ofType": null } } @@ -121410,36 +117224,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByProjectAttachmentUpdatedByAndProjectIdManyToManyEdge", - "description": "A `Project` edge in the connection, with data from `ProjectAttachment`.", + "name": "CifUserProjectsByAttachmentUpdatedByAndProjectIdManyToManyEdge", + "description": "A `Project` edge in the connection, with data from `Attachment`.", "fields": [ { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `Project` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Project", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectAttachmentsByProjectId", - "description": "Reads and enables pagination through a set of `ProjectAttachment`.", + "name": "attachmentsByProjectId", + "description": "Reads and enables pagination through a set of `Attachment`.", "args": [ { "name": "after", @@ -121466,7 +117256,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentCondition", + "name": "AttachmentCondition", "ofType": null }, "defaultValue": null @@ -121476,7 +117266,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentFilter", + "name": "AttachmentFilter", "ofType": null }, "defaultValue": null @@ -121523,7 +117313,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectAttachment`.", + "description": "The method to use when ordering `Attachment`.", "type": { "kind": "LIST", "name": null, @@ -121532,7 +117322,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectAttachmentsOrderBy", + "name": "AttachmentsOrderBy", "ofType": null } } @@ -121545,12 +117335,36 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectAttachmentsConnection", + "name": "AttachmentsConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": "The `Project` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -121560,12 +117374,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByProjectContactArchivedByAndProjectIdManyToManyConnection", - "description": "A connection to a list of `Project` values, with data from `ProjectContact`.", + "name": "CifUserProjectsByFundingParameterArchivedByAndProjectIdManyToManyConnection", + "description": "A connection to a list of `Project` values, with data from `FundingParameter`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `Project`, info from the `ProjectContact`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `Project`, info from the `FundingParameter`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -121578,7 +117392,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByProjectContactArchivedByAndProjectIdManyToManyEdge", + "name": "CifUserProjectsByFundingParameterArchivedByAndProjectIdManyToManyEdge", "ofType": null } } @@ -121647,8 +117461,8 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByProjectContactArchivedByAndProjectIdManyToManyEdge", - "description": "A `Project` edge in the connection, with data from `ProjectContact`.", + "name": "CifUserProjectsByFundingParameterArchivedByAndProjectIdManyToManyEdge", + "description": "A `Project` edge in the connection, with data from `FundingParameter`.", "fields": [ { "name": "cursor", @@ -121663,20 +117477,8 @@ "deprecationReason": null }, { - "name": "node", - "description": "The `Project` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Project", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectContactsByProjectId", - "description": "Reads and enables pagination through a set of `ProjectContact`.", + "name": "fundingParametersByProjectId", + "description": "Reads and enables pagination through a set of `FundingParameter`.", "args": [ { "name": "after", @@ -121703,7 +117505,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactCondition", + "name": "FundingParameterCondition", "ofType": null }, "defaultValue": null @@ -121713,7 +117515,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactFilter", + "name": "FundingParameterFilter", "ofType": null }, "defaultValue": null @@ -121760,7 +117562,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectContact`.", + "description": "The method to use when ordering `FundingParameter`.", "type": { "kind": "LIST", "name": null, @@ -121769,7 +117571,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectContactsOrderBy", + "name": "FundingParametersOrderBy", "ofType": null } } @@ -121782,12 +117584,24 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectContactsConnection", + "name": "FundingParametersConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "node", + "description": "The `Project` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -121797,12 +117611,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByProjectContactCreatedByAndProjectIdManyToManyConnection", - "description": "A connection to a list of `Project` values, with data from `ProjectContact`.", + "name": "CifUserProjectsByFundingParameterCreatedByAndProjectIdManyToManyConnection", + "description": "A connection to a list of `Project` values, with data from `FundingParameter`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `Project`, info from the `ProjectContact`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `Project`, info from the `FundingParameter`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -121815,7 +117629,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByProjectContactCreatedByAndProjectIdManyToManyEdge", + "name": "CifUserProjectsByFundingParameterCreatedByAndProjectIdManyToManyEdge", "ofType": null } } @@ -121884,8 +117698,8 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByProjectContactCreatedByAndProjectIdManyToManyEdge", - "description": "A `Project` edge in the connection, with data from `ProjectContact`.", + "name": "CifUserProjectsByFundingParameterCreatedByAndProjectIdManyToManyEdge", + "description": "A `Project` edge in the connection, with data from `FundingParameter`.", "fields": [ { "name": "cursor", @@ -121900,20 +117714,8 @@ "deprecationReason": null }, { - "name": "node", - "description": "The `Project` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Project", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectContactsByProjectId", - "description": "Reads and enables pagination through a set of `ProjectContact`.", + "name": "fundingParametersByProjectId", + "description": "Reads and enables pagination through a set of `FundingParameter`.", "args": [ { "name": "after", @@ -121940,7 +117742,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactCondition", + "name": "FundingParameterCondition", "ofType": null }, "defaultValue": null @@ -121950,7 +117752,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactFilter", + "name": "FundingParameterFilter", "ofType": null }, "defaultValue": null @@ -121997,7 +117799,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectContact`.", + "description": "The method to use when ordering `FundingParameter`.", "type": { "kind": "LIST", "name": null, @@ -122006,7 +117808,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectContactsOrderBy", + "name": "FundingParametersOrderBy", "ofType": null } } @@ -122019,12 +117821,24 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectContactsConnection", + "name": "FundingParametersConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "node", + "description": "The `Project` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -122034,12 +117848,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByProjectContactUpdatedByAndProjectIdManyToManyConnection", - "description": "A connection to a list of `Project` values, with data from `ProjectContact`.", + "name": "CifUserProjectsByFundingParameterUpdatedByAndProjectIdManyToManyConnection", + "description": "A connection to a list of `Project` values, with data from `FundingParameter`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `Project`, info from the `ProjectContact`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `Project`, info from the `FundingParameter`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -122052,7 +117866,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByProjectContactUpdatedByAndProjectIdManyToManyEdge", + "name": "CifUserProjectsByFundingParameterUpdatedByAndProjectIdManyToManyEdge", "ofType": null } } @@ -122121,8 +117935,8 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByProjectContactUpdatedByAndProjectIdManyToManyEdge", - "description": "A `Project` edge in the connection, with data from `ProjectContact`.", + "name": "CifUserProjectsByFundingParameterUpdatedByAndProjectIdManyToManyEdge", + "description": "A `Project` edge in the connection, with data from `FundingParameter`.", "fields": [ { "name": "cursor", @@ -122137,20 +117951,8 @@ "deprecationReason": null }, { - "name": "node", - "description": "The `Project` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Project", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectContactsByProjectId", - "description": "Reads and enables pagination through a set of `ProjectContact`.", + "name": "fundingParametersByProjectId", + "description": "Reads and enables pagination through a set of `FundingParameter`.", "args": [ { "name": "after", @@ -122177,7 +117979,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactCondition", + "name": "FundingParameterCondition", "ofType": null }, "defaultValue": null @@ -122187,7 +117989,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactFilter", + "name": "FundingParameterFilter", "ofType": null }, "defaultValue": null @@ -122234,7 +118036,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectContact`.", + "description": "The method to use when ordering `FundingParameter`.", "type": { "kind": "LIST", "name": null, @@ -122243,7 +118045,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectContactsOrderBy", + "name": "FundingParametersOrderBy", "ofType": null } } @@ -122256,12 +118058,24 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectContactsConnection", + "name": "FundingParametersConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "node", + "description": "The `Project` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -122271,12 +118085,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByProjectManagerArchivedByAndProjectIdManyToManyConnection", - "description": "A connection to a list of `Project` values, with data from `ProjectManager`.", + "name": "CifUserProjectsByProjectContactArchivedByAndProjectIdManyToManyConnection", + "description": "A connection to a list of `Project` values, with data from `ProjectContact`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `Project`, info from the `ProjectManager`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `Project`, info from the `ProjectContact`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -122289,7 +118103,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByProjectManagerArchivedByAndProjectIdManyToManyEdge", + "name": "CifUserProjectsByProjectContactArchivedByAndProjectIdManyToManyEdge", "ofType": null } } @@ -122358,8 +118172,8 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByProjectManagerArchivedByAndProjectIdManyToManyEdge", - "description": "A `Project` edge in the connection, with data from `ProjectManager`.", + "name": "CifUserProjectsByProjectContactArchivedByAndProjectIdManyToManyEdge", + "description": "A `Project` edge in the connection, with data from `ProjectContact`.", "fields": [ { "name": "cursor", @@ -122386,8 +118200,8 @@ "deprecationReason": null }, { - "name": "projectManagersByProjectId", - "description": "Reads and enables pagination through a set of `ProjectManager`.", + "name": "projectContactsByProjectId", + "description": "Reads and enables pagination through a set of `ProjectContact`.", "args": [ { "name": "after", @@ -122414,7 +118228,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerCondition", + "name": "ProjectContactCondition", "ofType": null }, "defaultValue": null @@ -122424,7 +118238,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerFilter", + "name": "ProjectContactFilter", "ofType": null }, "defaultValue": null @@ -122471,7 +118285,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManager`.", + "description": "The method to use when ordering `ProjectContact`.", "type": { "kind": "LIST", "name": null, @@ -122480,7 +118294,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagersOrderBy", + "name": "ProjectContactsOrderBy", "ofType": null } } @@ -122493,7 +118307,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectManagersConnection", + "name": "ProjectContactsConnection", "ofType": null } }, @@ -122508,12 +118322,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByProjectManagerCifUserIdAndProjectIdManyToManyConnection", - "description": "A connection to a list of `Project` values, with data from `ProjectManager`.", + "name": "CifUserProjectsByProjectContactCreatedByAndProjectIdManyToManyConnection", + "description": "A connection to a list of `Project` values, with data from `ProjectContact`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `Project`, info from the `ProjectManager`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `Project`, info from the `ProjectContact`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -122526,7 +118340,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByProjectManagerCifUserIdAndProjectIdManyToManyEdge", + "name": "CifUserProjectsByProjectContactCreatedByAndProjectIdManyToManyEdge", "ofType": null } } @@ -122595,8 +118409,8 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByProjectManagerCifUserIdAndProjectIdManyToManyEdge", - "description": "A `Project` edge in the connection, with data from `ProjectManager`.", + "name": "CifUserProjectsByProjectContactCreatedByAndProjectIdManyToManyEdge", + "description": "A `Project` edge in the connection, with data from `ProjectContact`.", "fields": [ { "name": "cursor", @@ -122623,8 +118437,8 @@ "deprecationReason": null }, { - "name": "projectManagersByProjectId", - "description": "Reads and enables pagination through a set of `ProjectManager`.", + "name": "projectContactsByProjectId", + "description": "Reads and enables pagination through a set of `ProjectContact`.", "args": [ { "name": "after", @@ -122651,7 +118465,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerCondition", + "name": "ProjectContactCondition", "ofType": null }, "defaultValue": null @@ -122661,7 +118475,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerFilter", + "name": "ProjectContactFilter", "ofType": null }, "defaultValue": null @@ -122708,7 +118522,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManager`.", + "description": "The method to use when ordering `ProjectContact`.", "type": { "kind": "LIST", "name": null, @@ -122717,7 +118531,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagersOrderBy", + "name": "ProjectContactsOrderBy", "ofType": null } } @@ -122730,7 +118544,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectManagersConnection", + "name": "ProjectContactsConnection", "ofType": null } }, @@ -122745,12 +118559,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByProjectManagerCreatedByAndProjectIdManyToManyConnection", - "description": "A connection to a list of `Project` values, with data from `ProjectManager`.", + "name": "CifUserProjectsByProjectContactUpdatedByAndProjectIdManyToManyConnection", + "description": "A connection to a list of `Project` values, with data from `ProjectContact`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `Project`, info from the `ProjectManager`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `Project`, info from the `ProjectContact`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -122763,7 +118577,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByProjectManagerCreatedByAndProjectIdManyToManyEdge", + "name": "CifUserProjectsByProjectContactUpdatedByAndProjectIdManyToManyEdge", "ofType": null } } @@ -122832,8 +118646,8 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByProjectManagerCreatedByAndProjectIdManyToManyEdge", - "description": "A `Project` edge in the connection, with data from `ProjectManager`.", + "name": "CifUserProjectsByProjectContactUpdatedByAndProjectIdManyToManyEdge", + "description": "A `Project` edge in the connection, with data from `ProjectContact`.", "fields": [ { "name": "cursor", @@ -122860,8 +118674,8 @@ "deprecationReason": null }, { - "name": "projectManagersByProjectId", - "description": "Reads and enables pagination through a set of `ProjectManager`.", + "name": "projectContactsByProjectId", + "description": "Reads and enables pagination through a set of `ProjectContact`.", "args": [ { "name": "after", @@ -122888,7 +118702,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerCondition", + "name": "ProjectContactCondition", "ofType": null }, "defaultValue": null @@ -122898,7 +118712,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerFilter", + "name": "ProjectContactFilter", "ofType": null }, "defaultValue": null @@ -122945,7 +118759,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManager`.", + "description": "The method to use when ordering `ProjectContact`.", "type": { "kind": "LIST", "name": null, @@ -122954,7 +118768,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagersOrderBy", + "name": "ProjectContactsOrderBy", "ofType": null } } @@ -122967,7 +118781,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectManagersConnection", + "name": "ProjectContactsConnection", "ofType": null } }, @@ -122982,7 +118796,7 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByProjectManagerUpdatedByAndProjectIdManyToManyConnection", + "name": "CifUserProjectsByProjectManagerArchivedByAndProjectIdManyToManyConnection", "description": "A connection to a list of `Project` values, with data from `ProjectManager`.", "fields": [ { @@ -123000,7 +118814,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByProjectManagerUpdatedByAndProjectIdManyToManyEdge", + "name": "CifUserProjectsByProjectManagerArchivedByAndProjectIdManyToManyEdge", "ofType": null } } @@ -123069,7 +118883,7 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByProjectManagerUpdatedByAndProjectIdManyToManyEdge", + "name": "CifUserProjectsByProjectManagerArchivedByAndProjectIdManyToManyEdge", "description": "A `Project` edge in the connection, with data from `ProjectManager`.", "fields": [ { @@ -123219,12 +119033,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByProjectRevisionCreatedByAndProjectIdManyToManyConnection", - "description": "A connection to a list of `Project` values, with data from `ProjectRevision`.", + "name": "CifUserProjectsByProjectManagerCifUserIdAndProjectIdManyToManyConnection", + "description": "A connection to a list of `Project` values, with data from `ProjectManager`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `Project`, info from the `ProjectRevision`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `Project`, info from the `ProjectManager`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -123237,7 +119051,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByProjectRevisionCreatedByAndProjectIdManyToManyEdge", + "name": "CifUserProjectsByProjectManagerCifUserIdAndProjectIdManyToManyEdge", "ofType": null } } @@ -123306,8 +119120,8 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByProjectRevisionCreatedByAndProjectIdManyToManyEdge", - "description": "A `Project` edge in the connection, with data from `ProjectRevision`.", + "name": "CifUserProjectsByProjectManagerCifUserIdAndProjectIdManyToManyEdge", + "description": "A `Project` edge in the connection, with data from `ProjectManager`.", "fields": [ { "name": "cursor", @@ -123334,8 +119148,8 @@ "deprecationReason": null }, { - "name": "projectRevisionsByProjectId", - "description": "Reads and enables pagination through a set of `ProjectRevision`.", + "name": "projectManagersByProjectId", + "description": "Reads and enables pagination through a set of `ProjectManager`.", "args": [ { "name": "after", @@ -123362,7 +119176,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionCondition", + "name": "ProjectManagerCondition", "ofType": null }, "defaultValue": null @@ -123372,7 +119186,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionFilter", + "name": "ProjectManagerFilter", "ofType": null }, "defaultValue": null @@ -123387,6 +119201,16 @@ }, "defaultValue": null }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -123409,7 +119233,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectRevision`.", + "description": "The method to use when ordering `ProjectManager`.", "type": { "kind": "LIST", "name": null, @@ -123418,7 +119242,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectRevisionsOrderBy", + "name": "ProjectManagersOrderBy", "ofType": null } } @@ -123431,7 +119255,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectRevisionsConnection", + "name": "ProjectManagersConnection", "ofType": null } }, @@ -123446,12 +119270,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByProjectRevisionUpdatedByAndProjectIdManyToManyConnection", - "description": "A connection to a list of `Project` values, with data from `ProjectRevision`.", + "name": "CifUserProjectsByProjectManagerCreatedByAndProjectIdManyToManyConnection", + "description": "A connection to a list of `Project` values, with data from `ProjectManager`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `Project`, info from the `ProjectRevision`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `Project`, info from the `ProjectManager`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -123464,7 +119288,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByProjectRevisionUpdatedByAndProjectIdManyToManyEdge", + "name": "CifUserProjectsByProjectManagerCreatedByAndProjectIdManyToManyEdge", "ofType": null } } @@ -123533,8 +119357,8 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByProjectRevisionUpdatedByAndProjectIdManyToManyEdge", - "description": "A `Project` edge in the connection, with data from `ProjectRevision`.", + "name": "CifUserProjectsByProjectManagerCreatedByAndProjectIdManyToManyEdge", + "description": "A `Project` edge in the connection, with data from `ProjectManager`.", "fields": [ { "name": "cursor", @@ -123561,8 +119385,8 @@ "deprecationReason": null }, { - "name": "projectRevisionsByProjectId", - "description": "Reads and enables pagination through a set of `ProjectRevision`.", + "name": "projectManagersByProjectId", + "description": "Reads and enables pagination through a set of `ProjectManager`.", "args": [ { "name": "after", @@ -123589,7 +119413,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionCondition", + "name": "ProjectManagerCondition", "ofType": null }, "defaultValue": null @@ -123599,7 +119423,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionFilter", + "name": "ProjectManagerFilter", "ofType": null }, "defaultValue": null @@ -123614,6 +119438,16 @@ }, "defaultValue": null }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -123636,7 +119470,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectRevision`.", + "description": "The method to use when ordering `ProjectManager`.", "type": { "kind": "LIST", "name": null, @@ -123645,7 +119479,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectRevisionsOrderBy", + "name": "ProjectManagersOrderBy", "ofType": null } } @@ -123658,7 +119492,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectRevisionsConnection", + "name": "ProjectManagersConnection", "ofType": null } }, @@ -123673,12 +119507,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByReportingRequirementArchivedByAndProjectIdManyToManyConnection", - "description": "A connection to a list of `Project` values, with data from `ReportingRequirement`.", + "name": "CifUserProjectsByProjectManagerUpdatedByAndProjectIdManyToManyConnection", + "description": "A connection to a list of `Project` values, with data from `ProjectManager`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `Project`, info from the `ReportingRequirement`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `Project`, info from the `ProjectManager`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -123691,7 +119525,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByReportingRequirementArchivedByAndProjectIdManyToManyEdge", + "name": "CifUserProjectsByProjectManagerUpdatedByAndProjectIdManyToManyEdge", "ofType": null } } @@ -123760,8 +119594,8 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByReportingRequirementArchivedByAndProjectIdManyToManyEdge", - "description": "A `Project` edge in the connection, with data from `ReportingRequirement`.", + "name": "CifUserProjectsByProjectManagerUpdatedByAndProjectIdManyToManyEdge", + "description": "A `Project` edge in the connection, with data from `ProjectManager`.", "fields": [ { "name": "cursor", @@ -123788,8 +119622,8 @@ "deprecationReason": null }, { - "name": "reportingRequirementsByProjectId", - "description": "Reads and enables pagination through a set of `ReportingRequirement`.", + "name": "projectManagersByProjectId", + "description": "Reads and enables pagination through a set of `ProjectManager`.", "args": [ { "name": "after", @@ -123816,7 +119650,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementCondition", + "name": "ProjectManagerCondition", "ofType": null }, "defaultValue": null @@ -123826,7 +119660,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementFilter", + "name": "ProjectManagerFilter", "ofType": null }, "defaultValue": null @@ -123873,7 +119707,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportingRequirement`.", + "description": "The method to use when ordering `ProjectManager`.", "type": { "kind": "LIST", "name": null, @@ -123882,7 +119716,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportingRequirementsOrderBy", + "name": "ProjectManagersOrderBy", "ofType": null } } @@ -123895,7 +119729,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ReportingRequirementsConnection", + "name": "ProjectManagersConnection", "ofType": null } }, @@ -123910,12 +119744,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByReportingRequirementCreatedByAndProjectIdManyToManyConnection", - "description": "A connection to a list of `Project` values, with data from `ReportingRequirement`.", + "name": "CifUserProjectsByProjectRevisionCreatedByAndProjectIdManyToManyConnection", + "description": "A connection to a list of `Project` values, with data from `ProjectRevision`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `Project`, info from the `ReportingRequirement`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `Project`, info from the `ProjectRevision`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -123928,7 +119762,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByReportingRequirementCreatedByAndProjectIdManyToManyEdge", + "name": "CifUserProjectsByProjectRevisionCreatedByAndProjectIdManyToManyEdge", "ofType": null } } @@ -123997,8 +119831,8 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByReportingRequirementCreatedByAndProjectIdManyToManyEdge", - "description": "A `Project` edge in the connection, with data from `ReportingRequirement`.", + "name": "CifUserProjectsByProjectRevisionCreatedByAndProjectIdManyToManyEdge", + "description": "A `Project` edge in the connection, with data from `ProjectRevision`.", "fields": [ { "name": "cursor", @@ -124025,8 +119859,8 @@ "deprecationReason": null }, { - "name": "reportingRequirementsByProjectId", - "description": "Reads and enables pagination through a set of `ReportingRequirement`.", + "name": "projectRevisionsByProjectId", + "description": "Reads and enables pagination through a set of `ProjectRevision`.", "args": [ { "name": "after", @@ -124053,7 +119887,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementCondition", + "name": "ProjectRevisionCondition", "ofType": null }, "defaultValue": null @@ -124063,7 +119897,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementFilter", + "name": "ProjectRevisionFilter", "ofType": null }, "defaultValue": null @@ -124078,16 +119912,6 @@ }, "defaultValue": null }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -124110,7 +119934,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportingRequirement`.", + "description": "The method to use when ordering `ProjectRevision`.", "type": { "kind": "LIST", "name": null, @@ -124119,7 +119943,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportingRequirementsOrderBy", + "name": "ProjectRevisionsOrderBy", "ofType": null } } @@ -124132,7 +119956,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ReportingRequirementsConnection", + "name": "ProjectRevisionsConnection", "ofType": null } }, @@ -124147,12 +119971,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByReportingRequirementUpdatedByAndProjectIdManyToManyConnection", - "description": "A connection to a list of `Project` values, with data from `ReportingRequirement`.", + "name": "CifUserProjectsByProjectRevisionUpdatedByAndProjectIdManyToManyConnection", + "description": "A connection to a list of `Project` values, with data from `ProjectRevision`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `Project`, info from the `ReportingRequirement`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `Project`, info from the `ProjectRevision`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -124165,7 +119989,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByReportingRequirementUpdatedByAndProjectIdManyToManyEdge", + "name": "CifUserProjectsByProjectRevisionUpdatedByAndProjectIdManyToManyEdge", "ofType": null } } @@ -124234,8 +120058,8 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByReportingRequirementUpdatedByAndProjectIdManyToManyEdge", - "description": "A `Project` edge in the connection, with data from `ReportingRequirement`.", + "name": "CifUserProjectsByProjectRevisionUpdatedByAndProjectIdManyToManyEdge", + "description": "A `Project` edge in the connection, with data from `ProjectRevision`.", "fields": [ { "name": "cursor", @@ -124262,8 +120086,8 @@ "deprecationReason": null }, { - "name": "reportingRequirementsByProjectId", - "description": "Reads and enables pagination through a set of `ReportingRequirement`.", + "name": "projectRevisionsByProjectId", + "description": "Reads and enables pagination through a set of `ProjectRevision`.", "args": [ { "name": "after", @@ -124290,7 +120114,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementCondition", + "name": "ProjectRevisionCondition", "ofType": null }, "defaultValue": null @@ -124300,7 +120124,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementFilter", + "name": "ProjectRevisionFilter", "ofType": null }, "defaultValue": null @@ -124315,16 +120139,6 @@ }, "defaultValue": null }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -124347,7 +120161,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportingRequirement`.", + "description": "The method to use when ordering `ProjectRevision`.", "type": { "kind": "LIST", "name": null, @@ -124356,7 +120170,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportingRequirementsOrderBy", + "name": "ProjectRevisionsOrderBy", "ofType": null } } @@ -124369,7 +120183,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ReportingRequirementsConnection", + "name": "ProjectRevisionsConnection", "ofType": null } }, @@ -124384,12 +120198,12 @@ }, { "kind": "OBJECT", - "name": "CifUserReportTypesByReportingRequirementArchivedByAndReportTypeManyToManyConnection", - "description": "A connection to a list of `ReportType` values, with data from `ReportingRequirement`.", + "name": "CifUserProjectsByReportingRequirementArchivedByAndProjectIdManyToManyConnection", + "description": "A connection to a list of `Project` values, with data from `ReportingRequirement`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `ReportType`, info from the `ReportingRequirement`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `Project`, info from the `ReportingRequirement`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -124402,7 +120216,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserReportTypesByReportingRequirementArchivedByAndReportTypeManyToManyEdge", + "name": "CifUserProjectsByReportingRequirementArchivedByAndProjectIdManyToManyEdge", "ofType": null } } @@ -124413,7 +120227,7 @@ }, { "name": "nodes", - "description": "A list of `ReportType` objects.", + "description": "A list of `Project` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -124423,7 +120237,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ReportType", + "name": "Project", "ofType": null } } @@ -124449,7 +120263,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `ReportType` you could get from the connection.", + "description": "The count of *all* `Project` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -124471,8 +120285,8 @@ }, { "kind": "OBJECT", - "name": "CifUserReportTypesByReportingRequirementArchivedByAndReportTypeManyToManyEdge", - "description": "A `ReportType` edge in the connection, with data from `ReportingRequirement`.", + "name": "CifUserProjectsByReportingRequirementArchivedByAndProjectIdManyToManyEdge", + "description": "A `Project` edge in the connection, with data from `ReportingRequirement`.", "fields": [ { "name": "cursor", @@ -124488,18 +120302,18 @@ }, { "name": "node", - "description": "The `ReportType` at the end of the edge.", + "description": "The `Project` at the end of the edge.", "args": [], "type": { "kind": "OBJECT", - "name": "ReportType", + "name": "Project", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "reportingRequirementsByReportType", + "name": "reportingRequirementsByProjectId", "description": "Reads and enables pagination through a set of `ReportingRequirement`.", "args": [ { @@ -124621,12 +120435,12 @@ }, { "kind": "OBJECT", - "name": "CifUserReportTypesByReportingRequirementCreatedByAndReportTypeManyToManyConnection", - "description": "A connection to a list of `ReportType` values, with data from `ReportingRequirement`.", + "name": "CifUserProjectsByReportingRequirementCreatedByAndProjectIdManyToManyConnection", + "description": "A connection to a list of `Project` values, with data from `ReportingRequirement`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `ReportType`, info from the `ReportingRequirement`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `Project`, info from the `ReportingRequirement`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -124639,7 +120453,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserReportTypesByReportingRequirementCreatedByAndReportTypeManyToManyEdge", + "name": "CifUserProjectsByReportingRequirementCreatedByAndProjectIdManyToManyEdge", "ofType": null } } @@ -124650,7 +120464,7 @@ }, { "name": "nodes", - "description": "A list of `ReportType` objects.", + "description": "A list of `Project` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -124660,7 +120474,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ReportType", + "name": "Project", "ofType": null } } @@ -124686,7 +120500,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `ReportType` you could get from the connection.", + "description": "The count of *all* `Project` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -124708,8 +120522,8 @@ }, { "kind": "OBJECT", - "name": "CifUserReportTypesByReportingRequirementCreatedByAndReportTypeManyToManyEdge", - "description": "A `ReportType` edge in the connection, with data from `ReportingRequirement`.", + "name": "CifUserProjectsByReportingRequirementCreatedByAndProjectIdManyToManyEdge", + "description": "A `Project` edge in the connection, with data from `ReportingRequirement`.", "fields": [ { "name": "cursor", @@ -124725,18 +120539,18 @@ }, { "name": "node", - "description": "The `ReportType` at the end of the edge.", + "description": "The `Project` at the end of the edge.", "args": [], "type": { "kind": "OBJECT", - "name": "ReportType", + "name": "Project", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "reportingRequirementsByReportType", + "name": "reportingRequirementsByProjectId", "description": "Reads and enables pagination through a set of `ReportingRequirement`.", "args": [ { @@ -124858,12 +120672,12 @@ }, { "kind": "OBJECT", - "name": "CifUserReportTypesByReportingRequirementUpdatedByAndReportTypeManyToManyConnection", - "description": "A connection to a list of `ReportType` values, with data from `ReportingRequirement`.", + "name": "CifUserProjectsByReportingRequirementUpdatedByAndProjectIdManyToManyConnection", + "description": "A connection to a list of `Project` values, with data from `ReportingRequirement`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `ReportType`, info from the `ReportingRequirement`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `Project`, info from the `ReportingRequirement`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -124876,7 +120690,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserReportTypesByReportingRequirementUpdatedByAndReportTypeManyToManyEdge", + "name": "CifUserProjectsByReportingRequirementUpdatedByAndProjectIdManyToManyEdge", "ofType": null } } @@ -124887,7 +120701,7 @@ }, { "name": "nodes", - "description": "A list of `ReportType` objects.", + "description": "A list of `Project` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -124897,7 +120711,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ReportType", + "name": "Project", "ofType": null } } @@ -124923,7 +120737,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `ReportType` you could get from the connection.", + "description": "The count of *all* `Project` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -124945,8 +120759,8 @@ }, { "kind": "OBJECT", - "name": "CifUserReportTypesByReportingRequirementUpdatedByAndReportTypeManyToManyEdge", - "description": "A `ReportType` edge in the connection, with data from `ReportingRequirement`.", + "name": "CifUserProjectsByReportingRequirementUpdatedByAndProjectIdManyToManyEdge", + "description": "A `Project` edge in the connection, with data from `ReportingRequirement`.", "fields": [ { "name": "cursor", @@ -124962,18 +120776,18 @@ }, { "name": "node", - "description": "The `ReportType` at the end of the edge.", + "description": "The `Project` at the end of the edge.", "args": [], "type": { "kind": "OBJECT", - "name": "ReportType", + "name": "Project", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "reportingRequirementsByReportType", + "name": "reportingRequirementsByProjectId", "description": "Reads and enables pagination through a set of `ReportingRequirement`.", "args": [ { @@ -125095,12 +120909,12 @@ }, { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByEmissionIntensityReportArchivedByAndReportingRequirementIdManyToManyConnection", - "description": "A connection to a list of `ReportingRequirement` values, with data from `EmissionIntensityReport`.", + "name": "CifUserReportTypesByReportingRequirementArchivedByAndReportTypeManyToManyConnection", + "description": "A connection to a list of `ReportType` values, with data from `ReportingRequirement`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `ReportingRequirement`, info from the `EmissionIntensityReport`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `ReportType`, info from the `ReportingRequirement`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -125113,7 +120927,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByEmissionIntensityReportArchivedByAndReportingRequirementIdManyToManyEdge", + "name": "CifUserReportTypesByReportingRequirementArchivedByAndReportTypeManyToManyEdge", "ofType": null } } @@ -125124,7 +120938,7 @@ }, { "name": "nodes", - "description": "A list of `ReportingRequirement` objects.", + "description": "A list of `ReportType` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -125134,7 +120948,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ReportingRequirement", + "name": "ReportType", "ofType": null } } @@ -125160,7 +120974,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `ReportingRequirement` you could get from the connection.", + "description": "The count of *all* `ReportType` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -125182,8 +120996,8 @@ }, { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByEmissionIntensityReportArchivedByAndReportingRequirementIdManyToManyEdge", - "description": "A `ReportingRequirement` edge in the connection, with data from `EmissionIntensityReport`.", + "name": "CifUserReportTypesByReportingRequirementArchivedByAndReportTypeManyToManyEdge", + "description": "A `ReportType` edge in the connection, with data from `ReportingRequirement`.", "fields": [ { "name": "cursor", @@ -125198,8 +121012,20 @@ "deprecationReason": null }, { - "name": "emissionIntensityReportsByReportingRequirementId", - "description": "Reads and enables pagination through a set of `EmissionIntensityReport`.", + "name": "node", + "description": "The `ReportType` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ReportType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reportingRequirementsByReportType", + "description": "Reads and enables pagination through a set of `ReportingRequirement`.", "args": [ { "name": "after", @@ -125226,7 +121052,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityReportCondition", + "name": "ReportingRequirementCondition", "ofType": null }, "defaultValue": null @@ -125236,7 +121062,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityReportFilter", + "name": "ReportingRequirementFilter", "ofType": null }, "defaultValue": null @@ -125283,7 +121109,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `EmissionIntensityReport`.", + "description": "The method to use when ordering `ReportingRequirement`.", "type": { "kind": "LIST", "name": null, @@ -125292,7 +121118,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "EmissionIntensityReportsOrderBy", + "name": "ReportingRequirementsOrderBy", "ofType": null } } @@ -125305,24 +121131,12 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "EmissionIntensityReportsConnection", + "name": "ReportingRequirementsConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "node", - "description": "The `ReportingRequirement` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ReportingRequirement", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null } ], "inputFields": null, @@ -125332,12 +121146,12 @@ }, { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByEmissionIntensityReportCreatedByAndReportingRequirementIdManyToManyConnection", - "description": "A connection to a list of `ReportingRequirement` values, with data from `EmissionIntensityReport`.", + "name": "CifUserReportTypesByReportingRequirementCreatedByAndReportTypeManyToManyConnection", + "description": "A connection to a list of `ReportType` values, with data from `ReportingRequirement`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `ReportingRequirement`, info from the `EmissionIntensityReport`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `ReportType`, info from the `ReportingRequirement`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -125350,7 +121164,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByEmissionIntensityReportCreatedByAndReportingRequirementIdManyToManyEdge", + "name": "CifUserReportTypesByReportingRequirementCreatedByAndReportTypeManyToManyEdge", "ofType": null } } @@ -125361,7 +121175,7 @@ }, { "name": "nodes", - "description": "A list of `ReportingRequirement` objects.", + "description": "A list of `ReportType` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -125371,7 +121185,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ReportingRequirement", + "name": "ReportType", "ofType": null } } @@ -125397,7 +121211,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `ReportingRequirement` you could get from the connection.", + "description": "The count of *all* `ReportType` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -125419,8 +121233,8 @@ }, { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByEmissionIntensityReportCreatedByAndReportingRequirementIdManyToManyEdge", - "description": "A `ReportingRequirement` edge in the connection, with data from `EmissionIntensityReport`.", + "name": "CifUserReportTypesByReportingRequirementCreatedByAndReportTypeManyToManyEdge", + "description": "A `ReportType` edge in the connection, with data from `ReportingRequirement`.", "fields": [ { "name": "cursor", @@ -125435,8 +121249,20 @@ "deprecationReason": null }, { - "name": "emissionIntensityReportsByReportingRequirementId", - "description": "Reads and enables pagination through a set of `EmissionIntensityReport`.", + "name": "node", + "description": "The `ReportType` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ReportType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reportingRequirementsByReportType", + "description": "Reads and enables pagination through a set of `ReportingRequirement`.", "args": [ { "name": "after", @@ -125463,7 +121289,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityReportCondition", + "name": "ReportingRequirementCondition", "ofType": null }, "defaultValue": null @@ -125473,7 +121299,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityReportFilter", + "name": "ReportingRequirementFilter", "ofType": null }, "defaultValue": null @@ -125520,7 +121346,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `EmissionIntensityReport`.", + "description": "The method to use when ordering `ReportingRequirement`.", "type": { "kind": "LIST", "name": null, @@ -125529,7 +121355,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "EmissionIntensityReportsOrderBy", + "name": "ReportingRequirementsOrderBy", "ofType": null } } @@ -125542,24 +121368,12 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "EmissionIntensityReportsConnection", + "name": "ReportingRequirementsConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "node", - "description": "The `ReportingRequirement` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ReportingRequirement", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null } ], "inputFields": null, @@ -125569,12 +121383,12 @@ }, { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByEmissionIntensityReportUpdatedByAndReportingRequirementIdManyToManyConnection", - "description": "A connection to a list of `ReportingRequirement` values, with data from `EmissionIntensityReport`.", + "name": "CifUserReportTypesByReportingRequirementUpdatedByAndReportTypeManyToManyConnection", + "description": "A connection to a list of `ReportType` values, with data from `ReportingRequirement`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `ReportingRequirement`, info from the `EmissionIntensityReport`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `ReportType`, info from the `ReportingRequirement`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -125587,7 +121401,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByEmissionIntensityReportUpdatedByAndReportingRequirementIdManyToManyEdge", + "name": "CifUserReportTypesByReportingRequirementUpdatedByAndReportTypeManyToManyEdge", "ofType": null } } @@ -125598,7 +121412,7 @@ }, { "name": "nodes", - "description": "A list of `ReportingRequirement` objects.", + "description": "A list of `ReportType` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -125608,7 +121422,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ReportingRequirement", + "name": "ReportType", "ofType": null } } @@ -125634,7 +121448,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `ReportingRequirement` you could get from the connection.", + "description": "The count of *all* `ReportType` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -125656,8 +121470,8 @@ }, { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByEmissionIntensityReportUpdatedByAndReportingRequirementIdManyToManyEdge", - "description": "A `ReportingRequirement` edge in the connection, with data from `EmissionIntensityReport`.", + "name": "CifUserReportTypesByReportingRequirementUpdatedByAndReportTypeManyToManyEdge", + "description": "A `ReportType` edge in the connection, with data from `ReportingRequirement`.", "fields": [ { "name": "cursor", @@ -125672,8 +121486,20 @@ "deprecationReason": null }, { - "name": "emissionIntensityReportsByReportingRequirementId", - "description": "Reads and enables pagination through a set of `EmissionIntensityReport`.", + "name": "node", + "description": "The `ReportType` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ReportType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reportingRequirementsByReportType", + "description": "Reads and enables pagination through a set of `ReportingRequirement`.", "args": [ { "name": "after", @@ -125700,7 +121526,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityReportCondition", + "name": "ReportingRequirementCondition", "ofType": null }, "defaultValue": null @@ -125710,7 +121536,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityReportFilter", + "name": "ReportingRequirementFilter", "ofType": null }, "defaultValue": null @@ -125757,7 +121583,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `EmissionIntensityReport`.", + "description": "The method to use when ordering `ReportingRequirement`.", "type": { "kind": "LIST", "name": null, @@ -125766,7 +121592,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "EmissionIntensityReportsOrderBy", + "name": "ReportingRequirementsOrderBy", "ofType": null } } @@ -125779,24 +121605,12 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "EmissionIntensityReportsConnection", + "name": "ReportingRequirementsConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "node", - "description": "The `ReportingRequirement` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ReportingRequirement", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null } ], "inputFields": null, @@ -125806,12 +121620,12 @@ }, { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByMilestoneReportArchivedByAndReportingRequirementIdManyToManyConnection", - "description": "A connection to a list of `ReportingRequirement` values, with data from `MilestoneReport`.", + "name": "CifUserReportingRequirementsByEmissionIntensityReportArchivedByAndReportingRequirementIdManyToManyConnection", + "description": "A connection to a list of `ReportingRequirement` values, with data from `EmissionIntensityReport`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `ReportingRequirement`, info from the `MilestoneReport`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `ReportingRequirement`, info from the `EmissionIntensityReport`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -125824,7 +121638,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByMilestoneReportArchivedByAndReportingRequirementIdManyToManyEdge", + "name": "CifUserReportingRequirementsByEmissionIntensityReportArchivedByAndReportingRequirementIdManyToManyEdge", "ofType": null } } @@ -125893,8 +121707,8 @@ }, { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByMilestoneReportArchivedByAndReportingRequirementIdManyToManyEdge", - "description": "A `ReportingRequirement` edge in the connection, with data from `MilestoneReport`.", + "name": "CifUserReportingRequirementsByEmissionIntensityReportArchivedByAndReportingRequirementIdManyToManyEdge", + "description": "A `ReportingRequirement` edge in the connection, with data from `EmissionIntensityReport`.", "fields": [ { "name": "cursor", @@ -125909,8 +121723,8 @@ "deprecationReason": null }, { - "name": "milestoneReportsByReportingRequirementId", - "description": "Reads and enables pagination through a set of `MilestoneReport`.", + "name": "emissionIntensityReportsByReportingRequirementId", + "description": "Reads and enables pagination through a set of `EmissionIntensityReport`.", "args": [ { "name": "after", @@ -125937,7 +121751,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "MilestoneReportCondition", + "name": "EmissionIntensityReportCondition", "ofType": null }, "defaultValue": null @@ -125947,7 +121761,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "MilestoneReportFilter", + "name": "EmissionIntensityReportFilter", "ofType": null }, "defaultValue": null @@ -125994,7 +121808,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `MilestoneReport`.", + "description": "The method to use when ordering `EmissionIntensityReport`.", "type": { "kind": "LIST", "name": null, @@ -126003,7 +121817,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "MilestoneReportsOrderBy", + "name": "EmissionIntensityReportsOrderBy", "ofType": null } } @@ -126016,7 +121830,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "MilestoneReportsConnection", + "name": "EmissionIntensityReportsConnection", "ofType": null } }, @@ -126043,12 +121857,12 @@ }, { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByMilestoneReportCreatedByAndReportingRequirementIdManyToManyConnection", - "description": "A connection to a list of `ReportingRequirement` values, with data from `MilestoneReport`.", + "name": "CifUserReportingRequirementsByEmissionIntensityReportCreatedByAndReportingRequirementIdManyToManyConnection", + "description": "A connection to a list of `ReportingRequirement` values, with data from `EmissionIntensityReport`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `ReportingRequirement`, info from the `MilestoneReport`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `ReportingRequirement`, info from the `EmissionIntensityReport`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -126061,7 +121875,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByMilestoneReportCreatedByAndReportingRequirementIdManyToManyEdge", + "name": "CifUserReportingRequirementsByEmissionIntensityReportCreatedByAndReportingRequirementIdManyToManyEdge", "ofType": null } } @@ -126130,8 +121944,8 @@ }, { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByMilestoneReportCreatedByAndReportingRequirementIdManyToManyEdge", - "description": "A `ReportingRequirement` edge in the connection, with data from `MilestoneReport`.", + "name": "CifUserReportingRequirementsByEmissionIntensityReportCreatedByAndReportingRequirementIdManyToManyEdge", + "description": "A `ReportingRequirement` edge in the connection, with data from `EmissionIntensityReport`.", "fields": [ { "name": "cursor", @@ -126146,8 +121960,8 @@ "deprecationReason": null }, { - "name": "milestoneReportsByReportingRequirementId", - "description": "Reads and enables pagination through a set of `MilestoneReport`.", + "name": "emissionIntensityReportsByReportingRequirementId", + "description": "Reads and enables pagination through a set of `EmissionIntensityReport`.", "args": [ { "name": "after", @@ -126174,7 +121988,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "MilestoneReportCondition", + "name": "EmissionIntensityReportCondition", "ofType": null }, "defaultValue": null @@ -126184,7 +121998,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "MilestoneReportFilter", + "name": "EmissionIntensityReportFilter", "ofType": null }, "defaultValue": null @@ -126231,7 +122045,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `MilestoneReport`.", + "description": "The method to use when ordering `EmissionIntensityReport`.", "type": { "kind": "LIST", "name": null, @@ -126240,7 +122054,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "MilestoneReportsOrderBy", + "name": "EmissionIntensityReportsOrderBy", "ofType": null } } @@ -126253,7 +122067,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "MilestoneReportsConnection", + "name": "EmissionIntensityReportsConnection", "ofType": null } }, @@ -126280,12 +122094,12 @@ }, { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByMilestoneReportUpdatedByAndReportingRequirementIdManyToManyConnection", - "description": "A connection to a list of `ReportingRequirement` values, with data from `MilestoneReport`.", + "name": "CifUserReportingRequirementsByEmissionIntensityReportUpdatedByAndReportingRequirementIdManyToManyConnection", + "description": "A connection to a list of `ReportingRequirement` values, with data from `EmissionIntensityReport`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `ReportingRequirement`, info from the `MilestoneReport`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `ReportingRequirement`, info from the `EmissionIntensityReport`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -126298,7 +122112,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByMilestoneReportUpdatedByAndReportingRequirementIdManyToManyEdge", + "name": "CifUserReportingRequirementsByEmissionIntensityReportUpdatedByAndReportingRequirementIdManyToManyEdge", "ofType": null } } @@ -126367,8 +122181,8 @@ }, { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByMilestoneReportUpdatedByAndReportingRequirementIdManyToManyEdge", - "description": "A `ReportingRequirement` edge in the connection, with data from `MilestoneReport`.", + "name": "CifUserReportingRequirementsByEmissionIntensityReportUpdatedByAndReportingRequirementIdManyToManyEdge", + "description": "A `ReportingRequirement` edge in the connection, with data from `EmissionIntensityReport`.", "fields": [ { "name": "cursor", @@ -126383,8 +122197,8 @@ "deprecationReason": null }, { - "name": "milestoneReportsByReportingRequirementId", - "description": "Reads and enables pagination through a set of `MilestoneReport`.", + "name": "emissionIntensityReportsByReportingRequirementId", + "description": "Reads and enables pagination through a set of `EmissionIntensityReport`.", "args": [ { "name": "after", @@ -126411,7 +122225,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "MilestoneReportCondition", + "name": "EmissionIntensityReportCondition", "ofType": null }, "defaultValue": null @@ -126421,7 +122235,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "MilestoneReportFilter", + "name": "EmissionIntensityReportFilter", "ofType": null }, "defaultValue": null @@ -126468,7 +122282,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `MilestoneReport`.", + "description": "The method to use when ordering `EmissionIntensityReport`.", "type": { "kind": "LIST", "name": null, @@ -126477,7 +122291,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "MilestoneReportsOrderBy", + "name": "EmissionIntensityReportsOrderBy", "ofType": null } } @@ -126490,7 +122304,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "MilestoneReportsConnection", + "name": "EmissionIntensityReportsConnection", "ofType": null } }, @@ -126517,12 +122331,12 @@ }, { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByPaymentArchivedByAndReportingRequirementIdManyToManyConnection", - "description": "A connection to a list of `ReportingRequirement` values, with data from `Payment`.", + "name": "CifUserReportingRequirementsByMilestoneReportArchivedByAndReportingRequirementIdManyToManyConnection", + "description": "A connection to a list of `ReportingRequirement` values, with data from `MilestoneReport`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `ReportingRequirement`, info from the `Payment`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `ReportingRequirement`, info from the `MilestoneReport`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -126535,7 +122349,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByPaymentArchivedByAndReportingRequirementIdManyToManyEdge", + "name": "CifUserReportingRequirementsByMilestoneReportArchivedByAndReportingRequirementIdManyToManyEdge", "ofType": null } } @@ -126604,8 +122418,8 @@ }, { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByPaymentArchivedByAndReportingRequirementIdManyToManyEdge", - "description": "A `ReportingRequirement` edge in the connection, with data from `Payment`.", + "name": "CifUserReportingRequirementsByMilestoneReportArchivedByAndReportingRequirementIdManyToManyEdge", + "description": "A `ReportingRequirement` edge in the connection, with data from `MilestoneReport`.", "fields": [ { "name": "cursor", @@ -126620,20 +122434,8 @@ "deprecationReason": null }, { - "name": "node", - "description": "The `ReportingRequirement` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ReportingRequirement", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "paymentsByReportingRequirementId", - "description": "Reads and enables pagination through a set of `Payment`.", + "name": "milestoneReportsByReportingRequirementId", + "description": "Reads and enables pagination through a set of `MilestoneReport`.", "args": [ { "name": "after", @@ -126660,7 +122462,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "PaymentCondition", + "name": "MilestoneReportCondition", "ofType": null }, "defaultValue": null @@ -126670,7 +122472,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "PaymentFilter", + "name": "MilestoneReportFilter", "ofType": null }, "defaultValue": null @@ -126717,7 +122519,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Payment`.", + "description": "The method to use when ordering `MilestoneReport`.", "type": { "kind": "LIST", "name": null, @@ -126726,7 +122528,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "PaymentsOrderBy", + "name": "MilestoneReportsOrderBy", "ofType": null } } @@ -126739,12 +122541,24 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PaymentsConnection", + "name": "MilestoneReportsConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "node", + "description": "The `ReportingRequirement` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ReportingRequirement", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -126754,12 +122568,12 @@ }, { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByPaymentCreatedByAndReportingRequirementIdManyToManyConnection", - "description": "A connection to a list of `ReportingRequirement` values, with data from `Payment`.", + "name": "CifUserReportingRequirementsByMilestoneReportCreatedByAndReportingRequirementIdManyToManyConnection", + "description": "A connection to a list of `ReportingRequirement` values, with data from `MilestoneReport`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `ReportingRequirement`, info from the `Payment`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `ReportingRequirement`, info from the `MilestoneReport`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -126772,7 +122586,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByPaymentCreatedByAndReportingRequirementIdManyToManyEdge", + "name": "CifUserReportingRequirementsByMilestoneReportCreatedByAndReportingRequirementIdManyToManyEdge", "ofType": null } } @@ -126841,8 +122655,8 @@ }, { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByPaymentCreatedByAndReportingRequirementIdManyToManyEdge", - "description": "A `ReportingRequirement` edge in the connection, with data from `Payment`.", + "name": "CifUserReportingRequirementsByMilestoneReportCreatedByAndReportingRequirementIdManyToManyEdge", + "description": "A `ReportingRequirement` edge in the connection, with data from `MilestoneReport`.", "fields": [ { "name": "cursor", @@ -126857,20 +122671,8 @@ "deprecationReason": null }, { - "name": "node", - "description": "The `ReportingRequirement` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ReportingRequirement", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "paymentsByReportingRequirementId", - "description": "Reads and enables pagination through a set of `Payment`.", + "name": "milestoneReportsByReportingRequirementId", + "description": "Reads and enables pagination through a set of `MilestoneReport`.", "args": [ { "name": "after", @@ -126897,7 +122699,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "PaymentCondition", + "name": "MilestoneReportCondition", "ofType": null }, "defaultValue": null @@ -126907,7 +122709,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "PaymentFilter", + "name": "MilestoneReportFilter", "ofType": null }, "defaultValue": null @@ -126954,7 +122756,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Payment`.", + "description": "The method to use when ordering `MilestoneReport`.", "type": { "kind": "LIST", "name": null, @@ -126963,7 +122765,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "PaymentsOrderBy", + "name": "MilestoneReportsOrderBy", "ofType": null } } @@ -126976,12 +122778,24 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PaymentsConnection", + "name": "MilestoneReportsConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "node", + "description": "The `ReportingRequirement` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ReportingRequirement", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -126991,12 +122805,12 @@ }, { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByPaymentUpdatedByAndReportingRequirementIdManyToManyConnection", - "description": "A connection to a list of `ReportingRequirement` values, with data from `Payment`.", + "name": "CifUserReportingRequirementsByMilestoneReportUpdatedByAndReportingRequirementIdManyToManyConnection", + "description": "A connection to a list of `ReportingRequirement` values, with data from `MilestoneReport`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `ReportingRequirement`, info from the `Payment`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `ReportingRequirement`, info from the `MilestoneReport`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -127009,7 +122823,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByPaymentUpdatedByAndReportingRequirementIdManyToManyEdge", + "name": "CifUserReportingRequirementsByMilestoneReportUpdatedByAndReportingRequirementIdManyToManyEdge", "ofType": null } } @@ -127078,8 +122892,8 @@ }, { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByPaymentUpdatedByAndReportingRequirementIdManyToManyEdge", - "description": "A `ReportingRequirement` edge in the connection, with data from `Payment`.", + "name": "CifUserReportingRequirementsByMilestoneReportUpdatedByAndReportingRequirementIdManyToManyEdge", + "description": "A `ReportingRequirement` edge in the connection, with data from `MilestoneReport`.", "fields": [ { "name": "cursor", @@ -127094,20 +122908,8 @@ "deprecationReason": null }, { - "name": "node", - "description": "The `ReportingRequirement` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ReportingRequirement", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "paymentsByReportingRequirementId", - "description": "Reads and enables pagination through a set of `Payment`.", + "name": "milestoneReportsByReportingRequirementId", + "description": "Reads and enables pagination through a set of `MilestoneReport`.", "args": [ { "name": "after", @@ -127134,7 +122936,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "PaymentCondition", + "name": "MilestoneReportCondition", "ofType": null }, "defaultValue": null @@ -127144,7 +122946,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "PaymentFilter", + "name": "MilestoneReportFilter", "ofType": null }, "defaultValue": null @@ -127191,7 +122993,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Payment`.", + "description": "The method to use when ordering `MilestoneReport`.", "type": { "kind": "LIST", "name": null, @@ -127200,7 +123002,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "PaymentsOrderBy", + "name": "MilestoneReportsOrderBy", "ofType": null } } @@ -127213,12 +123015,24 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PaymentsConnection", + "name": "MilestoneReportsConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "node", + "description": "The `ReportingRequirement` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ReportingRequirement", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -127228,12 +123042,12 @@ }, { "kind": "OBJECT", - "name": "CifUserRevisionStatusesByProjectRevisionCreatedByAndRevisionStatusManyToManyConnection", - "description": "A connection to a list of `RevisionStatus` values, with data from `ProjectRevision`.", + "name": "CifUserReportingRequirementsByPaymentArchivedByAndReportingRequirementIdManyToManyConnection", + "description": "A connection to a list of `ReportingRequirement` values, with data from `Payment`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `RevisionStatus`, info from the `ProjectRevision`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `ReportingRequirement`, info from the `Payment`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -127246,7 +123060,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserRevisionStatusesByProjectRevisionCreatedByAndRevisionStatusManyToManyEdge", + "name": "CifUserReportingRequirementsByPaymentArchivedByAndReportingRequirementIdManyToManyEdge", "ofType": null } } @@ -127257,7 +123071,7 @@ }, { "name": "nodes", - "description": "A list of `RevisionStatus` objects.", + "description": "A list of `ReportingRequirement` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -127267,7 +123081,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RevisionStatus", + "name": "ReportingRequirement", "ofType": null } } @@ -127293,7 +123107,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `RevisionStatus` you could get from the connection.", + "description": "The count of *all* `ReportingRequirement` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -127315,8 +123129,8 @@ }, { "kind": "OBJECT", - "name": "CifUserRevisionStatusesByProjectRevisionCreatedByAndRevisionStatusManyToManyEdge", - "description": "A `RevisionStatus` edge in the connection, with data from `ProjectRevision`.", + "name": "CifUserReportingRequirementsByPaymentArchivedByAndReportingRequirementIdManyToManyEdge", + "description": "A `ReportingRequirement` edge in the connection, with data from `Payment`.", "fields": [ { "name": "cursor", @@ -127332,19 +123146,19 @@ }, { "name": "node", - "description": "The `RevisionStatus` at the end of the edge.", + "description": "The `ReportingRequirement` at the end of the edge.", "args": [], "type": { "kind": "OBJECT", - "name": "RevisionStatus", + "name": "ReportingRequirement", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectRevisionsByRevisionStatus", - "description": "Reads and enables pagination through a set of `ProjectRevision`.", + "name": "paymentsByReportingRequirementId", + "description": "Reads and enables pagination through a set of `Payment`.", "args": [ { "name": "after", @@ -127371,7 +123185,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionCondition", + "name": "PaymentCondition", "ofType": null }, "defaultValue": null @@ -127381,7 +123195,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionFilter", + "name": "PaymentFilter", "ofType": null }, "defaultValue": null @@ -127396,6 +123210,16 @@ }, "defaultValue": null }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -127418,7 +123242,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectRevision`.", + "description": "The method to use when ordering `Payment`.", "type": { "kind": "LIST", "name": null, @@ -127427,7 +123251,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectRevisionsOrderBy", + "name": "PaymentsOrderBy", "ofType": null } } @@ -127440,7 +123264,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectRevisionsConnection", + "name": "PaymentsConnection", "ofType": null } }, @@ -127455,12 +123279,12 @@ }, { "kind": "OBJECT", - "name": "CifUserRevisionStatusesByProjectRevisionUpdatedByAndRevisionStatusManyToManyConnection", - "description": "A connection to a list of `RevisionStatus` values, with data from `ProjectRevision`.", + "name": "CifUserReportingRequirementsByPaymentCreatedByAndReportingRequirementIdManyToManyConnection", + "description": "A connection to a list of `ReportingRequirement` values, with data from `Payment`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `RevisionStatus`, info from the `ProjectRevision`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `ReportingRequirement`, info from the `Payment`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -127473,7 +123297,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserRevisionStatusesByProjectRevisionUpdatedByAndRevisionStatusManyToManyEdge", + "name": "CifUserReportingRequirementsByPaymentCreatedByAndReportingRequirementIdManyToManyEdge", "ofType": null } } @@ -127484,7 +123308,7 @@ }, { "name": "nodes", - "description": "A list of `RevisionStatus` objects.", + "description": "A list of `ReportingRequirement` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -127494,7 +123318,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RevisionStatus", + "name": "ReportingRequirement", "ofType": null } } @@ -127520,7 +123344,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `RevisionStatus` you could get from the connection.", + "description": "The count of *all* `ReportingRequirement` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -127542,8 +123366,8 @@ }, { "kind": "OBJECT", - "name": "CifUserRevisionStatusesByProjectRevisionUpdatedByAndRevisionStatusManyToManyEdge", - "description": "A `RevisionStatus` edge in the connection, with data from `ProjectRevision`.", + "name": "CifUserReportingRequirementsByPaymentCreatedByAndReportingRequirementIdManyToManyEdge", + "description": "A `ReportingRequirement` edge in the connection, with data from `Payment`.", "fields": [ { "name": "cursor", @@ -127559,19 +123383,19 @@ }, { "name": "node", - "description": "The `RevisionStatus` at the end of the edge.", + "description": "The `ReportingRequirement` at the end of the edge.", "args": [], "type": { "kind": "OBJECT", - "name": "RevisionStatus", + "name": "ReportingRequirement", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectRevisionsByRevisionStatus", - "description": "Reads and enables pagination through a set of `ProjectRevision`.", + "name": "paymentsByReportingRequirementId", + "description": "Reads and enables pagination through a set of `Payment`.", "args": [ { "name": "after", @@ -127598,7 +123422,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionCondition", + "name": "PaymentCondition", "ofType": null }, "defaultValue": null @@ -127608,7 +123432,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionFilter", + "name": "PaymentFilter", "ofType": null }, "defaultValue": null @@ -127623,6 +123447,16 @@ }, "defaultValue": null }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -127645,7 +123479,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectRevision`.", + "description": "The method to use when ordering `Payment`.", "type": { "kind": "LIST", "name": null, @@ -127654,7 +123488,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectRevisionsOrderBy", + "name": "PaymentsOrderBy", "ofType": null } } @@ -127667,7 +123501,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectRevisionsConnection", + "name": "PaymentsConnection", "ofType": null } }, @@ -127682,12 +123516,12 @@ }, { "kind": "OBJECT", - "name": "CifUserRevisionTypesByProjectRevisionCreatedByAndRevisionTypeManyToManyConnection", - "description": "A connection to a list of `RevisionType` values, with data from `ProjectRevision`.", + "name": "CifUserReportingRequirementsByPaymentUpdatedByAndReportingRequirementIdManyToManyConnection", + "description": "A connection to a list of `ReportingRequirement` values, with data from `Payment`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `RevisionType`, info from the `ProjectRevision`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `ReportingRequirement`, info from the `Payment`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -127700,7 +123534,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserRevisionTypesByProjectRevisionCreatedByAndRevisionTypeManyToManyEdge", + "name": "CifUserReportingRequirementsByPaymentUpdatedByAndReportingRequirementIdManyToManyEdge", "ofType": null } } @@ -127711,7 +123545,7 @@ }, { "name": "nodes", - "description": "A list of `RevisionType` objects.", + "description": "A list of `ReportingRequirement` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -127721,7 +123555,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RevisionType", + "name": "ReportingRequirement", "ofType": null } } @@ -127747,7 +123581,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `RevisionType` you could get from the connection.", + "description": "The count of *all* `ReportingRequirement` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -127769,8 +123603,8 @@ }, { "kind": "OBJECT", - "name": "CifUserRevisionTypesByProjectRevisionCreatedByAndRevisionTypeManyToManyEdge", - "description": "A `RevisionType` edge in the connection, with data from `ProjectRevision`.", + "name": "CifUserReportingRequirementsByPaymentUpdatedByAndReportingRequirementIdManyToManyEdge", + "description": "A `ReportingRequirement` edge in the connection, with data from `Payment`.", "fields": [ { "name": "cursor", @@ -127786,18 +123620,255 @@ }, { "name": "node", - "description": "The `RevisionType` at the end of the edge.", + "description": "The `ReportingRequirement` at the end of the edge.", "args": [], "type": { "kind": "OBJECT", - "name": "RevisionType", + "name": "ReportingRequirement", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectRevisionsByRevisionType", + "name": "paymentsByReportingRequirementId", + "description": "Reads and enables pagination through a set of `Payment`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "PaymentCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "PaymentFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `Payment`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "PaymentsOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PaymentsConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CifUserRevisionStatusesByProjectRevisionCreatedByAndRevisionStatusManyToManyConnection", + "description": "A connection to a list of `RevisionStatus` values, with data from `ProjectRevision`.", + "fields": [ + { + "name": "edges", + "description": "A list of edges which contains the `RevisionStatus`, info from the `ProjectRevision`, and the cursor to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CifUserRevisionStatusesByProjectRevisionCreatedByAndRevisionStatusManyToManyEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": "A list of `RevisionStatus` objects.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RevisionStatus", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": "The count of *all* `RevisionStatus` you could get from the connection.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CifUserRevisionStatusesByProjectRevisionCreatedByAndRevisionStatusManyToManyEdge", + "description": "A `RevisionStatus` edge in the connection, with data from `ProjectRevision`.", + "fields": [ + { + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": "The `RevisionStatus` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "RevisionStatus", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectRevisionsByRevisionStatus", "description": "Reads and enables pagination through a set of `ProjectRevision`.", "args": [ { @@ -127909,12 +123980,12 @@ }, { "kind": "OBJECT", - "name": "CifUserRevisionTypesByProjectRevisionUpdatedByAndRevisionTypeManyToManyConnection", - "description": "A connection to a list of `RevisionType` values, with data from `ProjectRevision`.", + "name": "CifUserRevisionStatusesByProjectRevisionUpdatedByAndRevisionStatusManyToManyConnection", + "description": "A connection to a list of `RevisionStatus` values, with data from `ProjectRevision`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `RevisionType`, info from the `ProjectRevision`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `RevisionStatus`, info from the `ProjectRevision`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -127927,7 +123998,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserRevisionTypesByProjectRevisionUpdatedByAndRevisionTypeManyToManyEdge", + "name": "CifUserRevisionStatusesByProjectRevisionUpdatedByAndRevisionStatusManyToManyEdge", "ofType": null } } @@ -127938,7 +124009,7 @@ }, { "name": "nodes", - "description": "A list of `RevisionType` objects.", + "description": "A list of `RevisionStatus` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -127948,7 +124019,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RevisionType", + "name": "RevisionStatus", "ofType": null } } @@ -127974,7 +124045,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `RevisionType` you could get from the connection.", + "description": "The count of *all* `RevisionStatus` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -127996,8 +124067,8 @@ }, { "kind": "OBJECT", - "name": "CifUserRevisionTypesByProjectRevisionUpdatedByAndRevisionTypeManyToManyEdge", - "description": "A `RevisionType` edge in the connection, with data from `ProjectRevision`.", + "name": "CifUserRevisionStatusesByProjectRevisionUpdatedByAndRevisionStatusManyToManyEdge", + "description": "A `RevisionStatus` edge in the connection, with data from `ProjectRevision`.", "fields": [ { "name": "cursor", @@ -128013,18 +124084,18 @@ }, { "name": "node", - "description": "The `RevisionType` at the end of the edge.", + "description": "The `RevisionStatus` at the end of the edge.", "args": [], "type": { "kind": "OBJECT", - "name": "RevisionType", + "name": "RevisionStatus", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectRevisionsByRevisionType", + "name": "projectRevisionsByRevisionStatus", "description": "Reads and enables pagination through a set of `ProjectRevision`.", "args": [ { @@ -128136,12 +124207,12 @@ }, { "kind": "OBJECT", - "name": "CifUserSectorsByProjectArchivedByAndSectorNameManyToManyConnection", - "description": "A connection to a list of `Sector` values, with data from `Project`.", + "name": "CifUserRevisionTypesByProjectRevisionCreatedByAndRevisionTypeManyToManyConnection", + "description": "A connection to a list of `RevisionType` values, with data from `ProjectRevision`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `Sector`, info from the `Project`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `RevisionType`, info from the `ProjectRevision`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -128154,7 +124225,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserSectorsByProjectArchivedByAndSectorNameManyToManyEdge", + "name": "CifUserRevisionTypesByProjectRevisionCreatedByAndRevisionTypeManyToManyEdge", "ofType": null } } @@ -128165,7 +124236,7 @@ }, { "name": "nodes", - "description": "A list of `Sector` objects.", + "description": "A list of `RevisionType` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -128175,7 +124246,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Sector", + "name": "RevisionType", "ofType": null } } @@ -128201,7 +124272,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `Sector` you could get from the connection.", + "description": "The count of *all* `RevisionType` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -128223,8 +124294,8 @@ }, { "kind": "OBJECT", - "name": "CifUserSectorsByProjectArchivedByAndSectorNameManyToManyEdge", - "description": "A `Sector` edge in the connection, with data from `Project`.", + "name": "CifUserRevisionTypesByProjectRevisionCreatedByAndRevisionTypeManyToManyEdge", + "description": "A `RevisionType` edge in the connection, with data from `ProjectRevision`.", "fields": [ { "name": "cursor", @@ -128240,19 +124311,473 @@ }, { "name": "node", - "description": "The `Sector` at the end of the edge.", + "description": "The `RevisionType` at the end of the edge.", "args": [], "type": { "kind": "OBJECT", - "name": "Sector", + "name": "RevisionType", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectsBySectorName", - "description": "Reads and enables pagination through a set of `Project`.", + "name": "projectRevisionsByRevisionType", + "description": "Reads and enables pagination through a set of `ProjectRevision`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectRevisionCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectRevisionFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `ProjectRevision`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectRevisionsOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectRevisionsConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CifUserRevisionTypesByProjectRevisionUpdatedByAndRevisionTypeManyToManyConnection", + "description": "A connection to a list of `RevisionType` values, with data from `ProjectRevision`.", + "fields": [ + { + "name": "edges", + "description": "A list of edges which contains the `RevisionType`, info from the `ProjectRevision`, and the cursor to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CifUserRevisionTypesByProjectRevisionUpdatedByAndRevisionTypeManyToManyEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": "A list of `RevisionType` objects.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RevisionType", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": "The count of *all* `RevisionType` you could get from the connection.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CifUserRevisionTypesByProjectRevisionUpdatedByAndRevisionTypeManyToManyEdge", + "description": "A `RevisionType` edge in the connection, with data from `ProjectRevision`.", + "fields": [ + { + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": "The `RevisionType` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "RevisionType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectRevisionsByRevisionType", + "description": "Reads and enables pagination through a set of `ProjectRevision`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectRevisionCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectRevisionFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `ProjectRevision`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectRevisionsOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectRevisionsConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CifUserSectorsByProjectArchivedByAndSectorNameManyToManyConnection", + "description": "A connection to a list of `Sector` values, with data from `Project`.", + "fields": [ + { + "name": "edges", + "description": "A list of edges which contains the `Sector`, info from the `Project`, and the cursor to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CifUserSectorsByProjectArchivedByAndSectorNameManyToManyEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": "A list of `Sector` objects.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Sector", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": "The count of *all* `Sector` you could get from the connection.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CifUserSectorsByProjectArchivedByAndSectorNameManyToManyEdge", + "description": "A `Sector` edge in the connection, with data from `Project`.", + "fields": [ + { + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": "The `Sector` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Sector", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectsBySectorName", + "description": "Reads and enables pagination through a set of `Project`.", "args": [ { "name": "after", @@ -129624,47 +126149,6 @@ "enumValues": null, "possibleTypes": null }, - { - "kind": "INPUT_OBJECT", - "name": "CifUserToManyProjectAttachmentFilter", - "description": "A filter to be used against many `ProjectAttachment` object types. All fields are combined with a logical ‘and.’", - "fields": null, - "inputFields": [ - { - "name": "every", - "description": "Every related `ProjectAttachment` matches the filter criteria. All fields are combined with a logical ‘and.’", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "none", - "description": "No related `ProjectAttachment` matches the filter criteria. All fields are combined with a logical ‘and.’", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "some", - "description": "Some related `ProjectAttachment` matches the filter criteria. All fields are combined with a logical ‘and.’", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, { "kind": "INPUT_OBJECT", "name": "CifUserToManyProjectContactFilter", @@ -131618,42 +128102,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "PROJECT_ATTACHMENTS_BY_ARCHIVED_BY__COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_ATTACHMENTS_BY_ARCHIVED_BY__COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_ATTACHMENTS_BY_CREATED_BY__COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_ATTACHMENTS_BY_CREATED_BY__COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_ATTACHMENTS_BY_UPDATED_BY__COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_ATTACHMENTS_BY_UPDATED_BY__COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "PROJECT_CONTACTS_BY_ARCHIVED_BY__COUNT_ASC", "description": null, @@ -136279,6 +132727,30 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "projectByProjectId", + "description": "Reads a single `Project` that is related to this `Attachment`.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectStatusByProjectStatusId", + "description": "Reads a single `ProjectStatus` that is related to this `Attachment`.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectStatus", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "query", "description": "Our root query field type. Allows us to run any query from our mutation payload.", @@ -138136,179 +134608,6 @@ "enumValues": null, "possibleTypes": null }, - { - "kind": "INPUT_OBJECT", - "name": "CreateProjectAttachmentInput", - "description": "All input for the create `ProjectAttachment` mutation.", - "fields": null, - "inputFields": [ - { - "name": "clientMutationId", - "description": "An arbitrary string value with no semantic meaning. Will be included in the\npayload verbatim. May be used to track mutations by the client.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "projectAttachment", - "description": "The `ProjectAttachment` to be created by this mutation.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CreateProjectAttachmentPayload", - "description": "The output of our create `ProjectAttachment` mutation.", - "fields": [ - { - "name": "attachmentByAttachmentId", - "description": "Reads a single `Attachment` that is related to this `ProjectAttachment`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Attachment", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cifUserByArchivedBy", - "description": "Reads a single `CifUser` that is related to this `ProjectAttachment`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "CifUser", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cifUserByCreatedBy", - "description": "Reads a single `CifUser` that is related to this `ProjectAttachment`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "CifUser", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cifUserByUpdatedBy", - "description": "Reads a single `CifUser` that is related to this `ProjectAttachment`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "CifUser", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "clientMutationId", - "description": "The exact same `clientMutationId` that was provided in the mutation input,\nunchanged and unused. May be used by a client to track mutations.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectAttachment", - "description": "The `ProjectAttachment` that was created by this mutation.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectAttachment", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectAttachmentEdge", - "description": "An edge for our `ProjectAttachment`. May be used by Relay 1.", - "args": [ - { - "name": "orderBy", - "description": "The method to use when ordering `ProjectAttachment`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProjectAttachmentsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "OBJECT", - "name": "ProjectAttachmentsEdge", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectByProjectId", - "description": "Reads a single `Project` that is related to this `ProjectAttachment`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Project", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "query", - "description": "Our root query field type. Allows us to run any query from our mutation payload.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Query", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, { "kind": "INPUT_OBJECT", "name": "CreateProjectContactInput", @@ -141224,6 +137523,30 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "projectByProjectId", + "description": "Reads a single `Project` that is related to this `Attachment`.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectStatusByProjectStatusId", + "description": "Reads a single `ProjectStatus` that is related to this `Attachment`.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectStatus", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "query", "description": "Our root query field type. Allows us to run any query from our mutation payload.", @@ -143576,226 +139899,6 @@ "enumValues": null, "possibleTypes": null }, - { - "kind": "INPUT_OBJECT", - "name": "DeleteProjectAttachmentByRowIdInput", - "description": "All input for the `deleteProjectAttachmentByRowId` mutation.", - "fields": null, - "inputFields": [ - { - "name": "clientMutationId", - "description": "An arbitrary string value with no semantic meaning. Will be included in the\npayload verbatim. May be used to track mutations by the client.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rowId", - "description": "Unique ID for the project attachment record", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "DeleteProjectAttachmentInput", - "description": "All input for the `deleteProjectAttachment` mutation.", - "fields": null, - "inputFields": [ - { - "name": "clientMutationId", - "description": "An arbitrary string value with no semantic meaning. Will be included in the\npayload verbatim. May be used to track mutations by the client.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": "The globally unique `ID` which will identify a single `ProjectAttachment` to be deleted.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DeleteProjectAttachmentPayload", - "description": "The output of our delete `ProjectAttachment` mutation.", - "fields": [ - { - "name": "attachmentByAttachmentId", - "description": "Reads a single `Attachment` that is related to this `ProjectAttachment`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Attachment", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cifUserByArchivedBy", - "description": "Reads a single `CifUser` that is related to this `ProjectAttachment`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "CifUser", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cifUserByCreatedBy", - "description": "Reads a single `CifUser` that is related to this `ProjectAttachment`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "CifUser", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cifUserByUpdatedBy", - "description": "Reads a single `CifUser` that is related to this `ProjectAttachment`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "CifUser", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "clientMutationId", - "description": "The exact same `clientMutationId` that was provided in the mutation input,\nunchanged and unused. May be used by a client to track mutations.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deletedProjectAttachmentId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectAttachment", - "description": "The `ProjectAttachment` that was deleted by this mutation.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectAttachment", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectAttachmentEdge", - "description": "An edge for our `ProjectAttachment`. May be used by Relay 1.", - "args": [ - { - "name": "orderBy", - "description": "The method to use when ordering `ProjectAttachment`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProjectAttachmentsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "OBJECT", - "name": "ProjectAttachmentsEdge", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectByProjectId", - "description": "Reads a single `Project` that is related to this `ProjectAttachment`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Project", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "query", - "description": "Our root query field type. Allows us to run any query from our mutation payload.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Query", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, { "kind": "INPUT_OBJECT", "name": "DeleteProjectContactByRowIdInput", @@ -146141,191 +142244,6 @@ "enumValues": null, "possibleTypes": null }, - { - "kind": "INPUT_OBJECT", - "name": "DiscardProjectAttachmentFormChangeInput", - "description": "All input for the `discardProjectAttachmentFormChange` mutation.", - "fields": null, - "inputFields": [ - { - "name": "clientMutationId", - "description": "An arbitrary string value with no semantic meaning. Will be included in the\npayload verbatim. May be used to track mutations by the client.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "formChangeId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DiscardProjectAttachmentFormChangePayload", - "description": "The output of our `discardProjectAttachmentFormChange` mutation.", - "fields": [ - { - "name": "changeStatusByChangeStatus", - "description": "Reads a single `ChangeStatus` that is related to this `FormChange`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ChangeStatus", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cifUserByCreatedBy", - "description": "Reads a single `CifUser` that is related to this `FormChange`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "CifUser", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cifUserByUpdatedBy", - "description": "Reads a single `CifUser` that is related to this `FormChange`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "CifUser", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "clientMutationId", - "description": "The exact same `clientMutationId` that was provided in the mutation input,\nunchanged and unused. May be used by a client to track mutations.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "formByJsonSchemaName", - "description": "Reads a single `Form` that is related to this `FormChange`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Form", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "formChange", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "FormChange", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "formChangeByPreviousFormChangeId", - "description": "Reads a single `FormChange` that is related to this `FormChange`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "FormChange", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "formChangeEdge", - "description": "An edge for our `FormChange`. May be used by Relay 1.", - "args": [ - { - "name": "orderBy", - "description": "The method to use when ordering `FormChange`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "FormChangesOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "OBJECT", - "name": "FormChangesEdge", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectRevisionByProjectRevisionId", - "description": "Reads a single `ProjectRevision` that is related to this `FormChange`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectRevision", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "query", - "description": "Our root query field type. Allows us to run any query from our mutation payload.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Query", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, { "kind": "OBJECT", "name": "EmissionIntensityPaymentPercent", @@ -150710,7 +146628,7 @@ "args": [], "type": { "kind": "SCALAR", - "name": "RegProcedure", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -150898,95 +146816,6 @@ "name": "FormChange", "description": "Table tracking individual changes to database records", "fields": [ - { - "name": "actualPerformanceMilestoneAmount", - "description": " Computed column to return the actual performance milestone amount.\n Calculation:\n - Actual Performance Milestone Amount = (Maximum Performance Milestone Amount * Payment Percentage Of Performance Milestone Amount) / 100\n - Maximum Performance Milestone Amount is Holdback Amount To Date on front end code\n", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "anticipatedFundingAmountPerFiscalYear", - "description": "Computed column to calculate the anticipated amount of funding for a project by fiscal year", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SumByFiscalYearFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SumByFiscalYearsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "asEmissionIntensityReport", "description": null, @@ -151011,18 +146840,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "asProjectAttachment", - "description": "Computed column returns data from the new_form_data column as if it were an attachment record to allow graph traversal via the foreign keys.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectAttachment", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "asProjectContact", "description": "Computed column returns data from the new_form_data column as if it were a project_contact record to allow graph traversal via the foreign keys.", @@ -151858,7 +147675,7 @@ }, { "name": "holdbackAmountToDate", - "description": "Computed column returns sum all holdback amounts for a project. If any of the milestones have null values for adjustedHoldbackAmount and calculatedHoldbackAmount, then null is returned. Preference for value selection is adjustedHoldbackAmount > calculatedHoldbackAmount > amount calculated via maximum milestone amount", + "description": "Computed column returns sum all holdback amounts for a project. Preference for value selection is adjustedHoldbackAmount > calculuatedHoldbackAmount > amount calculated via maximum milestone amount", "args": [], "type": { "kind": "SCALAR", @@ -151939,18 +147756,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "maximumPerformanceMilestoneAmount", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "netPaymentsToDate", "description": "Computed column returns cumulative sum of all net payments. Preference for value selection is adjustedNetAmount > calculuatedNetAmount > amount calculated via maximum milestone amount", @@ -152171,30 +147976,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "proponentsSharePercentage", - "description": "Computed column returns the calculated proponents share percentage.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rank", - "description": "Computed column to determine the rank of a project", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "reportingRequirementStatus", "description": "A computed column to return the status for a reporting requirement form_change record based on the report_due_date and submitted_date", @@ -152223,18 +148004,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "totalProjectValue", - "description": " Computed column to return the total project value.\n Calculation:\n - Total Project Value = Maximum Funding Amount + Proponent Cost + approved Additional Funding Amount(s)\n", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "updatedAt", "description": "updated at timestamp", @@ -153135,16 +148904,6 @@ "description": "A filter to be used against `FormChange` object types. All fields are combined with a logical ‘and.’", "fields": null, "inputFields": [ - { - "name": "actualPerformanceMilestoneAmount", - "description": "Filter by the object’s `actualPerformanceMilestoneAmount` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BigFloatFilter", - "ofType": null - }, - "defaultValue": null - }, { "name": "and", "description": "Checks for all expressions in this list.", @@ -153423,16 +149182,6 @@ }, "defaultValue": null }, - { - "name": "maximumPerformanceMilestoneAmount", - "description": "Filter by the object’s `maximumPerformanceMilestoneAmount` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BigFloatFilter", - "ofType": null - }, - "defaultValue": null - }, { "name": "netPaymentsToDate", "description": "Filter by the object’s `netPaymentsToDate` field.", @@ -153541,26 +149290,6 @@ }, "defaultValue": null }, - { - "name": "proponentsSharePercentage", - "description": "Filter by the object’s `proponentsSharePercentage` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BigFloatFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rank", - "description": "Filter by the object’s `rank` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IntFilter", - "ofType": null - }, - "defaultValue": null - }, { "name": "reportingRequirementStatus", "description": "Filter by the object’s `reportingRequirementStatus` field.", @@ -153581,16 +149310,6 @@ }, "defaultValue": null }, - { - "name": "totalProjectValue", - "description": "Filter by the object’s `totalProjectValue` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BigFloatFilter", - "ofType": null - }, - "defaultValue": null - }, { "name": "updatedAt", "description": "Filter by the object’s `updatedAt` field.", @@ -156385,7 +152104,7 @@ "description": "Checks for equality with the object’s `jsonSchemaGenerator` field.", "type": { "kind": "SCALAR", - "name": "RegProcedure", + "name": "String", "ofType": null }, "defaultValue": null @@ -156609,6 +152328,16 @@ }, "defaultValue": null }, + { + "name": "jsonSchemaGenerator", + "description": "Filter by the object’s `jsonSchemaGenerator` field.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + }, + "defaultValue": null + }, { "name": "not", "description": "Negates the expression.", @@ -156998,7 +152727,7 @@ "description": "A function that can be used to dynamically alter the schema, such as altering constraints based on the contents of a table.", "type": { "kind": "SCALAR", - "name": "RegProcedure", + "name": "String", "ofType": null }, "defaultValue": null @@ -157123,7 +152852,7 @@ "description": "A function that can be used to dynamically alter the schema, such as altering constraints based on the contents of a table.", "type": { "kind": "SCALAR", - "name": "RegProcedure", + "name": "String", "ofType": null }, "defaultValue": null @@ -171233,102 +166962,6 @@ "enumValues": null, "possibleTypes": null }, - { - "kind": "INPUT_OBJECT", - "name": "JsonbMinusInput", - "description": "All input for the `jsonbMinus` mutation.", - "fields": null, - "inputFields": [ - { - "name": "clientMutationId", - "description": "An arbitrary string value with no semantic meaning. Will be included in the\npayload verbatim. May be used to track mutations by the client.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "minuend", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "subtrahend", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "JsonbMinusPayload", - "description": "The output of our `jsonbMinus` mutation.", - "fields": [ - { - "name": "clientMutationId", - "description": "The exact same `clientMutationId` that was provided in the mutation input,\nunchanged and unused. May be used by a client to track mutations.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "json", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "query", - "description": "Our root query field type. Allows us to run any query from our mutation payload.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Query", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, { "kind": "OBJECT", "name": "KeycloakJwt", @@ -174195,6 +169828,33 @@ "name": "Mutation", "description": "The root mutation type which contains root level fields which mutate data.", "fields": [ + { + "name": "addAdditionalFundingSourceToRevision", + "description": null, + "args": [ + { + "name": "input", + "description": "The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddAdditionalFundingSourceToRevisionInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "AddAdditionalFundingSourceToRevisionPayload", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "addContactToRevision", "description": null, @@ -174223,8 +169883,8 @@ "deprecationReason": null }, { - "name": "addProjectAttachmentToRevision", - "description": " Creates a new project_attachment form_change record for the given revision_id and attachment_id.\n", + "name": "addEmissionIntensityReportToRevision", + "description": null, "args": [ { "name": "input", @@ -174234,7 +169894,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "AddProjectAttachmentToRevisionInput", + "name": "AddEmissionIntensityReportToRevisionInput", "ofType": null } }, @@ -174243,7 +169903,7 @@ ], "type": { "kind": "OBJECT", - "name": "AddProjectAttachmentToRevisionPayload", + "name": "AddEmissionIntensityReportToRevisionPayload", "ofType": null }, "isDeprecated": false, @@ -174735,33 +170395,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "createProjectAttachment", - "description": "Creates a single `ProjectAttachment`.", - "args": [ - { - "name": "input", - "description": "The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateProjectAttachmentInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "CreateProjectAttachmentPayload", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "createProjectContact", "description": "Creates a single `ProjectContact`.", @@ -175923,60 +171556,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "deleteProjectAttachment", - "description": "Deletes a single `ProjectAttachment` using its globally unique id.", - "args": [ - { - "name": "input", - "description": "The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteProjectAttachmentInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DeleteProjectAttachmentPayload", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteProjectAttachmentByRowId", - "description": "Deletes a single `ProjectAttachment` using a unique key.", - "args": [ - { - "name": "input", - "description": "The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteProjectAttachmentByRowIdInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DeleteProjectAttachmentPayload", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "deleteProjectContact", "description": "Deletes a single `ProjectContact` using its globally unique id.", @@ -176625,33 +172204,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "discardProjectAttachmentFormChange", - "description": null, - "args": [ - { - "name": "input", - "description": "The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DiscardProjectAttachmentFormChangeInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DiscardProjectAttachmentFormChangePayload", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "generateAnnualReports", "description": " Custom mutation to generate annual reports for a revision between emissions intensity report_due_date and project_assets_life_end_date.\n", @@ -176706,33 +172258,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "jsonbMinus", - "description": null, - "args": [ - { - "name": "input", - "description": "The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "JsonbMinusInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "JsonbMinusPayload", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "stageDirtyFormChanges", "description": null, @@ -177705,60 +173230,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "updateProjectAttachment", - "description": "Updates a single `ProjectAttachment` using its globally unique id and a patch.", - "args": [ - { - "name": "input", - "description": "The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateProjectAttachmentInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateProjectAttachmentPayload", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateProjectAttachmentByRowId", - "description": "Updates a single `ProjectAttachment` using a unique key and a patch.", - "args": [ - { - "name": "input", - "description": "The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateProjectAttachmentByRowIdInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateProjectAttachmentPayload", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "updateProjectContact", "description": "Updates a single `ProjectContact` using its globally unique id and a patch.", @@ -178534,11 +174005,6 @@ "name": "Project", "ofType": null }, - { - "kind": "OBJECT", - "name": "ProjectAttachment", - "ofType": null - }, { "kind": "OBJECT", "name": "ProjectContact", @@ -184559,7 +180025,7 @@ "deprecationReason": null }, { - "name": "attachmentsByProjectAttachmentProjectIdAndAttachmentId", + "name": "attachmentsByProjectId", "description": "Reads and enables pagination through a set of `Attachment`.", "args": [ { @@ -184620,7 +180086,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -184666,7 +180132,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectAttachmentsByProjectAttachmentProjectIdAndAttachmentIdManyToManyConnection", + "name": "AttachmentsConnection", "ofType": null } }, @@ -185170,7 +180636,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFundingParameterProjectIdAndArchivedBy", + "name": "cifUsersByAttachmentProjectIdAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -185277,7 +180743,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectCifUsersByFundingParameterProjectIdAndArchivedByManyToManyConnection", + "name": "ProjectCifUsersByAttachmentProjectIdAndArchivedByManyToManyConnection", "ofType": null } }, @@ -185285,7 +180751,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFundingParameterProjectIdAndCreatedBy", + "name": "cifUsersByAttachmentProjectIdAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -185392,7 +180858,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectCifUsersByFundingParameterProjectIdAndCreatedByManyToManyConnection", + "name": "ProjectCifUsersByAttachmentProjectIdAndCreatedByManyToManyConnection", "ofType": null } }, @@ -185400,7 +180866,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFundingParameterProjectIdAndUpdatedBy", + "name": "cifUsersByAttachmentProjectIdAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -185507,7 +180973,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectCifUsersByFundingParameterProjectIdAndUpdatedByManyToManyConnection", + "name": "ProjectCifUsersByAttachmentProjectIdAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -185515,7 +180981,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectAttachmentProjectIdAndArchivedBy", + "name": "cifUsersByFundingParameterProjectIdAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -185622,7 +181088,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectCifUsersByProjectAttachmentProjectIdAndArchivedByManyToManyConnection", + "name": "ProjectCifUsersByFundingParameterProjectIdAndArchivedByManyToManyConnection", "ofType": null } }, @@ -185630,7 +181096,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectAttachmentProjectIdAndCreatedBy", + "name": "cifUsersByFundingParameterProjectIdAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -185737,7 +181203,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectCifUsersByProjectAttachmentProjectIdAndCreatedByManyToManyConnection", + "name": "ProjectCifUsersByFundingParameterProjectIdAndCreatedByManyToManyConnection", "ofType": null } }, @@ -185745,7 +181211,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectAttachmentProjectIdAndUpdatedBy", + "name": "cifUsersByFundingParameterProjectIdAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -185852,7 +181318,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectCifUsersByProjectAttachmentProjectIdAndUpdatedByManyToManyConnection", + "name": "ProjectCifUsersByFundingParameterProjectIdAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -187577,18 +183043,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "milestoneStatus", - "description": "Computed column returns the status of all milestones", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "nextMilestoneDueDate", "description": "Computed column to return the next milestone due date for a given project", @@ -187630,20 +183084,8 @@ "deprecationReason": null }, { - "name": "pendingAmendment", - "description": "Returns the pending amendment for the project", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectRevision", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pendingGeneralRevision", - "description": "Returns the pending general revision for the project", + "name": "pendingProjectRevision", + "description": "Returns the pending project revision for the project", "args": [], "type": { "kind": "OBJECT", @@ -187666,8 +183108,8 @@ "deprecationReason": null }, { - "name": "projectAttachmentsByProjectId", - "description": "Reads and enables pagination through a set of `ProjectAttachment`.", + "name": "projectContactsByProjectId", + "description": "Reads and enables pagination through a set of `ProjectContact`.", "args": [ { "name": "after", @@ -187694,7 +183136,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentCondition", + "name": "ProjectContactCondition", "ofType": null }, "defaultValue": null @@ -187704,7 +183146,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentFilter", + "name": "ProjectContactFilter", "ofType": null }, "defaultValue": null @@ -187751,7 +183193,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectAttachment`.", + "description": "The method to use when ordering `ProjectContact`.", "type": { "kind": "LIST", "name": null, @@ -187760,7 +183202,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectAttachmentsOrderBy", + "name": "ProjectContactsOrderBy", "ofType": null } } @@ -187773,7 +183215,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectAttachmentsConnection", + "name": "ProjectContactsConnection", "ofType": null } }, @@ -187781,8 +183223,8 @@ "deprecationReason": null }, { - "name": "projectContactsByProjectId", - "description": "Reads and enables pagination through a set of `ProjectContact`.", + "name": "projectManagerLabelsByProjectManagerProjectIdAndProjectManagerLabelId", + "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", "args": [ { "name": "after", @@ -187809,7 +183251,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactCondition", + "name": "ProjectManagerLabelCondition", "ofType": null }, "defaultValue": null @@ -187819,7 +183261,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactFilter", + "name": "ProjectManagerLabelFilter", "ofType": null }, "defaultValue": null @@ -187842,7 +183284,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -187866,7 +183308,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectContact`.", + "description": "The method to use when ordering `ProjectManagerLabel`.", "type": { "kind": "LIST", "name": null, @@ -187875,7 +183317,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectContactsOrderBy", + "name": "ProjectManagerLabelsOrderBy", "ofType": null } } @@ -187888,7 +183330,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectContactsConnection", + "name": "ProjectProjectManagerLabelsByProjectManagerProjectIdAndProjectManagerLabelIdManyToManyConnection", "ofType": null } }, @@ -187896,8 +183338,8 @@ "deprecationReason": null }, { - "name": "projectManagerLabelsByProjectManagerProjectIdAndProjectManagerLabelId", - "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", + "name": "projectManagersByProjectId", + "description": "Reads and enables pagination through a set of `ProjectManager`.", "args": [ { "name": "after", @@ -187924,7 +183366,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelCondition", + "name": "ProjectManagerCondition", "ofType": null }, "defaultValue": null @@ -187934,122 +183376,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `ProjectManagerLabel`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProjectManagerLabelsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectProjectManagerLabelsByProjectManagerProjectIdAndProjectManagerLabelIdManyToManyConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectManagersByProjectId", - "description": "Reads and enables pagination through a set of `ProjectManager`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectManagerCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectManagerFilter", + "name": "ProjectManagerFilter", "ofType": null }, "defaultValue": null @@ -188275,48 +183602,8 @@ "deprecationReason": null }, { - "name": "projectType", - "description": "The type of the project (e.g. fuel switching)", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectTypeByProjectType", - "description": "Reads a single `ProjectType` that is related to this `Project`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "proposalReference", - "description": "Unique identifier internal to the CIF team. As of the 2022 RFPs, the current format is YYYY-RFP-0-ABCD-000. Projects for the 2019 and 2020 RFPs may use a different format.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reportTypesByReportingRequirementProjectIdAndReportType", - "description": "Reads and enables pagination through a set of `ReportType`.", + "name": "projectStatusesByAttachmentProjectIdAndProjectStatusId", + "description": "Reads and enables pagination through a set of `ProjectStatus`.", "args": [ { "name": "after", @@ -188343,7 +183630,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportTypeCondition", + "name": "ProjectStatusCondition", "ofType": null }, "defaultValue": null @@ -188353,7 +183640,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportTypeFilter", + "name": "ProjectStatusFilter", "ofType": null }, "defaultValue": null @@ -188400,7 +183687,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportType`.", + "description": "The method to use when ordering `ProjectStatus`.", "type": { "kind": "LIST", "name": null, @@ -188409,7 +183696,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportTypesOrderBy", + "name": "ProjectStatusesOrderBy", "ofType": null } } @@ -188422,7 +183709,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectReportTypesByReportingRequirementProjectIdAndReportTypeManyToManyConnection", + "name": "ProjectProjectStatusesByAttachmentProjectIdAndProjectStatusIdManyToManyConnection", "ofType": null } }, @@ -188430,229 +183717,39 @@ "deprecationReason": null }, { - "name": "reportingRequirementsByProjectId", - "description": "Reads and enables pagination through a set of `ReportingRequirement`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ReportingRequirementCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ReportingRequirementFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "INHERIT" - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `ReportingRequirement`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ReportingRequirementsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], + "name": "projectType", + "description": "The type of the project (e.g. fuel switching)", + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ReportingRequirementsConnection", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "revisionStatusesByProjectRevisionProjectIdAndRevisionStatus", - "description": "Reads and enables pagination through a set of `RevisionStatus`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "RevisionStatusCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "RevisionStatusFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `RevisionStatus`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "RevisionStatusesOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], + "name": "projectTypeByProjectType", + "description": "Reads a single `ProjectType` that is related to this `Project`.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "proposalReference", + "description": "Unique identifier internal to the CIF team. As of the 2022 RFPs, the current format is YYYY-RFP-0-ABCD-000. Projects for the 2019 and 2020 RFPs may use a different format.", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ProjectRevisionStatusesByProjectRevisionProjectIdAndRevisionStatusManyToManyConnection", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -188660,8 +183757,8 @@ "deprecationReason": null }, { - "name": "revisionTypesByProjectRevisionProjectIdAndRevisionType", - "description": "Reads and enables pagination through a set of `RevisionType`.", + "name": "reportTypesByReportingRequirementProjectIdAndReportType", + "description": "Reads and enables pagination through a set of `ReportType`.", "args": [ { "name": "after", @@ -188688,7 +183785,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionTypeCondition", + "name": "ReportTypeCondition", "ofType": null }, "defaultValue": null @@ -188698,7 +183795,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionTypeFilter", + "name": "ReportTypeFilter", "ofType": null }, "defaultValue": null @@ -188745,7 +183842,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `RevisionType`.", + "description": "The method to use when ordering `ReportType`.", "type": { "kind": "LIST", "name": null, @@ -188754,7 +183851,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "RevisionTypesOrderBy", + "name": "ReportTypesOrderBy", "ofType": null } } @@ -188767,192 +183864,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectRevisionTypesByProjectRevisionProjectIdAndRevisionTypeManyToManyConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rowId", - "description": "Unique ID for the project", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "score", - "description": "The score of the project after evaluation by the CIF team", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sectorBySectorName", - "description": "Reads a single `Sector` that is related to this `Project`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Sector", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sectorName", - "description": "The industry sector this project relates to", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "summary", - "description": "Summary of the project", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalFundingRequest", - "description": "The total amount of funding requested for the project", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": "updated at timestamp", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Datetime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedBy", - "description": "updated by user id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectAdditionalFundingSourceStatusesByAdditionalFundingSourceProjectIdAndStatusManyToManyConnection", - "description": "A connection to a list of `AdditionalFundingSourceStatus` values, with data from `AdditionalFundingSource`.", - "fields": [ - { - "name": "edges", - "description": "A list of edges which contains the `AdditionalFundingSourceStatus`, info from the `AdditionalFundingSource`, and the cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectAdditionalFundingSourceStatusesByAdditionalFundingSourceProjectIdAndStatusManyToManyEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `AdditionalFundingSourceStatus` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AdditionalFundingSourceStatus", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", + "name": "ProjectReportTypesByReportingRequirementProjectIdAndReportTypeManyToManyConnection", "ofType": null } }, @@ -188960,35 +183872,8 @@ "deprecationReason": null }, { - "name": "totalCount", - "description": "The count of *all* `AdditionalFundingSourceStatus` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectAdditionalFundingSourceStatusesByAdditionalFundingSourceProjectIdAndStatusManyToManyEdge", - "description": "A `AdditionalFundingSourceStatus` edge in the connection, with data from `AdditionalFundingSource`.", - "fields": [ - { - "name": "additionalFundingSourcesByStatus", - "description": "Reads and enables pagination through a set of `AdditionalFundingSource`.", + "name": "reportingRequirementsByProjectId", + "description": "Reads and enables pagination through a set of `ReportingRequirement`.", "args": [ { "name": "after", @@ -189015,7 +183900,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceCondition", + "name": "ReportingRequirementCondition", "ofType": null }, "defaultValue": null @@ -189025,7 +183910,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceFilter", + "name": "ReportingRequirementFilter", "ofType": null }, "defaultValue": null @@ -189048,7 +183933,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -189072,7 +183957,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `AdditionalFundingSource`.", + "description": "The method to use when ordering `ReportingRequirement`.", "type": { "kind": "LIST", "name": null, @@ -189081,7 +183966,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AdditionalFundingSourcesOrderBy", + "name": "ReportingRequirementsOrderBy", "ofType": null } } @@ -189094,234 +183979,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AdditionalFundingSourcesConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `AdditionalFundingSourceStatus` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "AdditionalFundingSourceStatus", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectAttachment", - "description": "Join table to track assignment of attachments to projects", - "fields": [ - { - "name": "archivedAt", - "description": "archived at timestamp", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Datetime", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "archivedBy", - "description": "archived by user id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "attachmentByAttachmentId", - "description": "Reads a single `Attachment` that is related to this `ProjectAttachment`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Attachment", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "attachmentId", - "description": "Foreign key to the attachment", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cifUserByArchivedBy", - "description": "Reads a single `CifUser` that is related to this `ProjectAttachment`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "CifUser", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cifUserByCreatedBy", - "description": "Reads a single `CifUser` that is related to this `ProjectAttachment`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "CifUser", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cifUserByUpdatedBy", - "description": "Reads a single `CifUser` that is related to this `ProjectAttachment`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "CifUser", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": "created at timestamp", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Datetime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdBy", - "description": "created by user id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "A globally unique identifier. Can be used in various places throughout the system to identify this single value.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectByProjectId", - "description": "Reads a single `Project` that is related to this `ProjectAttachment`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Project", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectId", - "description": "Foreign key to the project", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rowId", - "description": "Unique ID for the project attachment record", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": "updated at timestamp", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Datetime", + "name": "ReportingRequirementsConnection", "ofType": null } }, @@ -189329,1905 +183987,590 @@ "deprecationReason": null }, { - "name": "updatedBy", - "description": "updated by user id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentCondition", - "description": "A condition to be used against `ProjectAttachment` object types. All fields are\ntested for equality and combined with a logical ‘and.’", - "fields": null, - "inputFields": [ - { - "name": "archivedAt", - "description": "Checks for equality with the object’s `archivedAt` field.", - "type": { - "kind": "SCALAR", - "name": "Datetime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "archivedBy", - "description": "Checks for equality with the object’s `archivedBy` field.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "attachmentId", - "description": "Checks for equality with the object’s `attachmentId` field.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": "Checks for equality with the object’s `createdAt` field.", - "type": { - "kind": "SCALAR", - "name": "Datetime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdBy", - "description": "Checks for equality with the object’s `createdBy` field.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "projectId", - "description": "Checks for equality with the object’s `projectId` field.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rowId", - "description": "Checks for equality with the object’s `rowId` field.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": "Checks for equality with the object’s `updatedAt` field.", - "type": { - "kind": "SCALAR", - "name": "Datetime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedBy", - "description": "Checks for equality with the object’s `updatedBy` field.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentFilter", - "description": "A filter to be used against `ProjectAttachment` object types. All fields are combined with a logical ‘and.’", - "fields": null, - "inputFields": [ - { - "name": "and", - "description": "Checks for all expressions in this list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "archivedAt", - "description": "Filter by the object’s `archivedAt` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "DatetimeFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "archivedBy", - "description": "Filter by the object’s `archivedBy` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IntFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "attachmentByAttachmentId", - "description": "Filter by the object’s `attachmentByAttachmentId` relation.", - "type": { - "kind": "INPUT_OBJECT", - "name": "AttachmentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "attachmentId", - "description": "Filter by the object’s `attachmentId` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IntFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "cifUserByArchivedBy", - "description": "Filter by the object’s `cifUserByArchivedBy` relation.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "cifUserByArchivedByExists", - "description": "A related `cifUserByArchivedBy` exists.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "cifUserByCreatedBy", - "description": "Filter by the object’s `cifUserByCreatedBy` relation.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "cifUserByCreatedByExists", - "description": "A related `cifUserByCreatedBy` exists.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "cifUserByUpdatedBy", - "description": "Filter by the object’s `cifUserByUpdatedBy` relation.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "cifUserByUpdatedByExists", - "description": "A related `cifUserByUpdatedBy` exists.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": "Filter by the object’s `createdAt` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "DatetimeFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdBy", - "description": "Filter by the object’s `createdBy` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IntFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "not", - "description": "Negates the expression.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "or", - "description": "Checks for any expressions in this list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "projectByProjectId", - "description": "Filter by the object’s `projectByProjectId` relation.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "projectId", - "description": "Filter by the object’s `projectId` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IntFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rowId", - "description": "Filter by the object’s `rowId` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IntFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": "Filter by the object’s `updatedAt` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "DatetimeFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedBy", - "description": "Filter by the object’s `updatedBy` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IntFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentInput", - "description": "An input for mutations affecting `ProjectAttachment`", - "fields": null, - "inputFields": [ - { - "name": "archivedAt", - "description": "archived at timestamp", - "type": { - "kind": "SCALAR", - "name": "Datetime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "archivedBy", - "description": "archived by user id", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "attachmentId", - "description": "Foreign key to the attachment", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": "created at timestamp", - "type": { - "kind": "SCALAR", - "name": "Datetime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdBy", - "description": "created by user id", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "projectId", - "description": "Foreign key to the project", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": "updated at timestamp", - "type": { - "kind": "SCALAR", - "name": "Datetime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedBy", - "description": "updated by user id", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentPatch", - "description": "Represents an update to a `ProjectAttachment`. Fields that are set will be updated.", - "fields": null, - "inputFields": [ - { - "name": "archivedAt", - "description": "archived at timestamp", - "type": { - "kind": "SCALAR", - "name": "Datetime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "archivedBy", - "description": "archived by user id", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "attachmentId", - "description": "Foreign key to the attachment", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": "created at timestamp", - "type": { - "kind": "SCALAR", - "name": "Datetime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdBy", - "description": "created by user id", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "projectId", - "description": "Foreign key to the project", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": "updated at timestamp", - "type": { - "kind": "SCALAR", - "name": "Datetime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedBy", - "description": "updated by user id", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectAttachmentsByProjectAttachmentProjectIdAndAttachmentIdManyToManyConnection", - "description": "A connection to a list of `Attachment` values, with data from `ProjectAttachment`.", - "fields": [ - { - "name": "edges", - "description": "A list of edges which contains the `Attachment`, info from the `ProjectAttachment`, and the cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectAttachmentsByProjectAttachmentProjectIdAndAttachmentIdManyToManyEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `Attachment` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Attachment", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `Attachment` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectAttachmentsByProjectAttachmentProjectIdAndAttachmentIdManyToManyEdge", - "description": "A `Attachment` edge in the connection, with data from `ProjectAttachment`.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `Attachment` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Attachment", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectAttachmentsByAttachmentId", - "description": "Reads and enables pagination through a set of `ProjectAttachment`.", + "name": "revisionStatusesByProjectRevisionProjectIdAndRevisionStatus", + "description": "Reads and enables pagination through a set of `RevisionStatus`.", "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `ProjectAttachment`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProjectAttachmentsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectAttachmentsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectAttachmentsConnection", - "description": "A connection to a list of `ProjectAttachment` values.", - "fields": [ - { - "name": "edges", - "description": "A list of edges which contains the `ProjectAttachment` and cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectAttachmentsEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `ProjectAttachment` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectAttachment", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `ProjectAttachment` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectAttachmentsEdge", - "description": "A `ProjectAttachment` edge in the connection.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `ProjectAttachment` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectAttachment", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ProjectAttachmentsOrderBy", - "description": "Methods to use when ordering `ProjectAttachment`.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "ARCHIVED_AT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ARCHIVED_AT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ARCHIVED_BY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ARCHIVED_BY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ATTACHMENT_BY_ATTACHMENT_ID__ARCHIVED_AT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ATTACHMENT_BY_ATTACHMENT_ID__ARCHIVED_AT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ATTACHMENT_BY_ATTACHMENT_ID__ARCHIVED_BY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ATTACHMENT_BY_ATTACHMENT_ID__ARCHIVED_BY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ATTACHMENT_BY_ATTACHMENT_ID__CREATED_AT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ATTACHMENT_BY_ATTACHMENT_ID__CREATED_AT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ATTACHMENT_BY_ATTACHMENT_ID__CREATED_BY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ATTACHMENT_BY_ATTACHMENT_ID__CREATED_BY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ATTACHMENT_BY_ATTACHMENT_ID__DESCRIPTION_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ATTACHMENT_BY_ATTACHMENT_ID__DESCRIPTION_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ATTACHMENT_BY_ATTACHMENT_ID__FILE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ATTACHMENT_BY_ATTACHMENT_ID__FILE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ATTACHMENT_BY_ATTACHMENT_ID__FILE_NAME_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ATTACHMENT_BY_ATTACHMENT_ID__FILE_NAME_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ATTACHMENT_BY_ATTACHMENT_ID__FILE_SIZE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ATTACHMENT_BY_ATTACHMENT_ID__FILE_SIZE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ATTACHMENT_BY_ATTACHMENT_ID__FILE_TYPE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ATTACHMENT_BY_ATTACHMENT_ID__FILE_TYPE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ATTACHMENT_BY_ATTACHMENT_ID__ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ATTACHMENT_BY_ATTACHMENT_ID__ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ATTACHMENT_BY_ATTACHMENT_ID__UPDATED_AT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ATTACHMENT_BY_ATTACHMENT_ID__UPDATED_AT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ATTACHMENT_BY_ATTACHMENT_ID__UPDATED_BY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ATTACHMENT_BY_ATTACHMENT_ID__UPDATED_BY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ATTACHMENT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ATTACHMENT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_ARCHIVED_BY__ALLOW_SUB_UPDATE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_ARCHIVED_BY__ALLOW_SUB_UPDATE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_ARCHIVED_BY__ARCHIVED_AT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_ARCHIVED_BY__ARCHIVED_AT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_ARCHIVED_BY__ARCHIVED_BY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_ARCHIVED_BY__ARCHIVED_BY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_ARCHIVED_BY__CREATED_AT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_ARCHIVED_BY__CREATED_AT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_ARCHIVED_BY__CREATED_BY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_ARCHIVED_BY__CREATED_BY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_ARCHIVED_BY__EMAIL_ADDRESS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_ARCHIVED_BY__EMAIL_ADDRESS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_ARCHIVED_BY__FAMILY_NAME_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_ARCHIVED_BY__FAMILY_NAME_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_ARCHIVED_BY__FULL_NAME_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_ARCHIVED_BY__FULL_NAME_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_ARCHIVED_BY__GIVEN_NAME_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_ARCHIVED_BY__GIVEN_NAME_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_ARCHIVED_BY__ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_ARCHIVED_BY__ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_ARCHIVED_BY__SESSION_SUB_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_ARCHIVED_BY__SESSION_SUB_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_ARCHIVED_BY__UPDATED_AT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_ARCHIVED_BY__UPDATED_AT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_ARCHIVED_BY__UPDATED_BY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_ARCHIVED_BY__UPDATED_BY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_CREATED_BY__ALLOW_SUB_UPDATE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_CREATED_BY__ALLOW_SUB_UPDATE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_CREATED_BY__ARCHIVED_AT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_CREATED_BY__ARCHIVED_AT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_CREATED_BY__ARCHIVED_BY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_CREATED_BY__ARCHIVED_BY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_CREATED_BY__CREATED_AT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_CREATED_BY__CREATED_AT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_CREATED_BY__CREATED_BY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_CREATED_BY__CREATED_BY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_CREATED_BY__EMAIL_ADDRESS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_CREATED_BY__EMAIL_ADDRESS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_CREATED_BY__FAMILY_NAME_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_CREATED_BY__FAMILY_NAME_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_CREATED_BY__FULL_NAME_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_CREATED_BY__FULL_NAME_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_CREATED_BY__GIVEN_NAME_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_CREATED_BY__GIVEN_NAME_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_CREATED_BY__ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_CREATED_BY__ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_CREATED_BY__SESSION_SUB_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_CREATED_BY__SESSION_SUB_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_CREATED_BY__UPDATED_AT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_CREATED_BY__UPDATED_AT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_CREATED_BY__UPDATED_BY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_CREATED_BY__UPDATED_BY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_UPDATED_BY__ALLOW_SUB_UPDATE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_UPDATED_BY__ALLOW_SUB_UPDATE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_UPDATED_BY__ARCHIVED_AT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_UPDATED_BY__ARCHIVED_AT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_UPDATED_BY__ARCHIVED_BY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_UPDATED_BY__ARCHIVED_BY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_UPDATED_BY__CREATED_AT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_UPDATED_BY__CREATED_AT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_UPDATED_BY__CREATED_BY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_UPDATED_BY__CREATED_BY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_UPDATED_BY__EMAIL_ADDRESS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_UPDATED_BY__EMAIL_ADDRESS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_UPDATED_BY__FAMILY_NAME_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_UPDATED_BY__FAMILY_NAME_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_UPDATED_BY__FULL_NAME_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_UPDATED_BY__FULL_NAME_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_UPDATED_BY__GIVEN_NAME_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_UPDATED_BY__GIVEN_NAME_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_UPDATED_BY__ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_UPDATED_BY__ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_UPDATED_BY__SESSION_SUB_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_UPDATED_BY__SESSION_SUB_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_UPDATED_BY__UPDATED_AT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_UPDATED_BY__UPDATED_AT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_UPDATED_BY__UPDATED_BY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CIF_USER_BY_UPDATED_BY__UPDATED_BY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CREATED_AT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CREATED_AT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CREATED_BY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CREATED_BY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NATURAL", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PRIMARY_KEY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PRIMARY_KEY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__ADDITIONAL_SECTOR_INFORMATION_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__ADDITIONAL_SECTOR_INFORMATION_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__ARCHIVED_AT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__ARCHIVED_AT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__ARCHIVED_BY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__ARCHIVED_BY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__COMMENTS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__COMMENTS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__CONTRACT_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__CONTRACT_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__CREATED_AT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__CREATED_AT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__CREATED_BY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__CREATED_BY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__FUNDING_STREAM_RFP_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__FUNDING_STREAM_RFP_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__NEXT_MILESTONE_DUE_DATE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__NEXT_MILESTONE_DUE_DATE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__OPERATOR_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__OPERATOR_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__PROJECT_NAME_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__PROJECT_NAME_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__PROJECT_STATUS_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__PROJECT_STATUS_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__PROJECT_TYPE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__PROJECT_TYPE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__PROPOSAL_REFERENCE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__PROPOSAL_REFERENCE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__SCORE_ASC", - "description": null, + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "RevisionStatusCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "RevisionStatusFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `RevisionStatus`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "RevisionStatusesOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectRevisionStatusesByProjectRevisionProjectIdAndRevisionStatusManyToManyConnection", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "PROJECT_BY_PROJECT_ID__SCORE_DESC", - "description": null, + "name": "revisionTypesByProjectRevisionProjectIdAndRevisionType", + "description": "Reads and enables pagination through a set of `RevisionType`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "RevisionTypeCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "RevisionTypeFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `RevisionType`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "RevisionTypesOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectRevisionTypesByProjectRevisionProjectIdAndRevisionTypeManyToManyConnection", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "PROJECT_BY_PROJECT_ID__SECTOR_NAME_ASC", - "description": null, + "name": "rowId", + "description": "Unique ID for the project", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "PROJECT_BY_PROJECT_ID__SECTOR_NAME_DESC", - "description": null, + "name": "score", + "description": "The score of the project after evaluation by the CIF team", + "args": [], + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "PROJECT_BY_PROJECT_ID__SUMMARY_ASC", - "description": null, + "name": "sectorBySectorName", + "description": "Reads a single `Sector` that is related to this `Project`.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Sector", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "PROJECT_BY_PROJECT_ID__SUMMARY_DESC", - "description": null, + "name": "sectorName", + "description": "The industry sector this project relates to", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "PROJECT_BY_PROJECT_ID__TOTAL_FUNDING_REQUEST_ASC", - "description": null, + "name": "summary", + "description": "Summary of the project", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "PROJECT_BY_PROJECT_ID__TOTAL_FUNDING_REQUEST_DESC", - "description": null, + "name": "totalFundingRequest", + "description": "The total amount of funding requested for the project", + "args": [], + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "PROJECT_BY_PROJECT_ID__UPDATED_AT_ASC", - "description": null, + "name": "updatedAt", + "description": "updated at timestamp", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "PROJECT_BY_PROJECT_ID__UPDATED_AT_DESC", - "description": null, + "name": "updatedBy", + "description": "updated by user id", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [ { - "name": "PROJECT_BY_PROJECT_ID__UPDATED_BY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectAdditionalFundingSourceStatusesByAdditionalFundingSourceProjectIdAndStatusManyToManyConnection", + "description": "A connection to a list of `AdditionalFundingSourceStatus` values, with data from `AdditionalFundingSource`.", + "fields": [ { - "name": "PROJECT_BY_PROJECT_ID__UPDATED_BY_DESC", - "description": null, + "name": "edges", + "description": "A list of edges which contains the `AdditionalFundingSourceStatus`, info from the `AdditionalFundingSource`, and the cursor to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectAdditionalFundingSourceStatusesByAdditionalFundingSourceProjectIdAndStatusManyToManyEdge", + "ofType": null + } + } + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "PROJECT_ID_ASC", - "description": null, + "name": "nodes", + "description": "A list of `AdditionalFundingSourceStatus` objects.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AdditionalFundingSourceStatus", + "ofType": null + } + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "PROJECT_ID_DESC", - "description": null, + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "UPDATED_AT_ASC", - "description": null, + "name": "totalCount", + "description": "The count of *all* `AdditionalFundingSourceStatus` you could get from the connection.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectAdditionalFundingSourceStatusesByAdditionalFundingSourceProjectIdAndStatusManyToManyEdge", + "description": "A `AdditionalFundingSourceStatus` edge in the connection, with data from `AdditionalFundingSource`.", + "fields": [ { - "name": "UPDATED_AT_DESC", - "description": null, + "name": "additionalFundingSourcesByStatus", + "description": "Reads and enables pagination through a set of `AdditionalFundingSource`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "AdditionalFundingSourceCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "AdditionalFundingSourceFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `AdditionalFundingSource`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AdditionalFundingSourcesOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AdditionalFundingSourcesConnection", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "UPDATED_BY_ASC", - "description": null, + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "UPDATED_BY_DESC", - "description": null, + "name": "node", + "description": "The `AdditionalFundingSourceStatus` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "AdditionalFundingSourceStatus", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null } ], + "inputFields": null, + "interfaces": [], + "enumValues": null, "possibleTypes": null }, { @@ -191872,7 +185215,481 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `AdditionalFundingSource`.", + "description": "The method to use when ordering `AdditionalFundingSource`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AdditionalFundingSourcesOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AdditionalFundingSourcesConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": "The `CifUser` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "CifUser", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectCifUsersByAdditionalFundingSourceProjectIdAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `AdditionalFundingSource`.", + "fields": [ + { + "name": "edges", + "description": "A list of edges which contains the `CifUser`, info from the `AdditionalFundingSource`, and the cursor to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectCifUsersByAdditionalFundingSourceProjectIdAndUpdatedByManyToManyEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": "A list of `CifUser` objects.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CifUser", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": "The count of *all* `CifUser` you could get from the connection.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectCifUsersByAdditionalFundingSourceProjectIdAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `AdditionalFundingSource`.", + "fields": [ + { + "name": "additionalFundingSourcesByUpdatedBy", + "description": "Reads and enables pagination through a set of `AdditionalFundingSource`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "AdditionalFundingSourceCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "AdditionalFundingSourceFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `AdditionalFundingSource`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AdditionalFundingSourcesOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AdditionalFundingSourcesConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": "The `CifUser` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "CifUser", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectCifUsersByAttachmentProjectIdAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Attachment`.", + "fields": [ + { + "name": "edges", + "description": "A list of edges which contains the `CifUser`, info from the `Attachment`, and the cursor to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectCifUsersByAttachmentProjectIdAndArchivedByManyToManyEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": "A list of `CifUser` objects.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CifUser", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": "The count of *all* `CifUser` you could get from the connection.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectCifUsersByAttachmentProjectIdAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `Attachment`.", + "fields": [ + { + "name": "attachmentsByArchivedBy", + "description": "Reads and enables pagination through a set of `Attachment`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "AttachmentCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "AttachmentFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `Attachment`.", "type": { "kind": "LIST", "name": null, @@ -191881,7 +185698,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AdditionalFundingSourcesOrderBy", + "name": "AttachmentsOrderBy", "ofType": null } } @@ -191894,7 +185711,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AdditionalFundingSourcesConnection", + "name": "AttachmentsConnection", "ofType": null } }, @@ -191933,12 +185750,12 @@ }, { "kind": "OBJECT", - "name": "ProjectCifUsersByAdditionalFundingSourceProjectIdAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `AdditionalFundingSource`.", + "name": "ProjectCifUsersByAttachmentProjectIdAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Attachment`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `AdditionalFundingSource`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `Attachment`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -191951,7 +185768,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectCifUsersByAdditionalFundingSourceProjectIdAndUpdatedByManyToManyEdge", + "name": "ProjectCifUsersByAttachmentProjectIdAndCreatedByManyToManyEdge", "ofType": null } } @@ -192020,12 +185837,12 @@ }, { "kind": "OBJECT", - "name": "ProjectCifUsersByAdditionalFundingSourceProjectIdAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `AdditionalFundingSource`.", + "name": "ProjectCifUsersByAttachmentProjectIdAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `Attachment`.", "fields": [ { - "name": "additionalFundingSourcesByUpdatedBy", - "description": "Reads and enables pagination through a set of `AdditionalFundingSource`.", + "name": "attachmentsByCreatedBy", + "description": "Reads and enables pagination through a set of `Attachment`.", "args": [ { "name": "after", @@ -192052,7 +185869,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceCondition", + "name": "AttachmentCondition", "ofType": null }, "defaultValue": null @@ -192062,7 +185879,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceFilter", + "name": "AttachmentFilter", "ofType": null }, "defaultValue": null @@ -192109,7 +185926,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `AdditionalFundingSource`.", + "description": "The method to use when ordering `Attachment`.", "type": { "kind": "LIST", "name": null, @@ -192118,7 +185935,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AdditionalFundingSourcesOrderBy", + "name": "AttachmentsOrderBy", "ofType": null } } @@ -192131,7 +185948,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AdditionalFundingSourcesConnection", + "name": "AttachmentsConnection", "ofType": null } }, @@ -192170,12 +185987,12 @@ }, { "kind": "OBJECT", - "name": "ProjectCifUsersByFundingParameterProjectIdAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `FundingParameter`.", + "name": "ProjectCifUsersByAttachmentProjectIdAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Attachment`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `FundingParameter`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `Attachment`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -192188,7 +186005,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectCifUsersByFundingParameterProjectIdAndArchivedByManyToManyEdge", + "name": "ProjectCifUsersByAttachmentProjectIdAndUpdatedByManyToManyEdge", "ofType": null } } @@ -192257,24 +186074,12 @@ }, { "kind": "OBJECT", - "name": "ProjectCifUsersByFundingParameterProjectIdAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `FundingParameter`.", + "name": "ProjectCifUsersByAttachmentProjectIdAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `Attachment`.", "fields": [ { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fundingParametersByArchivedBy", - "description": "Reads and enables pagination through a set of `FundingParameter`.", + "name": "attachmentsByUpdatedBy", + "description": "Reads and enables pagination through a set of `Attachment`.", "args": [ { "name": "after", @@ -192301,7 +186106,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingParameterCondition", + "name": "AttachmentCondition", "ofType": null }, "defaultValue": null @@ -192311,7 +186116,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingParameterFilter", + "name": "AttachmentFilter", "ofType": null }, "defaultValue": null @@ -192358,7 +186163,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingParameter`.", + "description": "The method to use when ordering `Attachment`.", "type": { "kind": "LIST", "name": null, @@ -192367,7 +186172,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingParametersOrderBy", + "name": "AttachmentsOrderBy", "ofType": null } } @@ -192380,123 +186185,13 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingParametersConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `CifUser` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "CifUser", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectCifUsersByFundingParameterProjectIdAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `FundingParameter`.", - "fields": [ - { - "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `FundingParameter`, and the cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectCifUsersByFundingParameterProjectIdAndCreatedByManyToManyEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `CifUser` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CifUser", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", + "name": "AttachmentsConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, - { - "name": "totalCount", - "description": "The count of *all* `CifUser` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectCifUsersByFundingParameterProjectIdAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `FundingParameter`.", - "fields": [ { "name": "cursor", "description": "A cursor for use in pagination.", @@ -192509,121 +186204,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "fundingParametersByCreatedBy", - "description": "Reads and enables pagination through a set of `FundingParameter`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "FundingParameterCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "FundingParameterFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `FundingParameter`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "FundingParametersOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "FundingParametersConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "node", "description": "The `CifUser` at the end of the edge.", @@ -192644,7 +186224,7 @@ }, { "kind": "OBJECT", - "name": "ProjectCifUsersByFundingParameterProjectIdAndUpdatedByManyToManyConnection", + "name": "ProjectCifUsersByFundingParameterProjectIdAndArchivedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `FundingParameter`.", "fields": [ { @@ -192662,7 +186242,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectCifUsersByFundingParameterProjectIdAndUpdatedByManyToManyEdge", + "name": "ProjectCifUsersByFundingParameterProjectIdAndArchivedByManyToManyEdge", "ofType": null } } @@ -192731,7 +186311,7 @@ }, { "kind": "OBJECT", - "name": "ProjectCifUsersByFundingParameterProjectIdAndUpdatedByManyToManyEdge", + "name": "ProjectCifUsersByFundingParameterProjectIdAndArchivedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `FundingParameter`.", "fields": [ { @@ -192747,7 +186327,7 @@ "deprecationReason": null }, { - "name": "fundingParametersByUpdatedBy", + "name": "fundingParametersByArchivedBy", "description": "Reads and enables pagination through a set of `FundingParameter`.", "args": [ { @@ -192881,12 +186461,12 @@ }, { "kind": "OBJECT", - "name": "ProjectCifUsersByProjectAttachmentProjectIdAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectAttachment`.", + "name": "ProjectCifUsersByFundingParameterProjectIdAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `FundingParameter`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectAttachment`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `FundingParameter`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -192899,7 +186479,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectCifUsersByProjectAttachmentProjectIdAndArchivedByManyToManyEdge", + "name": "ProjectCifUsersByFundingParameterProjectIdAndCreatedByManyToManyEdge", "ofType": null } } @@ -192968,8 +186548,8 @@ }, { "kind": "OBJECT", - "name": "ProjectCifUsersByProjectAttachmentProjectIdAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectAttachment`.", + "name": "ProjectCifUsersByFundingParameterProjectIdAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `FundingParameter`.", "fields": [ { "name": "cursor", @@ -192984,20 +186564,8 @@ "deprecationReason": null }, { - "name": "node", - "description": "The `CifUser` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "CifUser", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectAttachmentsByArchivedBy", - "description": "Reads and enables pagination through a set of `ProjectAttachment`.", + "name": "fundingParametersByCreatedBy", + "description": "Reads and enables pagination through a set of `FundingParameter`.", "args": [ { "name": "after", @@ -193024,7 +186592,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentCondition", + "name": "FundingParameterCondition", "ofType": null }, "defaultValue": null @@ -193034,7 +186602,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentFilter", + "name": "FundingParameterFilter", "ofType": null }, "defaultValue": null @@ -193081,7 +186649,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectAttachment`.", + "description": "The method to use when ordering `FundingParameter`.", "type": { "kind": "LIST", "name": null, @@ -193090,7 +186658,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectAttachmentsOrderBy", + "name": "FundingParametersOrderBy", "ofType": null } } @@ -193103,123 +186671,13 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectAttachmentsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectCifUsersByProjectAttachmentProjectIdAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectAttachment`.", - "fields": [ - { - "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectAttachment`, and the cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectCifUsersByProjectAttachmentProjectIdAndCreatedByManyToManyEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `CifUser` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CifUser", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", + "name": "FundingParametersConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, - { - "name": "totalCount", - "description": "The count of *all* `CifUser` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectCifUsersByProjectAttachmentProjectIdAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectAttachment`.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "node", "description": "The `CifUser` at the end of the edge.", @@ -193231,121 +186689,6 @@ }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "projectAttachmentsByCreatedBy", - "description": "Reads and enables pagination through a set of `ProjectAttachment`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `ProjectAttachment`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProjectAttachmentsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectAttachmentsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null } ], "inputFields": null, @@ -193355,12 +186698,12 @@ }, { "kind": "OBJECT", - "name": "ProjectCifUsersByProjectAttachmentProjectIdAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectAttachment`.", + "name": "ProjectCifUsersByFundingParameterProjectIdAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `FundingParameter`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectAttachment`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `FundingParameter`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -193373,7 +186716,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectCifUsersByProjectAttachmentProjectIdAndUpdatedByManyToManyEdge", + "name": "ProjectCifUsersByFundingParameterProjectIdAndUpdatedByManyToManyEdge", "ofType": null } } @@ -193442,8 +186785,8 @@ }, { "kind": "OBJECT", - "name": "ProjectCifUsersByProjectAttachmentProjectIdAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectAttachment`.", + "name": "ProjectCifUsersByFundingParameterProjectIdAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `FundingParameter`.", "fields": [ { "name": "cursor", @@ -193458,20 +186801,8 @@ "deprecationReason": null }, { - "name": "node", - "description": "The `CifUser` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "CifUser", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectAttachmentsByUpdatedBy", - "description": "Reads and enables pagination through a set of `ProjectAttachment`.", + "name": "fundingParametersByUpdatedBy", + "description": "Reads and enables pagination through a set of `FundingParameter`.", "args": [ { "name": "after", @@ -193498,7 +186829,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentCondition", + "name": "FundingParameterCondition", "ofType": null }, "defaultValue": null @@ -193508,7 +186839,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentFilter", + "name": "FundingParameterFilter", "ofType": null }, "defaultValue": null @@ -193555,7 +186886,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectAttachment`.", + "description": "The method to use when ordering `FundingParameter`.", "type": { "kind": "LIST", "name": null, @@ -193564,7 +186895,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectAttachmentsOrderBy", + "name": "FundingParametersOrderBy", "ofType": null } } @@ -193577,12 +186908,24 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectAttachmentsConnection", + "name": "FundingParametersConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "node", + "description": "The `CifUser` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "CifUser", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -198940,6 +192283,26 @@ }, "defaultValue": null }, + { + "name": "attachmentsByProjectId", + "description": "Filter by the object’s `attachmentsByProjectId` relation.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectToManyAttachmentFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "attachmentsByProjectIdExist", + "description": "Some related `attachmentsByProjectId` exist.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, { "name": "cifUserByArchivedBy", "description": "Filter by the object’s `cifUserByArchivedBy` relation.", @@ -199080,16 +192443,6 @@ }, "defaultValue": null }, - { - "name": "milestoneStatus", - "description": "Filter by the object’s `milestoneStatus` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null - }, { "name": "nextMilestoneDueDate", "description": "Filter by the object’s `nextMilestoneDueDate` field.", @@ -199158,26 +192511,6 @@ }, "defaultValue": null }, - { - "name": "projectAttachmentsByProjectId", - "description": "Filter by the object’s `projectAttachmentsByProjectId` relation.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectToManyProjectAttachmentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "projectAttachmentsByProjectIdExist", - "description": "Some related `projectAttachmentsByProjectId` exist.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, { "name": "projectContactsByProjectId", "description": "Filter by the object’s `projectContactsByProjectId` relation.", @@ -204987,7 +198320,220 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManager`.", + "description": "The method to use when ordering `ProjectManager`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectManagersOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectManagersConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectProjectStatusesByAttachmentProjectIdAndProjectStatusIdManyToManyConnection", + "description": "A connection to a list of `ProjectStatus` values, with data from `Attachment`.", + "fields": [ + { + "name": "edges", + "description": "A list of edges which contains the `ProjectStatus`, info from the `Attachment`, and the cursor to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectProjectStatusesByAttachmentProjectIdAndProjectStatusIdManyToManyEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": "A list of `ProjectStatus` objects.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectStatus", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": "The count of *all* `ProjectStatus` you could get from the connection.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectProjectStatusesByAttachmentProjectIdAndProjectStatusIdManyToManyEdge", + "description": "A `ProjectStatus` edge in the connection, with data from `Attachment`.", + "fields": [ + { + "name": "attachmentsByProjectStatusId", + "description": "Reads and enables pagination through a set of `Attachment`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "AttachmentCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "AttachmentFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `Attachment`.", "type": { "kind": "LIST", "name": null, @@ -204996,7 +198542,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagersOrderBy", + "name": "AttachmentsOrderBy", "ofType": null } } @@ -205009,12 +198555,36 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectManagersConnection", + "name": "AttachmentsConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": "The `ProjectStatus` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectStatus", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -205379,6 +198949,83 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "anticipatedFundingAmountPerFiscalYear", + "description": "Computed column to calculate the anticipated amount of funding for a project by fiscal year", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SumByFiscalYearFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SumByFiscalYearsConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "changeReason", "description": "Explanation of why the revision was made", @@ -206393,7 +200040,7 @@ }, { "name": "formChangesFor", - "description": "Computed column to dynamically retrieve the form_change record relating to the project_revision from a given table", + "description": "Computed column to dynamically retrieve the form_change records relating to the project_revision from a given table", "args": [ { "name": "after", @@ -206657,107 +200304,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "latestCommittedFormChangesFor", - "description": "Reads and enables pagination through a set of `FormChange`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "FormChangeFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "formDataTableName", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reportType", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "FormChangesConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "milestoneReportStatuses", "description": "Computed column to return both form completion statuses and reporting requirement statuses for individual milestones", @@ -207077,6 +200623,18 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "rank", + "description": "Computed column to determine the rank of a project", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "revisionStatus", "description": "The status of the revision of a project", @@ -207186,6 +200744,42 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "teimpPaymentAmount", + "description": " Computed column to return the TEIMP payment amount, based on:\n - X% being the TEIMP payment percentage calculated from the emissions performance (Schedule G)\n - Gross and Net payment amounts to date\n Formula:\n TEIMP payment amount = X% * (Gross payment to date - Net payment to date)\n", + "args": [], + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "teimpPaymentPercentage", + "description": " Computed column to return the TEIMP payment percentage, calculated as specified in the schedule G.\n The calculation for determining emission intensity performance uses three metrics and a calculation:\n Metrics:\n - BEI: Baseline Emission Intensity\n - PEI: Post-Project Emission Intensity\n - TEI: Target Emission Intensity\n Calculation:\n - Emission Intensity Payment Percentage = (BEI - PEI) / (BEI - TEI) * 100\n", + "args": [], + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalProjectValue", + "description": " Computed column to return the total project value.\n Calculation:\n - Total Project Value = Maximum Funding Amount + Proponent Cost + Additional Funding Amount(s)\n", + "args": [], + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "typeRowNumber", "description": "Returns the row number of the project revision within the scope of a project and among all other revisions of the same type.", @@ -211031,6 +204625,16 @@ }, "defaultValue": null }, + { + "name": "rank", + "description": "Filter by the object’s `rank` field.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + }, + "defaultValue": null + }, { "name": "revisionStatus", "description": "Filter by the object’s `revisionStatus` field.", @@ -211081,6 +204685,36 @@ }, "defaultValue": null }, + { + "name": "teimpPaymentAmount", + "description": "Filter by the object’s `teimpPaymentAmount` field.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BigFloatFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "teimpPaymentPercentage", + "description": "Filter by the object’s `teimpPaymentPercentage` field.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BigFloatFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "totalProjectValue", + "description": "Filter by the object’s `totalProjectValue` field.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BigFloatFilter", + "ofType": null + }, + "defaultValue": null + }, { "name": "typeRowNumber", "description": "Filter by the object’s `typeRowNumber` field.", @@ -213279,18 +206913,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "REVISION_STATUS_BY_REVISION_STATUS__SORTING_ORDER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "REVISION_STATUS_BY_REVISION_STATUS__SORTING_ORDER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "REVISION_STATUS_BY_REVISION_STATUS__UPDATED_AT_ASC", "description": null, @@ -213473,6 +207095,121 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "attachmentsByProjectStatusId", + "description": "Reads and enables pagination through a set of `Attachment`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "AttachmentCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "AttachmentFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "INHERIT" + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `Attachment`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AttachmentsOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AttachmentsConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "cifUserByArchivedBy", "description": "Reads a single `CifUser` that is related to this `ProjectStatus`.", @@ -213509,6 +207246,351 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "cifUsersByAttachmentProjectStatusIdAndArchivedBy", + "description": "Reads and enables pagination through a set of `CifUser`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CifUserCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CifUserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `CifUser`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CifUsersOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectStatusCifUsersByAttachmentProjectStatusIdAndArchivedByManyToManyConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cifUsersByAttachmentProjectStatusIdAndCreatedBy", + "description": "Reads and enables pagination through a set of `CifUser`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CifUserCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CifUserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `CifUser`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CifUsersOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectStatusCifUsersByAttachmentProjectStatusIdAndCreatedByManyToManyConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cifUsersByAttachmentProjectStatusIdAndUpdatedBy", + "description": "Reads and enables pagination through a set of `CifUser`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CifUserCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CifUserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `CifUser`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CifUsersOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectStatusCifUsersByAttachmentProjectStatusIdAndUpdatedByManyToManyConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "cifUsersByFundingStreamProjectStatusProjectStatusIdAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", @@ -213825,7 +207907,507 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `CifUser`.", + "description": "The method to use when ordering `CifUser`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CifUsersOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectStatusCifUsersByFundingStreamProjectStatusProjectStatusIdAndUpdatedByManyToManyConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cifUsersByProjectProjectStatusIdAndArchivedBy", + "description": "Reads and enables pagination through a set of `CifUser`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CifUserCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CifUserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `CifUser`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CifUsersOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectStatusCifUsersByProjectProjectStatusIdAndArchivedByManyToManyConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cifUsersByProjectProjectStatusIdAndCreatedBy", + "description": "Reads and enables pagination through a set of `CifUser`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CifUserCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CifUserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `CifUser`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CifUsersOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectStatusCifUsersByProjectProjectStatusIdAndCreatedByManyToManyConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cifUsersByProjectProjectStatusIdAndUpdatedBy", + "description": "Reads and enables pagination through a set of `CifUser`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CifUserCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CifUserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `CifUser`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CifUsersOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectStatusCifUsersByProjectProjectStatusIdAndUpdatedByManyToManyConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "created at timestamp", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdBy", + "description": "created by user id", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": "Description of the project_status", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fundingStreamProjectStatusesByProjectStatusId", + "description": "Reads and enables pagination through a set of `FundingStreamProjectStatus`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "FundingStreamProjectStatusCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "FundingStreamProjectStatusFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "INHERIT" + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `FundingStreamProjectStatus`.", "type": { "kind": "LIST", "name": null, @@ -213834,7 +208416,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "CifUsersOrderBy", + "name": "FundingStreamProjectStatusesOrderBy", "ofType": null } } @@ -213847,7 +208429,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectStatusCifUsersByFundingStreamProjectStatusProjectStatusIdAndUpdatedByManyToManyConnection", + "name": "FundingStreamProjectStatusesConnection", "ofType": null } }, @@ -213855,8 +208437,8 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectProjectStatusIdAndArchivedBy", - "description": "Reads and enables pagination through a set of `CifUser`.", + "name": "fundingStreamRfpsByProjectProjectStatusIdAndFundingStreamRfpId", + "description": "Reads and enables pagination through a set of `FundingStreamRfp`.", "args": [ { "name": "after", @@ -213883,7 +208465,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserCondition", + "name": "FundingStreamRfpCondition", "ofType": null }, "defaultValue": null @@ -213893,7 +208475,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserFilter", + "name": "FundingStreamRfpFilter", "ofType": null }, "defaultValue": null @@ -213940,7 +208522,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `CifUser`.", + "description": "The method to use when ordering `FundingStreamRfp`.", "type": { "kind": "LIST", "name": null, @@ -213949,7 +208531,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "CifUsersOrderBy", + "name": "FundingStreamRfpsOrderBy", "ofType": null } } @@ -213962,7 +208544,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectStatusCifUsersByProjectProjectStatusIdAndArchivedByManyToManyConnection", + "name": "ProjectStatusFundingStreamRfpsByProjectProjectStatusIdAndFundingStreamRfpIdManyToManyConnection", "ofType": null } }, @@ -213970,8 +208552,8 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectProjectStatusIdAndCreatedBy", - "description": "Reads and enables pagination through a set of `CifUser`.", + "name": "fundingStreamsByFundingStreamProjectStatusProjectStatusIdAndFundingStreamId", + "description": "Reads and enables pagination through a set of `FundingStream`.", "args": [ { "name": "after", @@ -213998,7 +208580,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserCondition", + "name": "FundingStreamCondition", "ofType": null }, "defaultValue": null @@ -214008,7 +208590,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserFilter", + "name": "FundingStreamFilter", "ofType": null }, "defaultValue": null @@ -214055,7 +208637,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `CifUser`.", + "description": "The method to use when ordering `FundingStream`.", "type": { "kind": "LIST", "name": null, @@ -214064,7 +208646,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "CifUsersOrderBy", + "name": "FundingStreamsOrderBy", "ofType": null } } @@ -214077,7 +208659,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectStatusCifUsersByProjectProjectStatusIdAndCreatedByManyToManyConnection", + "name": "ProjectStatusFundingStreamsByFundingStreamProjectStatusProjectStatusIdAndFundingStreamIdManyToManyConnection", "ofType": null } }, @@ -214085,8 +208667,40 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectProjectStatusIdAndUpdatedBy", - "description": "Reads and enables pagination through a set of `CifUser`.", + "name": "id", + "description": "A globally unique identifier. Can be used in various places throughout the system to identify this single value.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "Name of the project_status", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "operatorsByProjectProjectStatusIdAndOperatorId", + "description": "Reads and enables pagination through a set of `Operator`.", "args": [ { "name": "after", @@ -214113,7 +208727,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserCondition", + "name": "OperatorCondition", "ofType": null }, "defaultValue": null @@ -214123,7 +208737,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserFilter", + "name": "OperatorFilter", "ofType": null }, "defaultValue": null @@ -214170,7 +208784,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `CifUser`.", + "description": "The method to use when ordering `Operator`.", "type": { "kind": "LIST", "name": null, @@ -214179,7 +208793,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "CifUsersOrderBy", + "name": "OperatorsOrderBy", "ofType": null } } @@ -214192,23 +208806,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectStatusCifUsersByProjectProjectStatusIdAndUpdatedByManyToManyConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": "created at timestamp", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Datetime", + "name": "ProjectStatusOperatorsByProjectProjectStatusIdAndOperatorIdManyToManyConnection", "ofType": null } }, @@ -214216,32 +208814,8 @@ "deprecationReason": null }, { - "name": "createdBy", - "description": "created by user id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": "Description of the project_status", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fundingStreamProjectStatusesByProjectStatusId", - "description": "Reads and enables pagination through a set of `FundingStreamProjectStatus`.", + "name": "projectTypesByProjectProjectStatusIdAndProjectType", + "description": "Reads and enables pagination through a set of `ProjectType`.", "args": [ { "name": "after", @@ -214268,7 +208842,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamProjectStatusCondition", + "name": "ProjectTypeCondition", "ofType": null }, "defaultValue": null @@ -214278,7 +208852,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamProjectStatusFilter", + "name": "ProjectTypeFilter", "ofType": null }, "defaultValue": null @@ -214301,7 +208875,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -214325,7 +208899,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStreamProjectStatus`.", + "description": "The method to use when ordering `ProjectType`.", "type": { "kind": "LIST", "name": null, @@ -214334,7 +208908,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamProjectStatusesOrderBy", + "name": "ProjectTypesOrderBy", "ofType": null } } @@ -214347,7 +208921,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingStreamProjectStatusesConnection", + "name": "ProjectStatusProjectTypesByProjectProjectStatusIdAndProjectTypeManyToManyConnection", "ofType": null } }, @@ -214355,8 +208929,8 @@ "deprecationReason": null }, { - "name": "fundingStreamRfpsByProjectProjectStatusIdAndFundingStreamRfpId", - "description": "Reads and enables pagination through a set of `FundingStreamRfp`.", + "name": "projectsByAttachmentProjectStatusIdAndProjectId", + "description": "Reads and enables pagination through a set of `Project`.", "args": [ { "name": "after", @@ -214383,7 +208957,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamRfpCondition", + "name": "ProjectCondition", "ofType": null }, "defaultValue": null @@ -214393,7 +208967,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamRfpFilter", + "name": "ProjectFilter", "ofType": null }, "defaultValue": null @@ -214440,7 +209014,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStreamRfp`.", + "description": "The method to use when ordering `Project`.", "type": { "kind": "LIST", "name": null, @@ -214449,7 +209023,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamRfpsOrderBy", + "name": "ProjectsOrderBy", "ofType": null } } @@ -214462,7 +209036,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectStatusFundingStreamRfpsByProjectProjectStatusIdAndFundingStreamRfpIdManyToManyConnection", + "name": "ProjectStatusProjectsByAttachmentProjectStatusIdAndProjectIdManyToManyConnection", "ofType": null } }, @@ -214470,8 +209044,8 @@ "deprecationReason": null }, { - "name": "fundingStreamsByFundingStreamProjectStatusProjectStatusIdAndFundingStreamId", - "description": "Reads and enables pagination through a set of `FundingStream`.", + "name": "projectsByProjectStatusId", + "description": "Reads and enables pagination through a set of `Project`.", "args": [ { "name": "after", @@ -214498,7 +209072,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamCondition", + "name": "ProjectCondition", "ofType": null }, "defaultValue": null @@ -214508,7 +209082,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamFilter", + "name": "ProjectFilter", "ofType": null }, "defaultValue": null @@ -214531,7 +209105,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -214555,7 +209129,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStream`.", + "description": "The method to use when ordering `Project`.", "type": { "kind": "LIST", "name": null, @@ -214564,7 +209138,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamsOrderBy", + "name": "ProjectsOrderBy", "ofType": null } } @@ -214577,23 +209151,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectStatusFundingStreamsByFundingStreamProjectStatusProjectStatusIdAndFundingStreamIdManyToManyConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "A globally unique identifier. Can be used in various places throughout the system to identify this single value.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", + "name": "ProjectsConnection", "ofType": null } }, @@ -214601,15 +209159,15 @@ "deprecationReason": null }, { - "name": "name", - "description": "Name of the project_status", + "name": "rowId", + "description": "Unique ID for the project_status", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, @@ -214617,8 +209175,8 @@ "deprecationReason": null }, { - "name": "operatorsByProjectProjectStatusIdAndOperatorId", - "description": "Reads and enables pagination through a set of `Operator`.", + "name": "sectorsByProjectProjectStatusIdAndSectorName", + "description": "Reads and enables pagination through a set of `Sector`.", "args": [ { "name": "after", @@ -214645,7 +209203,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "OperatorCondition", + "name": "SectorCondition", "ofType": null }, "defaultValue": null @@ -214655,7 +209213,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "OperatorFilter", + "name": "SectorFilter", "ofType": null }, "defaultValue": null @@ -214702,7 +209260,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Operator`.", + "description": "The method to use when ordering `Sector`.", "type": { "kind": "LIST", "name": null, @@ -214711,7 +209269,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "OperatorsOrderBy", + "name": "SectorsOrderBy", "ofType": null } } @@ -214724,7 +209282,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectStatusOperatorsByProjectProjectStatusIdAndOperatorIdManyToManyConnection", + "name": "ProjectStatusSectorsByProjectProjectStatusIdAndSectorNameManyToManyConnection", "ofType": null } }, @@ -214732,8 +209290,140 @@ "deprecationReason": null }, { - "name": "projectTypesByProjectProjectStatusIdAndProjectType", - "description": "Reads and enables pagination through a set of `ProjectType`.", + "name": "updatedAt", + "description": "updated at timestamp", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedBy", + "description": "updated by user id", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectStatusCifUsersByAttachmentProjectStatusIdAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Attachment`.", + "fields": [ + { + "name": "edges", + "description": "A list of edges which contains the `CifUser`, info from the `Attachment`, and the cursor to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectStatusCifUsersByAttachmentProjectStatusIdAndArchivedByManyToManyEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": "A list of `CifUser` objects.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CifUser", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": "The count of *all* `CifUser` you could get from the connection.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectStatusCifUsersByAttachmentProjectStatusIdAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `Attachment`.", + "fields": [ + { + "name": "attachmentsByArchivedBy", + "description": "Reads and enables pagination through a set of `Attachment`.", "args": [ { "name": "after", @@ -214760,7 +209450,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTypeCondition", + "name": "AttachmentCondition", "ofType": null }, "defaultValue": null @@ -214770,7 +209460,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTypeFilter", + "name": "AttachmentFilter", "ofType": null }, "defaultValue": null @@ -214817,7 +209507,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectType`.", + "description": "The method to use when ordering `Attachment`.", "type": { "kind": "LIST", "name": null, @@ -214826,7 +209516,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectTypesOrderBy", + "name": "AttachmentsOrderBy", "ofType": null } } @@ -214839,7 +209529,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectStatusProjectTypesByProjectProjectStatusIdAndProjectTypeManyToManyConnection", + "name": "AttachmentsConnection", "ofType": null } }, @@ -214847,8 +209537,130 @@ "deprecationReason": null }, { - "name": "projectsByProjectStatusId", - "description": "Reads and enables pagination through a set of `Project`.", + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": "The `CifUser` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "CifUser", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectStatusCifUsersByAttachmentProjectStatusIdAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Attachment`.", + "fields": [ + { + "name": "edges", + "description": "A list of edges which contains the `CifUser`, info from the `Attachment`, and the cursor to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectStatusCifUsersByAttachmentProjectStatusIdAndCreatedByManyToManyEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": "A list of `CifUser` objects.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CifUser", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": "The count of *all* `CifUser` you could get from the connection.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectStatusCifUsersByAttachmentProjectStatusIdAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `Attachment`.", + "fields": [ + { + "name": "attachmentsByCreatedBy", + "description": "Reads and enables pagination through a set of `Attachment`.", "args": [ { "name": "after", @@ -214875,7 +209687,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCondition", + "name": "AttachmentCondition", "ofType": null }, "defaultValue": null @@ -214885,7 +209697,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectFilter", + "name": "AttachmentFilter", "ofType": null }, "defaultValue": null @@ -214908,7 +209720,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -214932,7 +209744,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Project`.", + "description": "The method to use when ordering `Attachment`.", "type": { "kind": "LIST", "name": null, @@ -214941,7 +209753,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectsOrderBy", + "name": "AttachmentsOrderBy", "ofType": null } } @@ -214954,7 +209766,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectsConnection", + "name": "AttachmentsConnection", "ofType": null } }, @@ -214962,8 +209774,103 @@ "deprecationReason": null }, { - "name": "rowId", - "description": "Unique ID for the project_status", + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": "The `CifUser` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "CifUser", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectStatusCifUsersByAttachmentProjectStatusIdAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Attachment`.", + "fields": [ + { + "name": "edges", + "description": "A list of edges which contains the `CifUser`, info from the `Attachment`, and the cursor to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectStatusCifUsersByAttachmentProjectStatusIdAndUpdatedByManyToManyEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": "A list of `CifUser` objects.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CifUser", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": "The count of *all* `CifUser` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -214976,10 +209883,21 @@ }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectStatusCifUsersByAttachmentProjectStatusIdAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `Attachment`.", + "fields": [ { - "name": "sectorsByProjectProjectStatusIdAndSectorName", - "description": "Reads and enables pagination through a set of `Sector`.", + "name": "attachmentsByUpdatedBy", + "description": "Reads and enables pagination through a set of `Attachment`.", "args": [ { "name": "after", @@ -215006,7 +209924,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "SectorCondition", + "name": "AttachmentCondition", "ofType": null }, "defaultValue": null @@ -215016,7 +209934,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "SectorFilter", + "name": "AttachmentFilter", "ofType": null }, "defaultValue": null @@ -215063,7 +209981,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Sector`.", + "description": "The method to use when ordering `Attachment`.", "type": { "kind": "LIST", "name": null, @@ -215072,7 +209990,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "SectorsOrderBy", + "name": "AttachmentsOrderBy", "ofType": null } } @@ -215085,7 +210003,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectStatusSectorsByProjectProjectStatusIdAndSectorNameManyToManyConnection", + "name": "AttachmentsConnection", "ofType": null } }, @@ -215093,28 +210011,24 @@ "deprecationReason": null }, { - "name": "updatedAt", - "description": "updated at timestamp", + "name": "cursor", + "description": "A cursor for use in pagination.", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Datetime", - "ofType": null - } + "kind": "SCALAR", + "name": "Cursor", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updatedBy", - "description": "updated by user id", + "name": "node", + "description": "The `CifUser` at the end of the edge.", "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "CifUser", "ofType": null }, "isDeprecated": false, @@ -215122,13 +210036,7 @@ } ], "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], + "interfaces": [], "enumValues": null, "possibleTypes": null }, @@ -216699,6 +211607,26 @@ }, "defaultValue": null }, + { + "name": "attachmentsByProjectStatusId", + "description": "Filter by the object’s `attachmentsByProjectStatusId` relation.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectStatusToManyAttachmentFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "attachmentsByProjectStatusIdExist", + "description": "Some related `attachmentsByProjectStatusId` exist.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, { "name": "cifUserByArchivedBy", "description": "Filter by the object’s `cifUserByArchivedBy` relation.", @@ -217888,36 +212816,249 @@ }, { "kind": "OBJECT", - "name": "ProjectStatusProjectTypesByProjectProjectStatusIdAndProjectTypeManyToManyEdge", - "description": "A `ProjectType` edge in the connection, with data from `Project`.", + "name": "ProjectStatusProjectTypesByProjectProjectStatusIdAndProjectTypeManyToManyEdge", + "description": "A `ProjectType` edge in the connection, with data from `Project`.", + "fields": [ + { + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": "The `ProjectType` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectsByProjectType", + "description": "Reads and enables pagination through a set of `Project`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `Project`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectsOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectsConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectStatusProjectsByAttachmentProjectStatusIdAndProjectIdManyToManyConnection", + "description": "A connection to a list of `Project` values, with data from `Attachment`.", + "fields": [ + { + "name": "edges", + "description": "A list of edges which contains the `Project`, info from the `Attachment`, and the cursor to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectStatusProjectsByAttachmentProjectStatusIdAndProjectIdManyToManyEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": "A list of `Project` objects.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": "The count of *all* `Project` you could get from the connection.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectStatusProjectsByAttachmentProjectStatusIdAndProjectIdManyToManyEdge", + "description": "A `Project` edge in the connection, with data from `Attachment`.", "fields": [ { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `ProjectType` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectsByProjectType", - "description": "Reads and enables pagination through a set of `Project`.", + "name": "attachmentsByProjectId", + "description": "Reads and enables pagination through a set of `Attachment`.", "args": [ { "name": "after", @@ -217944,7 +213085,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCondition", + "name": "AttachmentCondition", "ofType": null }, "defaultValue": null @@ -217954,7 +213095,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectFilter", + "name": "AttachmentFilter", "ofType": null }, "defaultValue": null @@ -218001,7 +213142,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Project`.", + "description": "The method to use when ordering `Attachment`.", "type": { "kind": "LIST", "name": null, @@ -218010,7 +213151,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectsOrderBy", + "name": "AttachmentsOrderBy", "ofType": null } } @@ -218023,12 +213164,36 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectsConnection", + "name": "AttachmentsConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": "The `Project` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -218273,6 +213438,47 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectStatusToManyAttachmentFilter", + "description": "A filter to be used against many `Attachment` object types. All fields are combined with a logical ‘and.’", + "fields": null, + "inputFields": [ + { + "name": "every", + "description": "Every related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’", + "type": { + "kind": "INPUT_OBJECT", + "name": "AttachmentFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "none", + "description": "No related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’", + "type": { + "kind": "INPUT_OBJECT", + "name": "AttachmentFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "some", + "description": "Some related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’", + "type": { + "kind": "INPUT_OBJECT", + "name": "AttachmentFilter", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, { "kind": "INPUT_OBJECT", "name": "ProjectStatusToManyFundingStreamProjectStatusFilter", @@ -218509,6 +213715,18 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "ATTACHMENTS_BY_PROJECT_STATUS_ID__COUNT_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ATTACHMENTS_BY_PROJECT_STATUS_ID__COUNT_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "CIF_USER_BY_ARCHIVED_BY__ALLOW_SUB_UPDATE_ASC", "description": null, @@ -219149,36 +214367,36 @@ }, { "kind": "INPUT_OBJECT", - "name": "ProjectToManyFundingParameterFilter", - "description": "A filter to be used against many `FundingParameter` object types. All fields are combined with a logical ‘and.’", + "name": "ProjectToManyAttachmentFilter", + "description": "A filter to be used against many `Attachment` object types. All fields are combined with a logical ‘and.’", "fields": null, "inputFields": [ { "name": "every", - "description": "Every related `FundingParameter` matches the filter criteria. All fields are combined with a logical ‘and.’", + "description": "Every related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’", "type": { "kind": "INPUT_OBJECT", - "name": "FundingParameterFilter", + "name": "AttachmentFilter", "ofType": null }, "defaultValue": null }, { "name": "none", - "description": "No related `FundingParameter` matches the filter criteria. All fields are combined with a logical ‘and.’", + "description": "No related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’", "type": { "kind": "INPUT_OBJECT", - "name": "FundingParameterFilter", + "name": "AttachmentFilter", "ofType": null }, "defaultValue": null }, { "name": "some", - "description": "Some related `FundingParameter` matches the filter criteria. All fields are combined with a logical ‘and.’", + "description": "Some related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’", "type": { "kind": "INPUT_OBJECT", - "name": "FundingParameterFilter", + "name": "AttachmentFilter", "ofType": null }, "defaultValue": null @@ -219190,36 +214408,36 @@ }, { "kind": "INPUT_OBJECT", - "name": "ProjectToManyProjectAttachmentFilter", - "description": "A filter to be used against many `ProjectAttachment` object types. All fields are combined with a logical ‘and.’", + "name": "ProjectToManyFundingParameterFilter", + "description": "A filter to be used against many `FundingParameter` object types. All fields are combined with a logical ‘and.’", "fields": null, "inputFields": [ { "name": "every", - "description": "Every related `ProjectAttachment` matches the filter criteria. All fields are combined with a logical ‘and.’", + "description": "Every related `FundingParameter` matches the filter criteria. All fields are combined with a logical ‘and.’", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentFilter", + "name": "FundingParameterFilter", "ofType": null }, "defaultValue": null }, { "name": "none", - "description": "No related `ProjectAttachment` matches the filter criteria. All fields are combined with a logical ‘and.’", + "description": "No related `FundingParameter` matches the filter criteria. All fields are combined with a logical ‘and.’", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentFilter", + "name": "FundingParameterFilter", "ofType": null }, "defaultValue": null }, { "name": "some", - "description": "Some related `ProjectAttachment` matches the filter criteria. All fields are combined with a logical ‘and.’", + "description": "Some related `FundingParameter` matches the filter criteria. All fields are combined with a logical ‘and.’", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentFilter", + "name": "FundingParameterFilter", "ofType": null }, "defaultValue": null @@ -223573,6 +218791,18 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "ATTACHMENTS_BY_PROJECT_ID__COUNT_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ATTACHMENTS_BY_PROJECT_ID__COUNT_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "CIF_USER_BY_ARCHIVED_BY__ALLOW_SUB_UPDATE_ASC", "description": null, @@ -224443,18 +219673,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "PROJECT_ATTACHMENTS_BY_PROJECT_ID__COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_ATTACHMENTS_BY_PROJECT_ID__COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "PROJECT_CONTACTS_BY_PROJECT_ID__COUNT_ASC", "description": null, @@ -225779,118 +220997,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Contact`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ContactsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "OBJECT", - "name": "ContactsConnection", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "allEmissionIntensityPaymentPercents", - "description": "Reads and enables pagination through a set of `EmissionIntensityPaymentPercent`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "EmissionIntensityPaymentPercentCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "EmissionIntensityPaymentPercentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `EmissionIntensityPaymentPercent`.", + "description": "The method to use when ordering `Contact`.", "type": { "kind": "LIST", "name": null, @@ -225899,7 +221006,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "EmissionIntensityPaymentPercentsOrderBy", + "name": "ContactsOrderBy", "ofType": null } } @@ -225909,15 +221016,15 @@ ], "type": { "kind": "OBJECT", - "name": "EmissionIntensityPaymentPercentsConnection", + "name": "ContactsConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "allEmissionIntensityReports", - "description": "Reads and enables pagination through a set of `EmissionIntensityReport`.", + "name": "allEmissionIntensityPaymentPercents", + "description": "Reads and enables pagination through a set of `EmissionIntensityPaymentPercent`.", "args": [ { "name": "after", @@ -225944,7 +221051,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityReportCondition", + "name": "EmissionIntensityPaymentPercentCondition", "ofType": null }, "defaultValue": null @@ -225954,7 +221061,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityReportFilter", + "name": "EmissionIntensityPaymentPercentFilter", "ofType": null }, "defaultValue": null @@ -226001,7 +221108,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `EmissionIntensityReport`.", + "description": "The method to use when ordering `EmissionIntensityPaymentPercent`.", "type": { "kind": "LIST", "name": null, @@ -226010,7 +221117,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "EmissionIntensityReportsOrderBy", + "name": "EmissionIntensityPaymentPercentsOrderBy", "ofType": null } } @@ -226020,15 +221127,15 @@ ], "type": { "kind": "OBJECT", - "name": "EmissionIntensityReportsConnection", + "name": "EmissionIntensityPaymentPercentsConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "allFormChanges", - "description": "Reads and enables pagination through a set of `FormChange`.", + "name": "allEmissionIntensityReports", + "description": "Reads and enables pagination through a set of `EmissionIntensityReport`.", "args": [ { "name": "after", @@ -226055,7 +221162,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormChangeCondition", + "name": "EmissionIntensityReportCondition", "ofType": null }, "defaultValue": null @@ -226065,7 +221172,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormChangeFilter", + "name": "EmissionIntensityReportFilter", "ofType": null }, "defaultValue": null @@ -226080,6 +221187,16 @@ }, "defaultValue": null }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -226102,7 +221219,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FormChange`.", + "description": "The method to use when ordering `EmissionIntensityReport`.", "type": { "kind": "LIST", "name": null, @@ -226111,7 +221228,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FormChangesOrderBy", + "name": "EmissionIntensityReportsOrderBy", "ofType": null } } @@ -226121,15 +221238,15 @@ ], "type": { "kind": "OBJECT", - "name": "FormChangesConnection", + "name": "EmissionIntensityReportsConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "allForms", - "description": "Reads and enables pagination through a set of `Form`.", + "name": "allFormChanges", + "description": "Reads and enables pagination through a set of `FormChange`.", "args": [ { "name": "after", @@ -226156,7 +221273,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormCondition", + "name": "FormChangeCondition", "ofType": null }, "defaultValue": null @@ -226166,7 +221283,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormFilter", + "name": "FormChangeFilter", "ofType": null }, "defaultValue": null @@ -226181,16 +221298,6 @@ }, "defaultValue": null }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -226213,7 +221320,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Form`.", + "description": "The method to use when ordering `FormChange`.", "type": { "kind": "LIST", "name": null, @@ -226222,7 +221329,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FormsOrderBy", + "name": "FormChangesOrderBy", "ofType": null } } @@ -226232,15 +221339,15 @@ ], "type": { "kind": "OBJECT", - "name": "FormsConnection", + "name": "FormChangesConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "allFundingParameters", - "description": "Reads and enables pagination through a set of `FundingParameter`.", + "name": "allForms", + "description": "Reads and enables pagination through a set of `Form`.", "args": [ { "name": "after", @@ -226267,7 +221374,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingParameterCondition", + "name": "FormCondition", "ofType": null }, "defaultValue": null @@ -226277,7 +221384,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingParameterFilter", + "name": "FormFilter", "ofType": null }, "defaultValue": null @@ -226324,7 +221431,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingParameter`.", + "description": "The method to use when ordering `Form`.", "type": { "kind": "LIST", "name": null, @@ -226333,7 +221440,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingParametersOrderBy", + "name": "FormsOrderBy", "ofType": null } } @@ -226343,15 +221450,15 @@ ], "type": { "kind": "OBJECT", - "name": "FundingParametersConnection", + "name": "FormsConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "allFundingStreamProjectStatuses", - "description": "Reads and enables pagination through a set of `FundingStreamProjectStatus`.", + "name": "allFundingParameters", + "description": "Reads and enables pagination through a set of `FundingParameter`.", "args": [ { "name": "after", @@ -226378,7 +221485,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamProjectStatusCondition", + "name": "FundingParameterCondition", "ofType": null }, "defaultValue": null @@ -226388,7 +221495,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamProjectStatusFilter", + "name": "FundingParameterFilter", "ofType": null }, "defaultValue": null @@ -226435,7 +221542,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStreamProjectStatus`.", + "description": "The method to use when ordering `FundingParameter`.", "type": { "kind": "LIST", "name": null, @@ -226444,7 +221551,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamProjectStatusesOrderBy", + "name": "FundingParametersOrderBy", "ofType": null } } @@ -226454,15 +221561,15 @@ ], "type": { "kind": "OBJECT", - "name": "FundingStreamProjectStatusesConnection", + "name": "FundingParametersConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "allFundingStreamRfps", - "description": "Reads and enables pagination through a set of `FundingStreamRfp`.", + "name": "allFundingStreamProjectStatuses", + "description": "Reads and enables pagination through a set of `FundingStreamProjectStatus`.", "args": [ { "name": "after", @@ -226489,7 +221596,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamRfpCondition", + "name": "FundingStreamProjectStatusCondition", "ofType": null }, "defaultValue": null @@ -226499,7 +221606,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamRfpFilter", + "name": "FundingStreamProjectStatusFilter", "ofType": null }, "defaultValue": null @@ -226546,7 +221653,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStreamRfp`.", + "description": "The method to use when ordering `FundingStreamProjectStatus`.", "type": { "kind": "LIST", "name": null, @@ -226555,7 +221662,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamRfpsOrderBy", + "name": "FundingStreamProjectStatusesOrderBy", "ofType": null } } @@ -226565,15 +221672,15 @@ ], "type": { "kind": "OBJECT", - "name": "FundingStreamRfpsConnection", + "name": "FundingStreamProjectStatusesConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "allFundingStreams", - "description": "Reads and enables pagination through a set of `FundingStream`.", + "name": "allFundingStreamRfps", + "description": "Reads and enables pagination through a set of `FundingStreamRfp`.", "args": [ { "name": "after", @@ -226600,7 +221707,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamCondition", + "name": "FundingStreamRfpCondition", "ofType": null }, "defaultValue": null @@ -226610,7 +221717,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamFilter", + "name": "FundingStreamRfpFilter", "ofType": null }, "defaultValue": null @@ -226657,7 +221764,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStream`.", + "description": "The method to use when ordering `FundingStreamRfp`.", "type": { "kind": "LIST", "name": null, @@ -226666,7 +221773,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamsOrderBy", + "name": "FundingStreamRfpsOrderBy", "ofType": null } } @@ -226676,15 +221783,15 @@ ], "type": { "kind": "OBJECT", - "name": "FundingStreamsConnection", + "name": "FundingStreamRfpsConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "allMilestoneReports", - "description": "Reads and enables pagination through a set of `MilestoneReport`.", + "name": "allFundingStreams", + "description": "Reads and enables pagination through a set of `FundingStream`.", "args": [ { "name": "after", @@ -226711,7 +221818,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "MilestoneReportCondition", + "name": "FundingStreamCondition", "ofType": null }, "defaultValue": null @@ -226721,7 +221828,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "MilestoneReportFilter", + "name": "FundingStreamFilter", "ofType": null }, "defaultValue": null @@ -226768,7 +221875,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `MilestoneReport`.", + "description": "The method to use when ordering `FundingStream`.", "type": { "kind": "LIST", "name": null, @@ -226777,7 +221884,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "MilestoneReportsOrderBy", + "name": "FundingStreamsOrderBy", "ofType": null } } @@ -226787,15 +221894,15 @@ ], "type": { "kind": "OBJECT", - "name": "MilestoneReportsConnection", + "name": "FundingStreamsConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "allOperators", - "description": "Reads and enables pagination through a set of `Operator`.", + "name": "allMilestoneReports", + "description": "Reads and enables pagination through a set of `MilestoneReport`.", "args": [ { "name": "after", @@ -226822,7 +221929,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "OperatorCondition", + "name": "MilestoneReportCondition", "ofType": null }, "defaultValue": null @@ -226832,7 +221939,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "OperatorFilter", + "name": "MilestoneReportFilter", "ofType": null }, "defaultValue": null @@ -226879,7 +221986,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Operator`.", + "description": "The method to use when ordering `MilestoneReport`.", "type": { "kind": "LIST", "name": null, @@ -226888,7 +221995,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "OperatorsOrderBy", + "name": "MilestoneReportsOrderBy", "ofType": null } } @@ -226898,15 +222005,15 @@ ], "type": { "kind": "OBJECT", - "name": "OperatorsConnection", + "name": "MilestoneReportsConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "allPayments", - "description": "Reads and enables pagination through a set of `Payment`.", + "name": "allOperators", + "description": "Reads and enables pagination through a set of `Operator`.", "args": [ { "name": "after", @@ -226933,7 +222040,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "PaymentCondition", + "name": "OperatorCondition", "ofType": null }, "defaultValue": null @@ -226943,7 +222050,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "PaymentFilter", + "name": "OperatorFilter", "ofType": null }, "defaultValue": null @@ -226990,7 +222097,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Payment`.", + "description": "The method to use when ordering `Operator`.", "type": { "kind": "LIST", "name": null, @@ -226999,7 +222106,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "PaymentsOrderBy", + "name": "OperatorsOrderBy", "ofType": null } } @@ -227009,15 +222116,15 @@ ], "type": { "kind": "OBJECT", - "name": "PaymentsConnection", + "name": "OperatorsConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "allProjectAttachments", - "description": "Reads and enables pagination through a set of `ProjectAttachment`.", + "name": "allPayments", + "description": "Reads and enables pagination through a set of `Payment`.", "args": [ { "name": "after", @@ -227044,7 +222151,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentCondition", + "name": "PaymentCondition", "ofType": null }, "defaultValue": null @@ -227054,7 +222161,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentFilter", + "name": "PaymentFilter", "ofType": null }, "defaultValue": null @@ -227101,7 +222208,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectAttachment`.", + "description": "The method to use when ordering `Payment`.", "type": { "kind": "LIST", "name": null, @@ -227110,7 +222217,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectAttachmentsOrderBy", + "name": "PaymentsOrderBy", "ofType": null } } @@ -227120,7 +222227,7 @@ ], "type": { "kind": "OBJECT", - "name": "ProjectAttachmentsConnection", + "name": "PaymentsConnection", "ofType": null }, "isDeprecated": false, @@ -229778,60 +224885,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "projectAttachment", - "description": "Reads a single `ProjectAttachment` using its globally unique `ID`.", - "args": [ - { - "name": "id", - "description": "The globally unique `ID` to be used in selecting a single `ProjectAttachment`.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ProjectAttachment", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectAttachmentByRowId", - "description": null, - "args": [ - { - "name": "rowId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ProjectAttachment", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "projectByProposalReference", "description": null, @@ -230628,16 +225681,6 @@ "enumValues": null, "possibleTypes": null }, - { - "kind": "SCALAR", - "name": "RegProcedure", - "description": "A builtin object identifier type for a function with argument types", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, { "kind": "OBJECT", "name": "ReportType", @@ -240099,22 +235142,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "sortingOrder", - "description": "Integer value to indicate the order in which the revision status should be displayed", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "updatedAt", "description": "updated at timestamp", @@ -240902,16 +235929,6 @@ }, "defaultValue": null }, - { - "name": "sortingOrder", - "description": "Checks for equality with the object’s `sortingOrder` field.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, { "name": "updatedAt", "description": "Checks for equality with the object’s `updatedAt` field.", @@ -241129,16 +236146,6 @@ }, "defaultValue": null }, - { - "name": "sortingOrder", - "description": "Filter by the object’s `sortingOrder` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IntFilter", - "ofType": null - }, - "defaultValue": null - }, { "name": "updatedAt", "description": "Filter by the object’s `updatedAt` field.", @@ -241238,16 +236245,6 @@ }, "defaultValue": null }, - { - "name": "sortingOrder", - "description": "Integer value to indicate the order in which the revision status should be displayed", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, { "name": "updatedAt", "description": "updated at timestamp", @@ -241339,16 +236336,6 @@ }, "defaultValue": null }, - { - "name": "sortingOrder", - "description": "Integer value to indicate the order in which the revision status should be displayed", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, { "name": "updatedAt", "description": "updated at timestamp", @@ -242569,18 +237556,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "SORTING_ORDER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SORTING_ORDER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "UPDATED_AT_ASC", "description": null, @@ -252119,6 +247094,30 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "projectByProjectId", + "description": "Reads a single `Project` that is related to this `Attachment`.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectStatusByProjectStatusId", + "description": "Reads a single `ProjectStatus` that is related to this `Attachment`.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectStatus", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "query", "description": "Our root query field type. Allows us to run any query from our mutation payload.", @@ -254960,242 +249959,6 @@ "enumValues": null, "possibleTypes": null }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateProjectAttachmentByRowIdInput", - "description": "All input for the `updateProjectAttachmentByRowId` mutation.", - "fields": null, - "inputFields": [ - { - "name": "clientMutationId", - "description": "An arbitrary string value with no semantic meaning. Will be included in the\npayload verbatim. May be used to track mutations by the client.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "projectAttachmentPatch", - "description": "An object where the defined keys will be set on the `ProjectAttachment` being updated.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentPatch", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "rowId", - "description": "Unique ID for the project attachment record", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateProjectAttachmentInput", - "description": "All input for the `updateProjectAttachment` mutation.", - "fields": null, - "inputFields": [ - { - "name": "clientMutationId", - "description": "An arbitrary string value with no semantic meaning. Will be included in the\npayload verbatim. May be used to track mutations by the client.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": "The globally unique `ID` which will identify a single `ProjectAttachment` to be updated.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "projectAttachmentPatch", - "description": "An object where the defined keys will be set on the `ProjectAttachment` being updated.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectAttachmentPatch", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UpdateProjectAttachmentPayload", - "description": "The output of our update `ProjectAttachment` mutation.", - "fields": [ - { - "name": "attachmentByAttachmentId", - "description": "Reads a single `Attachment` that is related to this `ProjectAttachment`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Attachment", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cifUserByArchivedBy", - "description": "Reads a single `CifUser` that is related to this `ProjectAttachment`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "CifUser", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cifUserByCreatedBy", - "description": "Reads a single `CifUser` that is related to this `ProjectAttachment`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "CifUser", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cifUserByUpdatedBy", - "description": "Reads a single `CifUser` that is related to this `ProjectAttachment`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "CifUser", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "clientMutationId", - "description": "The exact same `clientMutationId` that was provided in the mutation input,\nunchanged and unused. May be used by a client to track mutations.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectAttachment", - "description": "The `ProjectAttachment` that was updated by this mutation.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectAttachment", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectAttachmentEdge", - "description": "An edge for our `ProjectAttachment`. May be used by Relay 1.", - "args": [ - { - "name": "orderBy", - "description": "The method to use when ordering `ProjectAttachment`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProjectAttachmentsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "OBJECT", - "name": "ProjectAttachmentsEdge", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectByProjectId", - "description": "Reads a single `Project` that is related to this `ProjectAttachment`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Project", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "query", - "description": "Our root query field type. Allows us to run any query from our mutation payload.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Query", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, { "kind": "INPUT_OBJECT", "name": "UpdateProjectContactByRowIdInput", From 87df11b85eed31fda9b4ee42ae81ce38fe743fa6 Mon Sep 17 00:00:00 2001 From: Pierre Bastianelli Date: Fri, 13 Dec 2024 12:05:19 -0800 Subject: [PATCH 4/5] chore: cves --- app/yarn.lock | 1129 ++++++++++++++++++++++++++----------------------- 1 file changed, 594 insertions(+), 535 deletions(-) diff --git a/app/yarn.lock b/app/yarn.lock index dda4a83f98..cced10f2e8 100644 --- a/app/yarn.lock +++ b/app/yarn.lock @@ -2,11 +2,6 @@ # yarn lockfile v1 -"@aashutoshrathi/word-wrap@^1.2.3": - version "1.2.6" - resolved "https://registry.yarnpkg.com/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz#bd9154aec9983f77b3a034ecaa015c2e4201f6cf" - integrity sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA== - "@ampproject/remapping@^2.1.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.0.tgz#56c133824780de3174aed5ab6834f3026790154d" @@ -906,46 +901,65 @@ resolved "https://registry.yarnpkg.com/@emotion/weak-memoize/-/weak-memoize-0.2.5.tgz#8eed982e2ee6f7f4e44c253e12962980791efd46" integrity sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA== -"@eslint/eslintrc@^1.3.3": - version "1.3.3" - resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.3.3.tgz#2b044ab39fdfa75b4688184f9e573ce3c5b0ff95" - integrity sha512-uj3pT6Mg+3t39fvLrj8iuCIJ38zKO9FpGtJ4BBJebJhEwjoT+KLVNCcHT5QC9NGRIEi7fZ0ZR8YRb884auB4Lg== +"@eslint-community/eslint-utils@^4.2.0": + version "4.4.1" + resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz#d1145bf2c20132d6400495d6df4bf59362fd9d56" + integrity sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA== + dependencies: + eslint-visitor-keys "^3.4.3" + +"@eslint-community/regexpp@^4.6.1": + version "4.12.1" + resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.12.1.tgz#cfc6cffe39df390a3841cde2abccf92eaa7ae0e0" + integrity sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ== + +"@eslint/eslintrc@^2.1.4": + version "2.1.4" + resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.4.tgz#388a269f0f25c1b6adc317b5a2c55714894c70ad" + integrity sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ== dependencies: ajv "^6.12.4" debug "^4.3.2" - espree "^9.4.0" - globals "^13.15.0" + espree "^9.6.0" + globals "^13.19.0" ignore "^5.2.0" import-fresh "^3.2.1" js-yaml "^4.1.0" minimatch "^3.1.2" strip-json-comments "^3.1.1" -"@fastify/ajv-compiler@^3.3.1": - version "3.4.0" - resolved "https://registry.yarnpkg.com/@fastify/ajv-compiler/-/ajv-compiler-3.4.0.tgz#e001b7e234b5b704654b1d617d69fa63c348f2a7" - integrity sha512-69JnK7Cot+ktn7LD5TikP3b7psBPX55tYpQa8WSumt8r117PCa2zwHnImfBtRWYExreJlI48hr0WZaVrTBGj7w== +"@eslint/js@8.57.1": + version "8.57.1" + resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.57.1.tgz#de633db3ec2ef6a3c89e2f19038063e8a122e2c2" + integrity sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q== + +"@fastify/ajv-compiler@^3.5.0": + version "3.6.0" + resolved "https://registry.yarnpkg.com/@fastify/ajv-compiler/-/ajv-compiler-3.6.0.tgz#907497a0e62a42b106ce16e279cf5788848e8e79" + integrity sha512-LwdXQJjmMD+GwLOkP7TVC68qa+pSSogeWWmznRJ/coyTcfe9qA05AHFSe1eZFwK6q+xVRpChnvFUkf1iYaSZsQ== dependencies: ajv "^8.11.0" ajv-formats "^2.1.1" fast-uri "^2.0.0" -"@fastify/deepmerge@^1.0.0": - version "1.3.0" - resolved "https://registry.yarnpkg.com/@fastify/deepmerge/-/deepmerge-1.3.0.tgz#8116858108f0c7d9fd460d05a7d637a13fe3239a" - integrity sha512-J8TOSBq3SoZbDhM9+R/u77hP93gz/rajSA+K2kGyijPpORPWUXHUpTaleoj+92As0S9uPRP7Oi8IqMf0u+ro6A== +"@fastify/error@^3.3.0", "@fastify/error@^3.4.0": + version "3.4.1" + resolved "https://registry.yarnpkg.com/@fastify/error/-/error-3.4.1.tgz#b14bb4cac3dd4ec614becbc643d1511331a6425c" + integrity sha512-wWSvph+29GR783IhmvdwWnN4bUxTD01Vm5Xad4i7i1VuAOItLvbPAb69sb0IQ2N57yprvhNIwAP5B6xfKTmjmQ== -"@fastify/error@^3.0.0": - version "3.2.0" - resolved "https://registry.yarnpkg.com/@fastify/error/-/error-3.2.0.tgz#9010e0acfe07965f5fc7d2b367f58f042d0f4106" - integrity sha512-KAfcLa+CnknwVi5fWogrLXgidLic+GXnLjijXdpl8pvkvbXU5BGa37iZO9FGvsh9ZL4y+oFi5cbHBm5UOG+dmQ== +"@fastify/fast-json-stringify-compiler@^4.3.0": + version "4.3.0" + resolved "https://registry.yarnpkg.com/@fastify/fast-json-stringify-compiler/-/fast-json-stringify-compiler-4.3.0.tgz#5df89fa4d1592cbb8780f78998355feb471646d5" + integrity sha512-aZAXGYo6m22Fk1zZzEUKBvut/CIIQe/BapEORnxiD5Qr0kPHqqI69NtEMCme74h+at72sPhbkb4ZrLd1W3KRLA== + dependencies: + fast-json-stringify "^5.7.0" -"@fastify/fast-json-stringify-compiler@^4.1.0": - version "4.1.0" - resolved "https://registry.yarnpkg.com/@fastify/fast-json-stringify-compiler/-/fast-json-stringify-compiler-4.1.0.tgz#ebf657ce4ec88e27ba311f7560eaa0b37de8719d" - integrity sha512-cTKBV2J9+u6VaKDhX7HepSfPSzw+F+TSd+k0wzifj4rG+4E5PjSFJCk19P8R6tr/72cuzgGd+mbB3jFT6lvAgw== +"@fastify/merge-json-schemas@^0.1.0": + version "0.1.1" + resolved "https://registry.yarnpkg.com/@fastify/merge-json-schemas/-/merge-json-schemas-0.1.1.tgz#3551857b8a17a24e8c799e9f51795edb07baa0bc" + integrity sha512-fERDVz7topgNjtXsJTTW1JKLy0rhuLRcquYqNR9rF7OcVpCa2OVW49ZPDIhaRRCaUuvVxI+N416xUoF76HNSXA== dependencies: - fast-json-stringify "^5.0.0" + fast-deep-equal "^3.1.3" "@fortawesome/fontawesome-common-types@^0.2.36": version "0.2.36" @@ -1111,24 +1125,24 @@ dependencies: "@hapi/hoek" "^9.0.0" -"@humanwhocodes/config-array@^0.11.6": - version "0.11.6" - resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.6.tgz#6a51d603a3aaf8d4cf45b42b3f2ac9318a4adc4b" - integrity sha512-jJr+hPTJYKyDILJfhNSHsjiwXYf26Flsz8DvNndOsHs5pwSnpGUEy8yzF0JYhCEvTDdV2vuOK5tt8BVhwO5/hg== +"@humanwhocodes/config-array@^0.13.0": + version "0.13.0" + resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.13.0.tgz#fb907624df3256d04b9aa2df50d7aa97ec648748" + integrity sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw== dependencies: - "@humanwhocodes/object-schema" "^1.2.1" - debug "^4.1.1" - minimatch "^3.0.4" + "@humanwhocodes/object-schema" "^2.0.3" + debug "^4.3.1" + minimatch "^3.0.5" "@humanwhocodes/module-importer@^1.0.1": version "1.0.1" resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c" integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== -"@humanwhocodes/object-schema@^1.2.1": - version "1.2.1" - resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" - integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== +"@humanwhocodes/object-schema@^2.0.3": + version "2.0.3" + resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz#4a2868d75d6d6963e423bcf90b7fd1be343409d3" + integrity sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA== "@istanbuljs/load-nyc-config@^1.0.0": version "1.1.0" @@ -1519,10 +1533,10 @@ prop-types "^15.8.1" react-is "^17.0.2" -"@next/env@14.2.3": - version "14.2.3" - resolved "https://registry.yarnpkg.com/@next/env/-/env-14.2.3.tgz#d6def29d1c763c0afb397343a15a82e7d92353a0" - integrity sha512-W7fd7IbkfmeeY2gXrzJYDx8D2lWKbVoTIj1o1ScPHNzvp30s1AuoEFSdr39bC5sjxJaxTtq3OTCZboNp0lNWHA== +"@next/env@14.2.20": + version "14.2.20" + resolved "https://registry.yarnpkg.com/@next/env/-/env-14.2.20.tgz#0be2cc955f4eb837516e7d7382284cd5bc1d5a02" + integrity sha512-JfDpuOCB0UBKlEgEy/H6qcBSzHimn/YWjUHzKl1jMeUO+QVRdzmTTl8gFJaNO87c8DXmVKhFCtwxQ9acqB3+Pw== "@next/eslint-plugin-next@13.2.4": version "13.2.4" @@ -1531,50 +1545,50 @@ dependencies: glob "7.1.7" -"@next/swc-darwin-arm64@14.2.3": - version "14.2.3" - resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-14.2.3.tgz#db1a05eb88c0224089b815ad10ac128ec79c2cdb" - integrity sha512-3pEYo/RaGqPP0YzwnlmPN2puaF2WMLM3apt5jLW2fFdXD9+pqcoTzRk+iZsf8ta7+quAe4Q6Ms0nR0SFGFdS1A== - -"@next/swc-darwin-x64@14.2.3": - version "14.2.3" - resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-14.2.3.tgz#a3f8af05b5f9a52ac3082e66ac29e125ab1d7b9c" - integrity sha512-6adp7waE6P1TYFSXpY366xwsOnEXM+y1kgRpjSRVI2CBDOcbRjsJ67Z6EgKIqWIue52d2q/Mx8g9MszARj8IEA== - -"@next/swc-linux-arm64-gnu@14.2.3": - version "14.2.3" - resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-14.2.3.tgz#4e63f43879285b52554bfd39e6e0cc78a9b27bbf" - integrity sha512-cuzCE/1G0ZSnTAHJPUT1rPgQx1w5tzSX7POXSLaS7w2nIUJUD+e25QoXD/hMfxbsT9rslEXugWypJMILBj/QsA== - -"@next/swc-linux-arm64-musl@14.2.3": - version "14.2.3" - resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-14.2.3.tgz#ebdaed26214448b1e6f2c3e8b3cd29bfba387990" - integrity sha512-0D4/oMM2Y9Ta3nGuCcQN8jjJjmDPYpHX9OJzqk42NZGJocU2MqhBq5tWkJrUQOQY9N+In9xOdymzapM09GeiZw== - -"@next/swc-linux-x64-gnu@14.2.3": - version "14.2.3" - resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-14.2.3.tgz#19e3bcc137c3b582a1ab867106817e5c90a20593" - integrity sha512-ENPiNnBNDInBLyUU5ii8PMQh+4XLr4pG51tOp6aJ9xqFQ2iRI6IH0Ds2yJkAzNV1CfyagcyzPfROMViS2wOZ9w== - -"@next/swc-linux-x64-musl@14.2.3": - version "14.2.3" - resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-14.2.3.tgz#794a539b98e064169cf0ff7741b2a4fb16adec7d" - integrity sha512-BTAbq0LnCbF5MtoM7I/9UeUu/8ZBY0i8SFjUMCbPDOLv+un67e2JgyN4pmgfXBwy/I+RHu8q+k+MCkDN6P9ViQ== - -"@next/swc-win32-arm64-msvc@14.2.3": - version "14.2.3" - resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-14.2.3.tgz#eda9fa0fbf1ff9113e87ac2668ee67ce9e5add5a" - integrity sha512-AEHIw/dhAMLNFJFJIJIyOFDzrzI5bAjI9J26gbO5xhAKHYTZ9Or04BesFPXiAYXDNdrwTP2dQceYA4dL1geu8A== - -"@next/swc-win32-ia32-msvc@14.2.3": - version "14.2.3" - resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-14.2.3.tgz#7c1190e3f640ab16580c6bdbd7d0e766b9920457" - integrity sha512-vga40n1q6aYb0CLrM+eEmisfKCR45ixQYXuBXxOOmmoV8sYST9k7E3US32FsY+CkkF7NtzdcebiFT4CHuMSyZw== - -"@next/swc-win32-x64-msvc@14.2.3": - version "14.2.3" - resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-14.2.3.tgz#2be4e39ee25bfbd85be78eea17c0e7751dc4323c" - integrity sha512-Q1/zm43RWynxrO7lW4ehciQVj+5ePBhOK+/K2P7pLFX3JaJ/IZVC69SHidrmZSOkqz7ECIOhhy7XhAFG4JYyHA== +"@next/swc-darwin-arm64@14.2.20": + version "14.2.20" + resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-14.2.20.tgz#3c99d318c08362aedde5d2778eec3a50b8085d99" + integrity sha512-WDfq7bmROa5cIlk6ZNonNdVhKmbCv38XteVFYsxea1vDJt3SnYGgxLGMTXQNfs5OkFvAhmfKKrwe7Y0Hs+rWOg== + +"@next/swc-darwin-x64@14.2.20": + version "14.2.20" + resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-14.2.20.tgz#fd547fad1446a677f29c1160006fdd482bba4052" + integrity sha512-XIQlC+NAmJPfa2hruLvr1H1QJJeqOTDV+v7tl/jIdoFvqhoihvSNykLU/G6NMgoeo+e/H7p/VeWSOvMUHKtTIg== + +"@next/swc-linux-arm64-gnu@14.2.20": + version "14.2.20" + resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-14.2.20.tgz#1d6ba1929d3a11b74c0185cdeca1e38b824222ca" + integrity sha512-pnzBrHTPXIMm5QX3QC8XeMkpVuoAYOmyfsO4VlPn+0NrHraNuWjdhe+3xLq01xR++iCvX+uoeZmJDKcOxI201Q== + +"@next/swc-linux-arm64-musl@14.2.20": + version "14.2.20" + resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-14.2.20.tgz#0fe0c67b5d916f99ca76b39416557af609768f17" + integrity sha512-WhJJAFpi6yqmUx1momewSdcm/iRXFQS0HU2qlUGlGE/+98eu7JWLD5AAaP/tkK1mudS/rH2f9E3WCEF2iYDydQ== + +"@next/swc-linux-x64-gnu@14.2.20": + version "14.2.20" + resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-14.2.20.tgz#6d29fa8cdb6a9f8250c2048aaa24538f0cd0b02d" + integrity sha512-ao5HCbw9+iG1Kxm8XsGa3X174Ahn17mSYBQlY6VGsdsYDAbz/ZP13wSLfvlYoIDn1Ger6uYA+yt/3Y9KTIupRg== + +"@next/swc-linux-x64-musl@14.2.20": + version "14.2.20" + resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-14.2.20.tgz#bfc57482bc033fda8455e8aab1c3cbc44f0c4690" + integrity sha512-CXm/kpnltKTT7945np6Td3w7shj/92TMRPyI/VvveFe8+YE+/YOJ5hyAWK5rpx711XO1jBCgXl211TWaxOtkaA== + +"@next/swc-win32-arm64-msvc@14.2.20": + version "14.2.20" + resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-14.2.20.tgz#6f7783e643310510240a981776532ffe0e02af95" + integrity sha512-upJn2HGQgKNDbXVfIgmqT2BN8f3z/mX8ddoyi1I565FHbfowVK5pnMEwauvLvaJf4iijvuKq3kw/b6E9oIVRWA== + +"@next/swc-win32-ia32-msvc@14.2.20": + version "14.2.20" + resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-14.2.20.tgz#58c7720687e80a13795e22c29d5860fa142e44fc" + integrity sha512-igQW/JWciTGJwj3G1ipalD2V20Xfx3ywQy17IV0ciOUBbFhNfyU1DILWsTi32c8KmqgIDviUEulW/yPb2FF90w== + +"@next/swc-win32-x64-msvc@14.2.20": + version "14.2.20" + resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-14.2.20.tgz#689bc7beb8005b73c95d926e7edfb7f73efc78f2" + integrity sha512-AFmqeLW6LtxeFTuoB+MXFeM5fm5052i3MU6xD0WzJDOwku6SkZaxb1bxjBaRC8uNqTRTSPl0yMFtjNowIVI67w== "@nodelib/fs.scandir@2.1.5": version "2.1.5" @@ -1650,14 +1664,13 @@ tslib "^1.9.3" "@sentry/cli@^1.73.0": - version "1.73.2" - resolved "https://registry.yarnpkg.com/@sentry/cli/-/cli-1.73.2.tgz#968efd44f278a9e0f6755b2749f20b7bbcb289f3" - integrity sha512-+pOL6q3IopNrVNFfrw0XEr4SSBLE2WW0qX3TA2Ph4qXxX+8AcgBgf1fck6u8Hf8x2UJORp+LL7O+FpqaiydNsw== + version "1.77.3" + resolved "https://registry.yarnpkg.com/@sentry/cli/-/cli-1.77.3.tgz#c40b4d09b0878d6565d42a915855add99db4fec3" + integrity sha512-c3eDqcDRmy4TFz2bFU5Y6QatlpoBPPa8cxBooaS4aMQpnIdLYPF1xhyyiW0LQlDUNc3rRjNF7oN5qKoaRoMTQQ== dependencies: https-proxy-agent "^5.0.0" mkdirp "^0.5.5" node-fetch "^2.6.7" - npmlog "^4.1.2" progress "^2.0.3" proxy-from-env "^1.1.0" which "^2.0.2" @@ -1716,7 +1729,7 @@ "@sentry/webpack-plugin" "1.18.8" tslib "^1.9.3" -"@sentry/node@6.19.7", "@sentry/node@^6.16.1": +"@sentry/node@6.19.7": version "6.19.7" resolved "https://registry.yarnpkg.com/@sentry/node/-/node-6.19.7.tgz#32963b36b48daebbd559e6f13b1deb2415448592" integrity sha512-gtmRC4dAXKODMpHXKfrkfvyBL3cI8y64vEi3fDD046uqYcrWdgoQsffuBbxMAizc6Ez1ia+f0Flue6p15Qaltg== @@ -2738,6 +2751,11 @@ "@typescript-eslint/types" "5.7.0" eslint-visitor-keys "^3.0.0" +"@ungap/structured-clone@^1.2.0": + version "1.2.1" + resolved "https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.2.1.tgz#28fa185f67daaf7b7a1a8c1d445132c5d979f8bd" + integrity sha512-fEzPV3hSkSMltkw152tJKNARhOupqbH96MZWyRjNaYZOMIzbrTeQDG+MTc6Mr2pgzFQzFxAfmhGDNP5QK++2ZA== + "@webassemblyjs/ast@1.12.1", "@webassemblyjs/ast@^1.12.1": version "1.12.1" resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.12.1.tgz#bb16a0e8b1914f979f45864c23819cc3e3f0d4bb" @@ -2939,11 +2957,16 @@ acorn@^7.1.1: resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== -acorn@^8.2.4, acorn@^8.4.1, acorn@^8.7.1, acorn@^8.8.0, acorn@^8.8.2: +acorn@^8.2.4, acorn@^8.4.1, acorn@^8.7.1, acorn@^8.8.2: version "8.12.1" resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.12.1.tgz#71616bdccbe25e27a54439e0046e89ca76df2248" integrity sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg== +acorn@^8.9.0: + version "8.14.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.14.0.tgz#063e2c70cac5fb4f6467f0b11152e04c682795b0" + integrity sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA== + agent-base@6: version "6.0.2" resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" @@ -2966,12 +2989,19 @@ ajv-formats@^2.1.1: dependencies: ajv "^8.0.0" +ajv-formats@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/ajv-formats/-/ajv-formats-3.0.1.tgz#3d5dc762bca17679c3c2ea7e90ad6b7532309578" + integrity sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ== + dependencies: + ajv "^8.0.0" + ajv-keywords@^3.5.2: version "3.5.2" resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d" integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ== -ajv@^6.10.0, ajv@^6.11.0, ajv@^6.12.4, ajv@^6.12.5, ajv@^6.7.0: +ajv@^6.12.4, ajv@^6.12.5, ajv@^6.7.0: version "6.12.6" resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== @@ -3013,11 +3043,6 @@ ansi-escapes@^4.2.1, ansi-escapes@^4.3.0: dependencies: type-fest "^0.21.3" -ansi-regex@^2.0.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" - integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= - ansi-regex@^5.0.0, ansi-regex@^5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" @@ -3070,11 +3095,6 @@ apollo-utilities@^1.0.1, apollo-utilities@^1.3.0: ts-invariant "^0.4.0" tslib "^1.10.0" -aproba@^1.0.3: - version "1.2.0" - resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" - integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw== - arch@^2.2.0: version "2.2.0" resolved "https://registry.yarnpkg.com/arch/-/arch-2.2.0.tgz#1bc47818f305764f23ab3306b0bfc086c5a29d11" @@ -3109,19 +3129,6 @@ archiver@^5.0.2, archiver@^5.3.0: tar-stream "^2.2.0" zip-stream "^4.1.0" -archy@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/archy/-/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40" - integrity sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw== - -are-we-there-yet@~1.1.2: - version "1.1.7" - resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.7.tgz#b15474a932adab4ff8a50d9adfa7e4e926f21146" - integrity sha512-nxwy40TuMiUGqMyRHgCSWZ9FM4VAoRP4xUYSTv5ImRog+h9yISPbVH7H8fASCIzYn9wlEv4zvFL7uKDMCFQm3g== - dependencies: - delegates "^1.0.0" - readable-stream "^2.0.6" - arg@^4.1.0: version "4.1.3" resolved "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089" @@ -3267,14 +3274,13 @@ atomic-sleep@^1.0.0: resolved "https://registry.yarnpkg.com/atomic-sleep/-/atomic-sleep-1.0.0.tgz#eb85b77a601fc932cfe432c5acd364a9e2c9075b" integrity sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ== -avvio@^8.2.0: - version "8.2.0" - resolved "https://registry.yarnpkg.com/avvio/-/avvio-8.2.0.tgz#aff28b0266617bf07ffc1c2d5f4220c3663ce1c2" - integrity sha512-bbCQdg7bpEv6kGH41RO/3B2/GMMmJSo2iBK+X8AWN9mujtfUipMDfIjsgHCfpnKqoGEQrrmCDKSa5OQ19+fDmg== +avvio@^8.3.0: + version "8.4.0" + resolved "https://registry.yarnpkg.com/avvio/-/avvio-8.4.0.tgz#7cbd5bca74f0c9effa944ced601f94ffd8afc5ed" + integrity sha512-CDSwaxINFy59iNwhYnkvALBwZiTydGkOecZyPkqBpABYR1KqGEsET0VOOYDwtleZSUIdeY36DC2bSZ24CO1igA== dependencies: - archy "^1.0.0" - debug "^4.0.0" - fastq "^1.6.1" + "@fastify/error" "^3.3.0" + fastq "^1.17.1" aws-sign2@~0.7.0: version "0.7.0" @@ -3517,10 +3523,10 @@ bluebird@^3.7.2: resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== -body-parser@1.20.2: - version "1.20.2" - resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.2.tgz#6feb0e21c4724d06de7ff38da36dad4f57a747fd" - integrity sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA== +body-parser@1.20.3, body-parser@^1.15.2, body-parser@^1.20.0: + version "1.20.3" + resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.3.tgz#1953431221c6fb5cd63c4b36d53fab0928e548c6" + integrity sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g== dependencies: bytes "3.1.2" content-type "~1.0.5" @@ -3530,29 +3536,11 @@ body-parser@1.20.2: http-errors "2.0.0" iconv-lite "0.4.24" on-finished "2.4.1" - qs "6.11.0" + qs "6.13.0" raw-body "2.5.2" type-is "~1.6.18" unpipe "1.0.0" -body-parser@^1.15.2, body-parser@^1.20.0: - version "1.20.1" - resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.1.tgz#b1812a8912c195cd371a3ee5e66faa2338a5c668" - integrity sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw== - dependencies: - bytes "3.1.2" - content-type "~1.0.4" - debug "2.6.9" - depd "2.0.0" - destroy "1.2.0" - http-errors "2.0.0" - iconv-lite "0.4.24" - on-finished "2.4.1" - qs "6.11.0" - raw-body "2.5.1" - type-is "~1.6.18" - unpipe "1.0.0" - boolean@^3.1.4: version "3.1.4" resolved "https://registry.yarnpkg.com/boolean/-/boolean-3.1.4.tgz#f51a2fb5838a99e06f9b6ec1edb674de67026435" @@ -3635,14 +3623,6 @@ buffer@^5.5.0, buffer@^5.7.1: base64-js "^1.3.1" ieee754 "^1.1.13" -buffer@^6.0.3: - version "6.0.3" - resolved "https://registry.yarnpkg.com/buffer/-/buffer-6.0.3.tgz#2ace578459cc8fbe2a70aaa8f52ee63b6a74c6c6" - integrity sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA== - dependencies: - base64-js "^1.3.1" - ieee754 "^1.2.1" - busboy@1.6.0, busboy@^1.6.0: version "1.6.0" resolved "https://registry.yarnpkg.com/busboy/-/busboy-1.6.0.tgz#966ea36a9502e43cdb9146962523b92f531f6893" @@ -3660,6 +3640,14 @@ cachedir@^2.3.0: resolved "https://registry.yarnpkg.com/cachedir/-/cachedir-2.3.0.tgz#0c75892a052198f0b21c7c1804d8331edfcae0e8" integrity sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw== +call-bind-apply-helpers@^1.0.0, call-bind-apply-helpers@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.1.tgz#32e5892e6361b29b0b545ba6f7763378daca2840" + integrity sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g== + dependencies: + es-errors "^1.3.0" + function-bind "^1.1.2" + call-bind@^1.0.0, call-bind@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" @@ -3668,6 +3656,24 @@ call-bind@^1.0.0, call-bind@^1.0.2: function-bind "^1.1.1" get-intrinsic "^1.0.2" +call-bind@^1.0.8: + version "1.0.8" + resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.8.tgz#0736a9660f537e3388826f440d5ec45f744eaa4c" + integrity sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww== + dependencies: + call-bind-apply-helpers "^1.0.0" + es-define-property "^1.0.0" + get-intrinsic "^1.2.4" + set-function-length "^1.2.2" + +call-bound@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/call-bound/-/call-bound-1.0.2.tgz#9dbd4daf9f5f753bec3e4c8fbb8a2ecc4de6c39b" + integrity sha512-0lk0PHFe/uz0vl527fG9CgdE9WdafjDbCXvBbs+LUv000TVt2Jjhqbs4Jwm8gz070w8xXyEAxrPOMullsxXeGg== + dependencies: + call-bind "^1.0.8" + get-intrinsic "^1.2.5" + caller-callsite@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/caller-callsite/-/caller-callsite-2.0.0.tgz#847e0fce0a223750a9a027c54b33731ad3154134" @@ -3865,11 +3871,6 @@ co@^4.6.0: resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ= -code-point-at@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" - integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= - collect-v8-coverage@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz#cc2c8e94fc18bbdffe64d6534570c8a673b27f59" @@ -4011,11 +4012,6 @@ consola@^2.4.1: resolved "https://registry.yarnpkg.com/consola/-/consola-2.15.3.tgz#2e11f98d6a4be71ff72e0bdf07bd23e12cb61550" integrity sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw== -console-control-strings@^1.0.0, console-control-strings@~1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" - integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4= - console-polyfill@^0.1.2: version "0.1.2" resolved "https://registry.yarnpkg.com/console-polyfill/-/console-polyfill-0.1.2.tgz#96cfed51caf78189f699572e6f18271dc37c0e30" @@ -4028,7 +4024,7 @@ content-disposition@0.5.4: dependencies: safe-buffer "5.2.1" -content-type@^1.0.4, content-type@~1.0.4: +content-type@~1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA== @@ -4081,20 +4077,25 @@ cookie-signature@1.0.6: resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" integrity sha1-4wOogrNCzD7oylE6eZmXNNqzriw= -cookie@0.4.1, cookie@^0.4.1: +cookie@0.4.1: version "0.4.1" resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.1.tgz#afd713fe26ebd21ba95ceb61f9a8116e50a537d1" integrity sha512-ZwrFkGJxUR3EIoXtO+yVE69Eb7KlixbaeAWfBQB9vVsNn/o+Yw69gBWSSDK825hQNdN+wF8zELf3dFNl/kxkUA== -cookie@0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.6.0.tgz#2798b04b071b0ecbff0dbb62a505a8efa4e19051" - integrity sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw== +cookie@0.7.1: + version "0.7.1" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.7.1.tgz#2f73c42142d5d5cf71310a74fc4ae61670e5dbc9" + integrity sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w== + +cookie@^0.4.1: + version "0.4.2" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.2.tgz#0e41f24de5ecf317947c82fc789e06a884824432" + integrity sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA== -cookie@^0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.5.0.tgz#d1f5d71adec6558c58f389987c366aa47e994f8b" - integrity sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw== +cookie@^0.7.0: + version "0.7.2" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.7.2.tgz#556369c472a2ba910f2979891b526b3436237ed7" + integrity sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w== core-js-pure@^3.19.0, core-js-pure@^3.6.5: version "3.19.3" @@ -4166,9 +4167,9 @@ cross-fetch@^3.0.4: node-fetch "2.6.7" cross-spawn@^7.0.0, cross-spawn@^7.0.2, cross-spawn@^7.0.3: - version "7.0.3" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" - integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== + version "7.0.6" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.6.tgz#8a58fe78f00dcd70c370451759dfbfaf03e8ee9f" + integrity sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA== dependencies: path-key "^3.1.0" shebang-command "^2.0.0" @@ -4359,7 +4360,14 @@ debug@^3.1.0, debug@^3.2.7: dependencies: ms "^2.1.1" -debug@^4.0.0, debug@^4.3.4: +debug@^4.3.1: + version "4.4.0" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.4.0.tgz#2b3f2aea2ffeb776477460267377dc8710faba8a" + integrity sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA== + dependencies: + ms "^2.1.3" + +debug@^4.3.4: version "4.3.4" resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== @@ -4401,6 +4409,15 @@ deepmerge@^4.2.2: resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955" integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg== +define-data-property@^1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.4.tgz#894dc141bb7d3060ae4366f6a0107e68fbe48c5e" + integrity sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A== + dependencies: + es-define-property "^1.0.0" + es-errors "^1.3.0" + gopd "^1.0.1" + define-lazy-prop@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz#3f7ae421129bcaaac9bc74905c98a0009ec9ee7f" @@ -4431,11 +4448,6 @@ delayed-stream@~1.0.0: resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk= -delegates@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" - integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o= - depd@2.0.0, depd@~2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" @@ -4599,6 +4611,15 @@ dotenv@^10.0.0: resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-10.0.0.tgz#3d4227b8fb95f81096cdd2b66653fb2c7085ba81" integrity sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q== +dunder-proto@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/dunder-proto/-/dunder-proto-1.0.0.tgz#c2fce098b3c8f8899554905f4377b6d85dabaa80" + integrity sha512-9+Sj30DIu+4KvHqMfLUGLFYL2PkURSYMVXJyXe92nFRvlYq5hBjLEhblKB+vkd/WVlUYMWigiY07T91Fkk0+4A== + dependencies: + call-bind-apply-helpers "^1.0.0" + es-errors "^1.3.0" + gopd "^1.2.0" + duplexify@^4.0.0, duplexify@^4.1.1: version "4.1.2" resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-4.1.2.tgz#18b4f8d28289132fa0b9573c898d9f903f81c7b0" @@ -4695,6 +4716,11 @@ encodeurl@~1.0.2: resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" integrity sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k= +encodeurl@~2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-2.0.0.tgz#7b8ea898077d7e409d3ac45474ea38eaf0857a58" + integrity sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg== + end-of-stream@^1.1.0, end-of-stream@^1.4.1: version "1.4.4" resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" @@ -4800,11 +4826,28 @@ es-abstract@^1.19.2, es-abstract@^1.19.5: string.prototype.trimstart "^1.0.5" unbox-primitive "^1.0.2" +es-define-property@^1.0.0, es-define-property@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.1.tgz#983eb2f9a6724e9303f61addf011c72e09e0b0fa" + integrity sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g== + +es-errors@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz#05f75a25dab98e4fb1dcd5e1472c0546d5057c8f" + integrity sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw== + es-module-lexer@^1.2.1: version "1.5.4" resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-1.5.4.tgz#a8efec3a3da991e60efa6b633a7cad6ab8d26b78" integrity sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw== +es-object-atoms@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/es-object-atoms/-/es-object-atoms-1.0.0.tgz#ddb55cd47ac2e240701260bc2a8e31ecb643d941" + integrity sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw== + dependencies: + es-errors "^1.3.0" + es-shim-unscopables@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz#702e632193201e3edf8713635d083d378e510241" @@ -5019,10 +5062,10 @@ eslint-scope@5.1.1, eslint-scope@^5.1.1: esrecurse "^4.3.0" estraverse "^4.1.1" -eslint-scope@^7.1.1: - version "7.1.1" - resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.1.1.tgz#fff34894c2f65e5226d3041ac480b4513a163642" - integrity sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw== +eslint-scope@^7.2.2: + version "7.2.2" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.2.tgz#deb4f92563390f32006894af62a22dba1c46423f" + integrity sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg== dependencies: esrecurse "^4.3.0" estraverse "^5.2.0" @@ -5049,69 +5092,73 @@ eslint-visitor-keys@^3.3.0: resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826" integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA== +eslint-visitor-keys@^3.4.1, eslint-visitor-keys@^3.4.3: + version "3.4.3" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz#0cd72fe8550e3c2eae156a96a4dddcd1c8ac5800" + integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag== + eslint@^8.26.0: - version "8.26.0" - resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.26.0.tgz#2bcc8836e6c424c4ac26a5674a70d44d84f2181d" - integrity sha512-kzJkpaw1Bfwheq4VXUezFriD1GxszX6dUekM7Z3aC2o4hju+tsR/XyTC3RcoSD7jmy9VkPU3+N6YjVU2e96Oyg== - dependencies: - "@eslint/eslintrc" "^1.3.3" - "@humanwhocodes/config-array" "^0.11.6" + version "8.57.1" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.57.1.tgz#7df109654aba7e3bbe5c8eae533c5e461d3c6ca9" + integrity sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA== + dependencies: + "@eslint-community/eslint-utils" "^4.2.0" + "@eslint-community/regexpp" "^4.6.1" + "@eslint/eslintrc" "^2.1.4" + "@eslint/js" "8.57.1" + "@humanwhocodes/config-array" "^0.13.0" "@humanwhocodes/module-importer" "^1.0.1" "@nodelib/fs.walk" "^1.2.8" - ajv "^6.10.0" + "@ungap/structured-clone" "^1.2.0" + ajv "^6.12.4" chalk "^4.0.0" cross-spawn "^7.0.2" debug "^4.3.2" doctrine "^3.0.0" escape-string-regexp "^4.0.0" - eslint-scope "^7.1.1" - eslint-utils "^3.0.0" - eslint-visitor-keys "^3.3.0" - espree "^9.4.0" - esquery "^1.4.0" + eslint-scope "^7.2.2" + eslint-visitor-keys "^3.4.3" + espree "^9.6.1" + esquery "^1.4.2" esutils "^2.0.2" fast-deep-equal "^3.1.3" file-entry-cache "^6.0.1" find-up "^5.0.0" glob-parent "^6.0.2" - globals "^13.15.0" - grapheme-splitter "^1.0.4" + globals "^13.19.0" + graphemer "^1.4.0" ignore "^5.2.0" - import-fresh "^3.0.0" imurmurhash "^0.1.4" is-glob "^4.0.0" is-path-inside "^3.0.3" - js-sdsl "^4.1.4" js-yaml "^4.1.0" json-stable-stringify-without-jsonify "^1.0.1" levn "^0.4.1" lodash.merge "^4.6.2" minimatch "^3.1.2" natural-compare "^1.4.0" - optionator "^0.9.1" - regexpp "^3.2.0" + optionator "^0.9.3" strip-ansi "^6.0.1" - strip-json-comments "^3.1.0" text-table "^0.2.0" -espree@^9.4.0: - version "9.4.0" - resolved "https://registry.yarnpkg.com/espree/-/espree-9.4.0.tgz#cd4bc3d6e9336c433265fc0aa016fc1aaf182f8a" - integrity sha512-DQmnRpLj7f6TgN/NYb0MTzJXL+vJF9h3pHy4JhCIs3zwcgez8xmGg3sXHcEO97BrmO2OSvCwMdfdlyl+E9KjOw== +espree@^9.6.0, espree@^9.6.1: + version "9.6.1" + resolved "https://registry.yarnpkg.com/espree/-/espree-9.6.1.tgz#a2a17b8e434690a5432f2f8018ce71d331a48c6f" + integrity sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ== dependencies: - acorn "^8.8.0" + acorn "^8.9.0" acorn-jsx "^5.3.2" - eslint-visitor-keys "^3.3.0" + eslint-visitor-keys "^3.4.1" esprima@^4.0.0, esprima@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== -esquery@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5" - integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w== +esquery@^1.4.2: + version "1.6.0" + resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.6.0.tgz#91419234f804d852a82dceec3e16cdc22cf9dae7" + integrity sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg== dependencies: estraverse "^5.1.0" @@ -5157,7 +5204,7 @@ eventemitter3@^3.1.0: resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-3.1.2.tgz#2d3d48f9c346698fce83a85d7d664e98535df6e7" integrity sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q== -events@^3.2.0, events@^3.3.0: +events@^3.2.0: version "3.3.0" resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400" integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q== @@ -5246,36 +5293,36 @@ express-session@^1.17.2: uid-safe "~2.1.5" express@^4.19.2: - version "4.19.2" - resolved "https://registry.yarnpkg.com/express/-/express-4.19.2.tgz#e25437827a3aa7f2a827bc8171bbbb664a356465" - integrity sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q== + version "4.21.2" + resolved "https://registry.yarnpkg.com/express/-/express-4.21.2.tgz#cf250e48362174ead6cea4a566abef0162c1ec32" + integrity sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA== dependencies: accepts "~1.3.8" array-flatten "1.1.1" - body-parser "1.20.2" + body-parser "1.20.3" content-disposition "0.5.4" content-type "~1.0.4" - cookie "0.6.0" + cookie "0.7.1" cookie-signature "1.0.6" debug "2.6.9" depd "2.0.0" - encodeurl "~1.0.2" + encodeurl "~2.0.0" escape-html "~1.0.3" etag "~1.8.1" - finalhandler "1.2.0" + finalhandler "1.3.1" fresh "0.5.2" http-errors "2.0.0" - merge-descriptors "1.0.1" + merge-descriptors "1.0.3" methods "~1.1.2" on-finished "2.4.1" parseurl "~1.3.3" - path-to-regexp "0.1.7" + path-to-regexp "0.1.12" proxy-addr "~2.0.7" - qs "6.11.0" + qs "6.13.0" range-parser "~1.2.1" safe-buffer "5.2.1" - send "0.18.0" - serve-static "1.15.0" + send "0.19.0" + serve-static "1.16.2" setprototypeof "1.2.0" statuses "2.0.1" type-is "~1.6.18" @@ -5313,6 +5360,11 @@ extsprintf@^1.2.0: resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.1.tgz#8d172c064867f235c0c84a596806d279bf4bcc07" integrity sha512-Wrk35e8ydCKDj/ArClo1VrPVmN8zph5V4AtHwIuHhvMXsKf73UT3BOD+azBIW+3wOJ4FhEH7zyaJCFvChjYvMA== +fast-content-type-parse@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/fast-content-type-parse/-/fast-content-type-parse-1.1.0.tgz#4087162bf5af3294d4726ff29b334f72e3a1092c" + integrity sha512-fBHHqSTFLVnR61C+gltJuE5GkVQMV0S2nqUO8TJ+5Z3qAKG8vAx4FKai1s5jq/inV1+sREynIWSuQ6HgoSXpDQ== + fast-decode-uri-component@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/fast-decode-uri-component/-/fast-decode-uri-component-1.0.1.tgz#46f8b6c22b30ff7a81357d4f59abfae938202543" @@ -5350,26 +5402,17 @@ fast-json-stable-stringify@^2.0.0: resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== -fast-json-stringify@^2.7.10: - version "2.7.12" - resolved "https://registry.yarnpkg.com/fast-json-stringify/-/fast-json-stringify-2.7.12.tgz#5bb7941695b52f545191bc396396230633f43592" - integrity sha512-4hjwZDPmgj/ZUKXhEWovGPciE/5mWtAIQQxN+2VBDFun7DRTk2oOItbu9ZZp6kqj+eZ/u7z+dgBgM74cfGRnBQ== - dependencies: - ajv "^6.11.0" - deepmerge "^4.2.2" - rfdc "^1.2.0" - string-similarity "^4.0.1" - -fast-json-stringify@^5.0.0: - version "5.5.0" - resolved "https://registry.yarnpkg.com/fast-json-stringify/-/fast-json-stringify-5.5.0.tgz#6655cb944df8da43f6b15312a9564b81c55dadab" - integrity sha512-rmw2Z8/mLkND8zI+3KTYIkNPEoF5v6GqDP/o+g7H3vjdWjBwuKpgAYFHIzL6ORRB+iqDjjtJnLIW9Mzxn5szOA== +fast-json-stringify@^5.7.0, fast-json-stringify@^5.8.0: + version "5.16.1" + resolved "https://registry.yarnpkg.com/fast-json-stringify/-/fast-json-stringify-5.16.1.tgz#a6d0c575231a3a08c376a00171d757372f2ca46e" + integrity sha512-KAdnLvy1yu/XrRtP+LJnxbBGrhN+xXu+gt3EUvZhYGKCr3lFHq/7UFJHHFgmJKoqlh6B40bZLEv7w46B0mqn1g== dependencies: - "@fastify/deepmerge" "^1.0.0" + "@fastify/merge-json-schemas" "^0.1.0" ajv "^8.10.0" - ajv-formats "^2.1.1" + ajv-formats "^3.0.1" fast-deep-equal "^3.1.3" fast-uri "^2.1.0" + json-schema-ref-resolver "^1.0.1" rfdc "^1.2.0" fast-levenshtein@^2.0.6: @@ -5396,11 +5439,6 @@ fast-redact@^3.1.1: resolved "https://registry.yarnpkg.com/fast-redact/-/fast-redact-3.1.2.tgz#d58e69e9084ce9fa4c1a6fa98a3e1ecf5d7839aa" integrity sha512-+0em+Iya9fKGfEQGcd62Yv6onjBmmhV1uh86XVfOU8VwAe6kaFdQCWI9s0/Nnugx5Vd9tdbZ7e6gE2tR9dzXdw== -fast-safe-stringify@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz#c406a83b6e70d9e35ce3b30a81141df30aeba884" - integrity sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA== - fast-text-encoding@^1.0.0: version "1.0.3" resolved "https://registry.yarnpkg.com/fast-text-encoding/-/fast-text-encoding-1.0.3.tgz#ec02ac8e01ab8a319af182dae2681213cfe9ce53" @@ -5411,26 +5449,34 @@ fast-uri@^2.0.0, fast-uri@^2.1.0: resolved "https://registry.yarnpkg.com/fast-uri/-/fast-uri-2.2.0.tgz#519a0f849bef714aad10e9753d69d8f758f7445a" integrity sha512-cIusKBIt/R/oI6z/1nyfe2FvGKVTohVRfvkOhvx0nCEW+xf5NoCXjAHcWp93uOUBchzYcsvPlrapAdX1uW+YGg== -fastify@^4.10.2: - version "4.10.2" - resolved "https://registry.yarnpkg.com/fastify/-/fastify-4.10.2.tgz#0dd1cb8d16df3c14eff938c08aa6da63b4035d0d" - integrity sha512-0T+4zI6N3S8ex0LCZi3H4FasJR4AzWw834fUkPWvV8r6GBJkLmAOfFxH8f5V29Plef24IK0QSQD/tz1Nx+1UOA== +fastify@^4.17.0: + version "4.29.0" + resolved "https://registry.yarnpkg.com/fastify/-/fastify-4.29.0.tgz#ea3fcd92f4d9deaa841a6722dc6e3e7ff9392850" + integrity sha512-MaaUHUGcCgC8fXQDsDtioaCcag1fmPJ9j64vAKunqZF4aSub040ZGi/ag8NGE2714yREPOKZuHCfpPzuUD3UQQ== dependencies: - "@fastify/ajv-compiler" "^3.3.1" - "@fastify/error" "^3.0.0" - "@fastify/fast-json-stringify-compiler" "^4.1.0" + "@fastify/ajv-compiler" "^3.5.0" + "@fastify/error" "^3.4.0" + "@fastify/fast-json-stringify-compiler" "^4.3.0" abstract-logging "^2.0.1" - avvio "^8.2.0" - content-type "^1.0.4" - find-my-way "^7.3.0" - light-my-request "^5.6.1" - pino "^8.5.0" - process-warning "^2.0.0" + avvio "^8.3.0" + fast-content-type-parse "^1.1.0" + fast-json-stringify "^5.8.0" + find-my-way "^8.0.0" + light-my-request "^5.11.0" + pino "^9.0.0" + process-warning "^3.0.0" proxy-addr "^2.0.7" rfdc "^1.3.0" - secure-json-parse "^2.5.0" - semver "^7.3.7" - tiny-lru "^10.0.0" + secure-json-parse "^2.7.0" + semver "^7.5.4" + toad-cache "^3.3.0" + +fastq@^1.17.1: + version "1.17.1" + resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.17.1.tgz#2a523f07a4e7b1e81a42b91b8bf2254107753b47" + integrity sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w== + dependencies: + reusify "^1.0.4" fastq@^1.6.0: version "1.13.0" @@ -5439,13 +5485,6 @@ fastq@^1.6.0: dependencies: reusify "^1.0.4" -fastq@^1.6.1: - version "1.14.0" - resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.14.0.tgz#107f69d7295b11e0fccc264e1fc6389f623731ce" - integrity sha512-eR2D+V9/ExcbF9ls441yIuN6TI2ED1Y2ZcA5BmMtJsOkWOFRJQ0Jt0g1UwqXJJVAb+V+umH5Dfr8oh4EVP7VVg== - dependencies: - reusify "^1.0.4" - fault@^1.0.0: version "1.0.4" resolved "https://registry.yarnpkg.com/fault/-/fault-1.0.4.tgz#eafcfc0a6d214fc94601e170df29954a4f842f13" @@ -5506,13 +5545,13 @@ fill-range@^7.1.1: dependencies: to-regex-range "^5.0.1" -finalhandler@1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.2.0.tgz#7d23fe5731b207b4640e4fcd00aec1f9207a7b32" - integrity sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg== +finalhandler@1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.3.1.tgz#0c575f1d1d324ddd1da35ad7ece3df7d19088019" + integrity sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ== dependencies: debug "2.6.9" - encodeurl "~1.0.2" + encodeurl "~2.0.0" escape-html "~1.0.3" on-finished "2.4.1" parseurl "~1.3.3" @@ -5540,14 +5579,14 @@ find-babel-config@^2.0.0: json5 "^2.1.1" path-exists "^4.0.0" -find-my-way@^7.3.0: - version "7.3.1" - resolved "https://registry.yarnpkg.com/find-my-way/-/find-my-way-7.3.1.tgz#fd8a0b468a18c283e05be59f93a627f37e306cfa" - integrity sha512-kGvM08SOkqvheLcuQ8GW9t/H901Qb9rZEbcNWbXopzy4jDRoaJpJoObPSKf4MnQLZ20ZTp7rL5MpF6rf+pqmyg== +find-my-way@^8.0.0: + version "8.2.2" + resolved "https://registry.yarnpkg.com/find-my-way/-/find-my-way-8.2.2.tgz#f3e78bc6ead2da4fdaa201335da3228600ed0285" + integrity sha512-Dobi7gcTEq8yszimcfp/R7+owiT4WncAJ7VTTgFH1jYJ5GaG1FbhjwDG820hptN0QDFvzVY3RfCzdInvGPGzjA== dependencies: fast-deep-equal "^3.1.3" fast-querystring "^1.0.0" - safe-regex2 "^2.0.0" + safe-regex2 "^3.1.0" find-root@^1.1.0: version "1.1.0" @@ -5677,6 +5716,11 @@ function-bind@^1.1.1: resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== +function-bind@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c" + integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== + function.prototype.name@^1.1.5: version "1.1.5" resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621" @@ -5692,20 +5736,6 @@ functions-have-names@^1.2.2: resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== -gauge@~2.7.3: - version "2.7.4" - resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" - integrity sha1-LANAXHU4w51+s3sxcCLjJfsBi/c= - dependencies: - aproba "^1.0.3" - console-control-strings "^1.0.0" - has-unicode "^2.0.0" - object-assign "^4.1.0" - signal-exit "^3.0.0" - string-width "^1.0.1" - strip-ansi "^3.0.1" - wide-align "^1.1.0" - gaxios@^4.0.0: version "4.3.3" resolved "https://registry.yarnpkg.com/gaxios/-/gaxios-4.3.3.tgz#d44bdefe52d34b6435cc41214fdb160b64abfc22" @@ -5753,6 +5783,22 @@ get-intrinsic@^1.1.3: has "^1.0.3" has-symbols "^1.0.3" +get-intrinsic@^1.2.4, get-intrinsic@^1.2.5: + version "1.2.6" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.6.tgz#43dd3dd0e7b49b82b2dfcad10dc824bf7fc265d5" + integrity sha512-qxsEs+9A+u85HhllWJJFicJfPDhRmjzoYdl64aMWW9yRIJmSyxdn8IEkuIM530/7T+lv0TIHd8L6Q/ra0tEoeA== + dependencies: + call-bind-apply-helpers "^1.0.1" + dunder-proto "^1.0.0" + es-define-property "^1.0.1" + es-errors "^1.3.0" + es-object-atoms "^1.0.0" + function-bind "^1.1.2" + gopd "^1.2.0" + has-symbols "^1.1.0" + hasown "^2.0.2" + math-intrinsics "^1.0.0" + get-package-type@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" @@ -5871,20 +5917,13 @@ globals@^11.1.0, globals@^11.12.0: resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== -globals@^13.15.0: - version "13.17.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-13.17.0.tgz#902eb1e680a41da93945adbdcb5a9f361ba69bd4" - integrity sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw== +globals@^13.19.0: + version "13.24.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-13.24.0.tgz#8432a19d78ce0c1e833949c36adb345400bb1171" + integrity sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ== dependencies: type-fest "^0.20.2" -globalthis@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.2.tgz#2a235d34f4d8036219f7e34929b5de9e18166b8b" - integrity sha512-ZQnSFO1la8P7auIOQECnm0sSuoMeaSq0EEdXMBFF2QJO4uNcwbyhSgG3MruWNbFTqCLmxVwGOl7LZ9kASvHdeQ== - dependencies: - define-properties "^1.1.3" - globalyzer@0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/globalyzer/-/globalyzer-0.1.0.tgz#cb76da79555669a1519d5a8edf093afaa0bf1465" @@ -5952,15 +5991,20 @@ google-p12-pem@^3.1.3: dependencies: node-forge "^1.3.1" +gopd@^1.0.1, gopd@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.2.0.tgz#89f56b8217bdbc8802bd299df6d7f1081d7e51a1" + integrity sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg== + graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.11, graceful-fs@^4.2.4, graceful-fs@^4.2.9: version "4.2.11" resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== -grapheme-splitter@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz#9cf3a665c6247479896834af35cf1dbb4400767e" - integrity sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ== +graphemer@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6" + integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag== graphile-build-pg@4.12.2: version "4.12.2" @@ -6134,6 +6178,13 @@ has-property-descriptors@^1.0.0: dependencies: get-intrinsic "^1.1.1" +has-property-descriptors@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz#963ed7d071dc7bf5f084c5bfbe0d1b6222586854" + integrity sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg== + dependencies: + es-define-property "^1.0.0" + has-symbols@^1.0.1, has-symbols@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.2.tgz#165d3070c00309752a1236a479331e3ac56f1423" @@ -6144,6 +6195,11 @@ has-symbols@^1.0.3: resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== +has-symbols@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.1.0.tgz#fc9c6a783a084951d0b971fe1018de813707a338" + integrity sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ== + has-tostringtag@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" @@ -6151,11 +6207,6 @@ has-tostringtag@^1.0.0: dependencies: has-symbols "^1.0.2" -has-unicode@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" - integrity sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk= - has@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" @@ -6168,6 +6219,13 @@ hash-stream-validation@^0.2.2: resolved "https://registry.yarnpkg.com/hash-stream-validation/-/hash-stream-validation-0.2.4.tgz#ee68b41bf822f7f44db1142ec28ba9ee7ccb7512" integrity sha512-Gjzu0Xn7IagXVkSu9cSFuK1fqzwtLwFhNhVL8IFJijRNMgUttFbBSIAzKuSIrsFMO1+g1RlsoN49zPIbwPDMGQ== +hasown@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz#003eaf91be7adc372e84ec59dc37252cedb80003" + integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ== + dependencies: + function-bind "^1.1.2" + hast-util-parse-selector@^2.0.0: version "2.2.5" resolved "https://registry.yarnpkg.com/hast-util-parse-selector/-/hast-util-parse-selector-2.2.5.tgz#d57c23f4da16ae3c63b3b6ca4616683313499c3a" @@ -6357,7 +6415,7 @@ iconv-lite@0.4.24: dependencies: safer-buffer ">= 2.1.2 < 3" -ieee754@^1.1.13, ieee754@^1.2.1: +ieee754@^1.1.13: version "1.2.1" resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== @@ -6402,7 +6460,7 @@ import-fresh@^2.0.0: caller-path "^2.0.0" resolve-from "^3.0.0" -import-fresh@^3.0.0, import-fresh@^3.1.0, import-fresh@^3.2.1: +import-fresh@^3.1.0, import-fresh@^3.2.1: version "3.3.0" resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== @@ -6575,13 +6633,6 @@ is-extglob@^2.1.1: resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= -is-fullwidth-code-point@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" - integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs= - dependencies: - number-is-nan "^1.0.0" - is-fullwidth-code-point@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" @@ -7313,11 +7364,6 @@ jose@^4.15.4: resolved "https://registry.yarnpkg.com/jose/-/jose-4.15.5.tgz#6475d0f467ecd3c630a1b5dadd2735a7288df706" integrity sha512-jc7BFxgKPKi94uOvEmzlSWFFe2+vASyXaKUpdQKatWAESU2MWjDfFf0fdfc83CDKcA5QecabZeNLyfhe3yKNkg== -js-sdsl@^4.1.4: - version "4.1.5" - resolved "https://registry.yarnpkg.com/js-sdsl/-/js-sdsl-4.1.5.tgz#1ff1645e6b4d1b028cd3f862db88c9d887f26e2a" - integrity sha512-08bOAKweV2NUC1wqTtf3qZlnpOX/R2DU9ikpjOHs0H+ibQv3zpncVQg6um4uYtRtrwIX8M4Nh3ytK4HGlYAq7Q== - "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" @@ -7414,6 +7460,13 @@ json-schema-merge-allof@^0.6.0: json-schema-compare "^0.2.2" lodash "^4.17.4" +json-schema-ref-resolver@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/json-schema-ref-resolver/-/json-schema-ref-resolver-1.0.1.tgz#6586f483b76254784fc1d2120f717bdc9f0a99bf" + integrity sha512-EJAj1pgHc1hxF6vo2Z3s69fMjO1INq6eGHXZ8Z6wCQeldCuwxGK9Sxf4/cScGn3FZubCVUehfWtcDM/PLteCQw== + dependencies: + fast-deep-equal "^3.1.3" + json-schema-traverse@^0.4.1: version "0.4.1" resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" @@ -7584,25 +7637,24 @@ lie@3.1.1: dependencies: immediate "~3.0.5" -light-my-request@^5.6.1: - version "5.8.0" - resolved "https://registry.yarnpkg.com/light-my-request/-/light-my-request-5.8.0.tgz#93b28615d4cd134b4e2370bcf2ff7e35b51c8d29" - integrity sha512-4BtD5C+VmyTpzlDPCZbsatZMJVgUIciSOwYhJDCbLffPZ35KoDkDj4zubLeHDEb35b4kkPeEv5imbh+RJxK/Pg== +light-my-request@^5.11.0: + version "5.14.0" + resolved "https://registry.yarnpkg.com/light-my-request/-/light-my-request-5.14.0.tgz#11ddae56de4053fd5c1845cbfbee5c29e8a257e7" + integrity sha512-aORPWntbpH5esaYpGOOmri0OHDOe3wC5M2MQxZ9dvMLZm6DnaAn0kJlcbU9hwsQgLzmZyReKwFwwPkR+nHu5kA== dependencies: - cookie "^0.5.0" - process-warning "^2.0.0" + cookie "^0.7.0" + process-warning "^3.0.0" set-cookie-parser "^2.4.1" lightship@^7.1.1: - version "7.1.1" - resolved "https://registry.yarnpkg.com/lightship/-/lightship-7.1.1.tgz#dcaf9830bccc2d614b09336e8fa2df7b2d77075a" - integrity sha512-q/evRpbbLEHVFJt7k6NAcrE4IBrfwdWg1Kh1IvK6ce1NvAxBKaVM3Um1/7igc1HKv4hv2QA43AqgqjiSRFJ1Mw== + version "7.3.0" + resolved "https://registry.yarnpkg.com/lightship/-/lightship-7.3.0.tgz#d7a8093116db8661285034a4b65695a0beca49e6" + integrity sha512-4yrVcNlV+2REtbIbB9sbhLPW5ePT89vpjEqrkgUr//HCoVZECirfm5fauPAuVKi6hyxSfYiyAde5uO1oVL2gPw== dependencies: - "@sentry/node" "^6.16.1" delay "^5.0.0" - fastify "^4.10.2" - roarr "^7.14.0" - serialize-error "^8.1.0" + fastify "^4.17.0" + roarr "^7.15.0" + serialize-error "^11.0.0" lines-and-columns@^1.1.6: version "1.2.4" @@ -7819,9 +7871,14 @@ map-or-similar@^1.5.0: integrity sha1-beJlMXSt+12e3DPGnT6Sobdvrwg= markdown-to-jsx@^7.1.3: - version "7.1.5" - resolved "https://registry.yarnpkg.com/markdown-to-jsx/-/markdown-to-jsx-7.1.5.tgz#caf72ad8a8c34a2bb692c4d17e44aabbe4eb19fd" - integrity sha512-YQEMMMCX3PYOWtUAQu8Fmz5/sH09s17eyQnDubwaAo8sWmnRTT1og96EFv1vL59l4nWfmtF3L91pqkuheVqRlA== + version "7.7.1" + resolved "https://registry.yarnpkg.com/markdown-to-jsx/-/markdown-to-jsx-7.7.1.tgz#8840c35583c1c024330573adb0effa28746708ee" + integrity sha512-BjLkHb+fWCAH9gp7ndbgPrY+zeZlGFtCiQNTWk+PD+GKfLg9YsUPNonSsYXGw6nQ7eZqeR+i71X59PpWXlxc/w== + +math-intrinsics@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/math-intrinsics/-/math-intrinsics-1.0.0.tgz#4e04bf87c85aa51e90d078dac2252b4eb5260817" + integrity sha512-4MqMiKP90ybymYvsut0CH2g4XWbfLtmlCkXmtmdcDCxNB+mQcu1w/1+L/VD7vi/PSv7X2JYV7SCcR+jiPXnQtA== media-typer@0.3.0: version "0.3.0" @@ -7835,10 +7892,10 @@ memoizerific@^1.11.3: dependencies: map-or-similar "^1.5.0" -merge-descriptors@1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" - integrity sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E= +merge-descriptors@1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.3.tgz#d80319a65f3c7935351e5cfdac8f9318504dbed5" + integrity sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ== merge-stream@^2.0.0: version "2.0.0" @@ -7902,7 +7959,7 @@ min-indent@^1.0.0: resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869" integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== -minimatch@^3.0.4, minimatch@^3.1.2: +minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.2: version "3.1.2" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== @@ -7971,20 +8028,15 @@ ms@2.1.2: resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== -ms@2.1.3, ms@^2.1.1: +ms@2.1.3, ms@^2.1.1, ms@^2.1.3: version "2.1.3" resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== -nanoid@^3.1.23: - version "3.2.0" - resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.2.0.tgz#62667522da6673971cca916a6d3eff3f415ff80c" - integrity sha512-fmsZYa9lpn69Ad5eDn7FMcnnSR+8R34W9qJEijxYhTbfOWzr22n1QxCMzXLK+ODyW2973V3Fux959iQoUxzUIA== - -nanoid@^3.3.6: - version "3.3.6" - resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.6.tgz#443380c856d6e9f9824267d960b4236ad583ea4c" - integrity sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA== +nanoid@^3.1.23, nanoid@^3.3.6: + version "3.3.8" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.8.tgz#b1be3030bee36aaff18bacb375e5cce521684baf" + integrity sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w== natural-compare@^1.4.0: version "1.4.0" @@ -8002,11 +8054,11 @@ neo-async@^2.6.2: integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== next@^14.1.1: - version "14.2.3" - resolved "https://registry.yarnpkg.com/next/-/next-14.2.3.tgz#f117dd5d5f20c307e7b8e4f9c1c97d961008925d" - integrity sha512-dowFkFTR8v79NPJO4QsBUtxv0g9BrS/phluVpMAt2ku7H+cbcBJlopXjkWlwxrk/xGqMemr7JkGPGemPrLLX7A== + version "14.2.20" + resolved "https://registry.yarnpkg.com/next/-/next-14.2.20.tgz#99b551d87ca6505ce63074904cb31a35e21dac9b" + integrity sha512-yPvIiWsiyVYqJlSQxwmzMIReXn5HxFNq4+tlVQ812N1FbvhmE+fDpIAD7bcS2mGYQwPJ5vAsQouyme2eKsxaug== dependencies: - "@next/env" "14.2.3" + "@next/env" "14.2.20" "@swc/helpers" "0.5.5" busboy "1.6.0" caniuse-lite "^1.0.30001579" @@ -8014,15 +8066,15 @@ next@^14.1.1: postcss "8.4.31" styled-jsx "5.1.1" optionalDependencies: - "@next/swc-darwin-arm64" "14.2.3" - "@next/swc-darwin-x64" "14.2.3" - "@next/swc-linux-arm64-gnu" "14.2.3" - "@next/swc-linux-arm64-musl" "14.2.3" - "@next/swc-linux-x64-gnu" "14.2.3" - "@next/swc-linux-x64-musl" "14.2.3" - "@next/swc-win32-arm64-msvc" "14.2.3" - "@next/swc-win32-ia32-msvc" "14.2.3" - "@next/swc-win32-x64-msvc" "14.2.3" + "@next/swc-darwin-arm64" "14.2.20" + "@next/swc-darwin-x64" "14.2.20" + "@next/swc-linux-arm64-gnu" "14.2.20" + "@next/swc-linux-arm64-musl" "14.2.20" + "@next/swc-linux-x64-gnu" "14.2.20" + "@next/swc-linux-x64-musl" "14.2.20" + "@next/swc-win32-arm64-msvc" "14.2.20" + "@next/swc-win32-ia32-msvc" "14.2.20" + "@next/swc-win32-x64-msvc" "14.2.20" node-fetch@2.6.7, node-fetch@^2.0.0, node-fetch@^2.6.1, node-fetch@^2.6.6, node-fetch@^2.6.7: version "2.6.7" @@ -8086,26 +8138,11 @@ npm-run-path@^4.0.0, npm-run-path@^4.0.1: dependencies: path-key "^3.0.0" -npmlog@^4.1.2: - version "4.1.2" - resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" - integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg== - dependencies: - are-we-there-yet "~1.1.2" - console-control-strings "~1.1.0" - gauge "~2.7.3" - set-blocking "~2.0.0" - nullthrows@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/nullthrows/-/nullthrows-1.1.1.tgz#7818258843856ae971eae4208ad7d7eb19a431b1" integrity sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw== -number-is-nan@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" - integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= - nwsapi@^2.2.0: version "2.2.0" resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.0.tgz#204879a9e3d068ff2a55139c2c772780681a38b7" @@ -8131,6 +8168,11 @@ object-inspect@^1.12.2: resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.2.tgz#c0641f26394532f28ab8d796ab954e43c009a8ea" integrity sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ== +object-inspect@^1.13.3: + version "1.13.3" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.3.tgz#f14c183de51130243d6d18ae149375ff50ea488a" + integrity sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA== + object-keys@^1.0.12, object-keys@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" @@ -8258,17 +8300,17 @@ openid-client@^5.0.2: object-hash "^2.2.0" oidc-token-hash "^5.0.3" -optionator@^0.9.1: - version "0.9.3" - resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.3.tgz#007397d44ed1872fdc6ed31360190f81814e2c64" - integrity sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg== +optionator@^0.9.3: + version "0.9.4" + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.4.tgz#7ea1c1a5d91d764fb282139c88fe11e182a3a734" + integrity sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g== dependencies: - "@aashutoshrathi/word-wrap" "^1.2.3" deep-is "^0.1.3" fast-levenshtein "^2.0.6" levn "^0.4.1" prelude-ls "^1.2.1" type-check "^0.4.0" + word-wrap "^1.2.5" ospath@^1.2.2: version "1.2.2" @@ -8414,15 +8456,15 @@ path-parse@^1.0.6, path-parse@^1.0.7: resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== -path-to-regexp@0.1.7: - version "0.1.7" - resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" - integrity sha1-32BBeABfUi8V60SQ5yR6G/qmf4w= +path-to-regexp@0.1.12: + version "0.1.12" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.12.tgz#d5e1a12e478a976d432ef3c58d534b9923164bb7" + integrity sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ== path-to-regexp@^6.2.0: - version "6.2.0" - resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-6.2.0.tgz#f7b3803336104c346889adece614669230645f38" - integrity sha512-f66KywYG6+43afgE/8j/GoiNyygk/bnoCbps++3ErRKsIYkGGupyv07R2Ok5m9i67Iqc+T2g1eAUGUPzWhYTyg== + version "6.3.0" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-6.3.0.tgz#2b6a26a337737a8e1416f9272ed0766b1c0389f4" + integrity sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ== path-type@^4.0.0: version "4.0.0" @@ -8525,35 +8567,34 @@ pify@^2.2.0: resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw= -pino-abstract-transport@v1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/pino-abstract-transport/-/pino-abstract-transport-1.0.0.tgz#cc0d6955fffcadb91b7b49ef220a6cc111d48bb3" - integrity sha512-c7vo5OpW4wIS42hUVcT5REsL8ZljsUfBjqV/e2sFxmFEFZiq1XLUp5EYLtuDH6PEHq9W1egWqRbnLUP5FuZmOA== +pino-abstract-transport@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/pino-abstract-transport/-/pino-abstract-transport-2.0.0.tgz#de241578406ac7b8a33ce0d77ae6e8a0b3b68a60" + integrity sha512-F63x5tizV6WCh4R6RHyi2Ml+M70DNRXt/+HANowMflpgGFMAym/VKm6G7ZOQRjqN7XbGxK1Lg9t6ZrtzOaivMw== dependencies: - readable-stream "^4.0.0" split2 "^4.0.0" -pino-std-serializers@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/pino-std-serializers/-/pino-std-serializers-6.0.0.tgz#4c20928a1bafca122fdc2a7a4a171ca1c5f9c526" - integrity sha512-mMMOwSKrmyl+Y12Ri2xhH1lbzQxwwpuru9VjyJpgFIH4asSj88F2csdMwN6+M5g1Ll4rmsYghHLQJw81tgZ7LQ== +pino-std-serializers@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/pino-std-serializers/-/pino-std-serializers-7.0.0.tgz#7c625038b13718dbbd84ab446bd673dc52259e3b" + integrity sha512-e906FRY0+tV27iq4juKzSYPbUj2do2X2JX4EzSca1631EB2QJQUqGbDuERal7LCtOpxl6x3+nvo9NPZcmjkiFA== -pino@^8.5.0: - version "8.7.0" - resolved "https://registry.yarnpkg.com/pino/-/pino-8.7.0.tgz#58621608a3d8540ae643cdd9194cdd94130c78d9" - integrity sha512-l9sA5uPxmZzwydhMWUcm1gI0YxNnYl8MfSr2h8cwLvOAzQLBLewzF247h/vqHe3/tt6fgtXeG9wdjjoetdI/vA== +pino@^9.0.0: + version "9.5.0" + resolved "https://registry.yarnpkg.com/pino/-/pino-9.5.0.tgz#a7ef0fea868d22d52d8a4ce46e6e03c5dc46fdd6" + integrity sha512-xSEmD4pLnV54t0NOUN16yCl7RIB1c5UUOse5HSyEXtBp+FgFQyPeDutc+Q2ZO7/22vImV7VfEjH/1zV2QuqvYw== dependencies: atomic-sleep "^1.0.0" fast-redact "^3.1.1" on-exit-leak-free "^2.1.0" - pino-abstract-transport v1.0.0 - pino-std-serializers "^6.0.0" - process-warning "^2.0.0" + pino-abstract-transport "^2.0.0" + pino-std-serializers "^7.0.0" + process-warning "^4.0.0" quick-format-unescaped "^4.0.3" real-require "^0.2.0" safe-stable-stringify "^2.3.1" - sonic-boom "^3.1.0" - thread-stream "^2.0.0" + sonic-boom "^4.0.1" + thread-stream "^3.0.0" pirates@^4.0.4: version "4.0.5" @@ -8743,10 +8784,15 @@ process-nextick-args@~2.0.0: resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== -process-warning@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/process-warning/-/process-warning-2.1.0.tgz#1e60e3bfe8183033bbc1e702c2da74f099422d1a" - integrity sha512-9C20RLxrZU/rFnxWncDkuF6O999NdIf3E1ws4B0ZeY3sRVPzWBMsYDE2lxjxhiXxg464cQTgKUGm8/i6y2YGXg== +process-warning@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/process-warning/-/process-warning-3.0.0.tgz#96e5b88884187a1dce6f5c3166d611132058710b" + integrity sha512-mqn0kFRl0EoqhnL0GQ0veqFHyIN1yig9RHh/InzORTUiZHFRAur+aMtRkELNwGs9aNwKS6tg/An4NYBPGwvtzQ== + +process-warning@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/process-warning/-/process-warning-4.0.0.tgz#581e3a7a1fb456c5f4fd239f76bce75897682d5a" + integrity sha512-/MyYDxttz7DfGMMHiysAsFE4qF+pQYAA8ziO/3NcRVrQ5fSk+Mns4QZA/oRPFzvcqNoVJXQNWNAsdwBXLUkQKw== process@^0.11.10: version "0.11.10" @@ -8853,7 +8899,14 @@ punycode@^2.1.0, punycode@^2.1.1: resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== -qs@6.11.0, qs@^6.10.0: +qs@6.13.0: + version "6.13.0" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.13.0.tgz#6ca3bd58439f7e245655798997787b0d88a51906" + integrity sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg== + dependencies: + side-channel "^1.0.6" + +qs@^6.10.0: version "6.11.0" resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.0.tgz#fd0d963446f7a65e1367e01abd85429453f0c37a" integrity sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q== @@ -8906,16 +8959,6 @@ range-parser@~1.2.1: resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== -raw-body@2.5.1: - version "2.5.1" - resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.5.1.tgz#fe1b1628b181b700215e5fd42389f98b71392857" - integrity sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig== - dependencies: - bytes "3.1.2" - http-errors "2.0.0" - iconv-lite "0.4.24" - unpipe "1.0.0" - raw-body@2.5.2: version "2.5.2" resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.5.2.tgz#99febd83b90e08975087e8f1f9419a149366b68a" @@ -9139,7 +9182,7 @@ react@^18.2.0: dependencies: loose-envify "^1.1.0" -readable-stream@^2.0.0, readable-stream@^2.0.5, readable-stream@^2.0.6: +readable-stream@^2.0.0, readable-stream@^2.0.5: version "2.3.7" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== @@ -9161,16 +9204,6 @@ readable-stream@^3.0.0, readable-stream@^3.1.1, readable-stream@^3.4.0, readable string_decoder "^1.1.1" util-deprecate "^1.0.1" -readable-stream@^4.0.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-4.2.0.tgz#a7ef523d3b39e4962b0db1a1af22777b10eeca46" - integrity sha512-gJrBHsaI3lgBoGMW/jHZsQ/o/TIWiu5ENCJG1BB7fuCKzpFM8GaS2UoBVt9NO+oI+3FcrBNbUkl3ilDe09aY4A== - dependencies: - abort-controller "^3.0.0" - buffer "^6.0.3" - events "^3.3.0" - process "^0.11.10" - readdir-glob@^1.0.0: version "1.1.1" resolved "https://registry.yarnpkg.com/readdir-glob/-/readdir-glob-1.1.1.tgz#f0e10bb7bf7bfa7e0add8baffdc54c3f7dbee6c4" @@ -9357,10 +9390,10 @@ restore-cursor@^3.1.0: onetime "^5.1.0" signal-exit "^3.0.2" -ret@~0.2.0: - version "0.2.2" - resolved "https://registry.yarnpkg.com/ret/-/ret-0.2.2.tgz#b6861782a1f4762dce43402a71eb7a283f44573c" - integrity sha512-M0b3YWQs7R3Z917WRQy1HHA7Ba7D8hvZg6UE5mLykJxQVE2ju0IXbGlaHPPlkY+WN7wFP+wUMXmBFA0aV6vYGQ== +ret@~0.4.0: + version "0.4.3" + resolved "https://registry.yarnpkg.com/ret/-/ret-0.4.3.tgz#5243fa30e704a2e78a9b9b1e86079e15891aa85c" + integrity sha512-0f4Memo5QP7WQyUEAYUO3esD/XjOc3Zjjg5CPsAq1p8sIu0XPeMbHJemKA0BO7tV0X7+A0FoEpbmHXWxPyD3wQ== retry-request@^4.2.2: version "4.2.2" @@ -9392,16 +9425,13 @@ rimraf@^3.0.0, rimraf@^3.0.2: dependencies: glob "^7.1.3" -roarr@^7.14.0: - version "7.14.0" - resolved "https://registry.yarnpkg.com/roarr/-/roarr-7.14.0.tgz#4de049c94aa930160a9e52ef3b0ebf166c5935b6" - integrity sha512-Np9LwC48JHvqQaS1lXvSi8aC+eaZSJItC3b0rNIan8jTwl8oTUMpqrcCvSO2bC6jDtqPI8zkQSVQWEpyl0L48Q== +roarr@^7.15.0: + version "7.21.1" + resolved "https://registry.yarnpkg.com/roarr/-/roarr-7.21.1.tgz#fd6452ca822a65f736c35e5372f04ee9f2ca3851" + integrity sha512-3niqt5bXFY1InKU8HKWqqYTYjtrBaxBMnXELXCXUYgtNYGUtZM5rB46HIC430AyacL95iEniGf7RgqsesykLmQ== dependencies: - boolean "^3.1.4" - fast-json-stringify "^2.7.10" fast-printf "^1.6.9" - fast-safe-stringify "^2.1.1" - globalthis "^1.0.2" + safe-stable-stringify "^2.4.3" semver-compare "^1.0.0" run-parallel@^1.1.9: @@ -9444,18 +9474,23 @@ safe-regex-test@^1.0.0: get-intrinsic "^1.1.3" is-regex "^1.1.4" -safe-regex2@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/safe-regex2/-/safe-regex2-2.0.0.tgz#b287524c397c7a2994470367e0185e1916b1f5b9" - integrity sha512-PaUSFsUaNNuKwkBijoAPHAK6/eM6VirvyPWlZ7BAQy4D+hCvh4B6lIG+nPdhbFfIbP+gTGBcrdsOaUs0F+ZBOQ== +safe-regex2@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/safe-regex2/-/safe-regex2-3.1.0.tgz#fd7ec23908e2c730e1ce7359a5b72883a87d2763" + integrity sha512-RAAZAGbap2kBfbVhvmnTFv73NWLMvDGOITFYTZBAaY8eR+Ir4ef7Up/e7amo+y1+AH+3PtLkrt9mvcTsG9LXug== dependencies: - ret "~0.2.0" + ret "~0.4.0" safe-stable-stringify@^2.3.1: version "2.4.1" resolved "https://registry.yarnpkg.com/safe-stable-stringify/-/safe-stable-stringify-2.4.1.tgz#34694bd8a30575b7f94792aa51527551bd733d61" integrity sha512-dVHE6bMtS/bnL2mwualjc6IxEv1F+OCUpA46pKUj6F8uDbUM0jCCulPqRNPSnWwGNKx5etqMjZYdXtrm5KJZGA== +safe-stable-stringify@^2.4.3: + version "2.5.0" + resolved "https://registry.yarnpkg.com/safe-stable-stringify/-/safe-stable-stringify-2.5.0.tgz#4ca2f8e385f2831c432a719b108a3bf7af42a1dd" + integrity sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA== + "safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: version "2.1.2" resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" @@ -9484,27 +9519,27 @@ schema-utils@^3.1.1, schema-utils@^3.2.0: ajv "^6.12.5" ajv-keywords "^3.5.2" -secure-json-parse@^2.5.0: - version "2.6.0" - resolved "https://registry.yarnpkg.com/secure-json-parse/-/secure-json-parse-2.6.0.tgz#95d89f84adf32d76ff7800e68a673b129fe918b0" - integrity sha512-B9osKohb6L+EZ6Kve3wHKfsAClzOC/iISA2vSuCe5Jx5NAKiwitfxx8ZKYapHXr0sYRj7UZInT7pLb3rp2Yx6A== +secure-json-parse@^2.7.0: + version "2.7.0" + resolved "https://registry.yarnpkg.com/secure-json-parse/-/secure-json-parse-2.7.0.tgz#5a5f9cd6ae47df23dba3151edd06855d47e09862" + integrity sha512-6aU+Rwsezw7VR8/nyvKTx8QpWH9FrcYiXXlqC4z5d5XQBDRqtbfsRjnwGyqbi3gddNtWHuEk9OANUotL26qKUw== semver-compare@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc" integrity sha1-De4hahyUGrN+nvsXiPavxf9VN/w= -semver@^5.7.1, semver@^6.0.0, semver@^6.3.0, semver@^7.3.2, semver@^7.3.5, semver@^7.3.7, semver@^7.3.8, semver@^7.5.3, semver@~7.0.0: +semver@^5.7.1, semver@^6.0.0, semver@^6.3.0, semver@^7.3.2, semver@^7.3.5, semver@^7.3.7, semver@^7.3.8, semver@^7.5.3, semver@^7.5.4, semver@~7.0.0: version "7.5.3" resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.3.tgz#161ce8c2c6b4b3bdca6caadc9fa3317a4c4fe88e" integrity sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ== dependencies: lru-cache "^6.0.0" -send@0.18.0: - version "0.18.0" - resolved "https://registry.yarnpkg.com/send/-/send-0.18.0.tgz#670167cc654b05f5aa4a767f9113bb371bc706be" - integrity sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg== +send@0.19.0: + version "0.19.0" + resolved "https://registry.yarnpkg.com/send/-/send-0.19.0.tgz#bbc5a388c8ea6c048967049dbeac0e4a3f09d7f8" + integrity sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw== dependencies: debug "2.6.9" depd "2.0.0" @@ -9520,12 +9555,12 @@ send@0.18.0: range-parser "~1.2.1" statuses "2.0.1" -serialize-error@^8.1.0: - version "8.1.0" - resolved "https://registry.yarnpkg.com/serialize-error/-/serialize-error-8.1.0.tgz#3a069970c712f78634942ddd50fbbc0eaebe2f67" - integrity sha512-3NnuWfM6vBYoy5gZFvHiYsVbafvI9vZv/+jlIigFn4oP4zjNPK3LhcY0xSCgeb1a5L8jO71Mit9LlNoi2UfDDQ== +serialize-error@^11.0.0: + version "11.0.3" + resolved "https://registry.yarnpkg.com/serialize-error/-/serialize-error-11.0.3.tgz#b54f439e15da5b4961340fbbd376b6b04aa52e92" + integrity sha512-2G2y++21dhj2R7iHAdd0FIzjGwuKZld+7Pl/bTU6YIkrC2ZMbVUjm+luj6A6V34Rv9XfKJDKpTWu9W4Gse1D9g== dependencies: - type-fest "^0.20.2" + type-fest "^2.12.2" serialize-javascript@^5.0.1: version "5.0.1" @@ -9541,26 +9576,33 @@ serialize-javascript@^6.0.1: dependencies: randombytes "^2.1.0" -serve-static@1.15.0: - version "1.15.0" - resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.15.0.tgz#faaef08cffe0a1a62f60cad0c4e513cff0ac9540" - integrity sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g== +serve-static@1.16.2: + version "1.16.2" + resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.16.2.tgz#b6a5343da47f6bdd2673848bf45754941e803296" + integrity sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw== dependencies: - encodeurl "~1.0.2" + encodeurl "~2.0.0" escape-html "~1.0.3" parseurl "~1.3.3" - send "0.18.0" - -set-blocking@~2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" - integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= + send "0.19.0" set-cookie-parser@^2.4.1: version "2.5.1" resolved "https://registry.yarnpkg.com/set-cookie-parser/-/set-cookie-parser-2.5.1.tgz#ddd3e9a566b0e8e0862aca974a6ac0e01349430b" integrity sha512-1jeBGaKNGdEq4FgIrORu/N570dwoPYio8lSoYLWmX7sQ//0JY08Xh9o5pBcgmHQ/MbsYp/aZnOe1s1lIsbLprQ== +set-function-length@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.2.tgz#aac72314198eaed975cf77b2c3b6b880695e5449" + integrity sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg== + dependencies: + define-data-property "^1.1.4" + es-errors "^1.3.0" + function-bind "^1.1.2" + get-intrinsic "^1.2.4" + gopd "^1.0.1" + has-property-descriptors "^1.0.2" + setimmediate@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" @@ -9588,6 +9630,35 @@ shebang-regex@^3.0.0: resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== +side-channel-list@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/side-channel-list/-/side-channel-list-1.0.0.tgz#10cb5984263115d3b7a0e336591e290a830af8ad" + integrity sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA== + dependencies: + es-errors "^1.3.0" + object-inspect "^1.13.3" + +side-channel-map@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/side-channel-map/-/side-channel-map-1.0.1.tgz#d6bb6b37902c6fef5174e5f533fab4c732a26f42" + integrity sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA== + dependencies: + call-bound "^1.0.2" + es-errors "^1.3.0" + get-intrinsic "^1.2.5" + object-inspect "^1.13.3" + +side-channel-weakmap@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz#11dda19d5368e40ce9ec2bdc1fb0ecbc0790ecea" + integrity sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A== + dependencies: + call-bound "^1.0.2" + es-errors "^1.3.0" + get-intrinsic "^1.2.5" + object-inspect "^1.13.3" + side-channel-map "^1.0.1" + side-channel@^1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" @@ -9597,10 +9668,16 @@ side-channel@^1.0.4: get-intrinsic "^1.0.2" object-inspect "^1.9.0" -signal-exit@^3.0.0: - version "3.0.7" - resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" - integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== +side-channel@^1.0.6: + version "1.1.0" + resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.1.0.tgz#c3fcff9c4da932784873335ec9765fa94ff66bc9" + integrity sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw== + dependencies: + es-errors "^1.3.0" + object-inspect "^1.13.3" + side-channel-list "^1.0.0" + side-channel-map "^1.0.1" + side-channel-weakmap "^1.0.2" signal-exit@^3.0.2, signal-exit@^3.0.3: version "3.0.6" @@ -9652,10 +9729,10 @@ snakeize@^0.1.0: resolved "https://registry.yarnpkg.com/snakeize/-/snakeize-0.1.0.tgz#10c088d8b58eb076b3229bb5a04e232ce126422d" integrity sha1-EMCI2LWOsHazIpu1oE4jLOEmQi0= -sonic-boom@^3.1.0: - version "3.2.1" - resolved "https://registry.yarnpkg.com/sonic-boom/-/sonic-boom-3.2.1.tgz#972ceab831b5840a08a002fa95a672008bda1c38" - integrity sha512-iITeTHxy3B9FGu8aVdiDXUVAcHMF9Ss0cCsAOo2HfCrmVGT3/DT5oYaeu0M/YKZDlKTvChEyPq0zI9Hf33EX6A== +sonic-boom@^4.0.1: + version "4.2.0" + resolved "https://registry.yarnpkg.com/sonic-boom/-/sonic-boom-4.2.0.tgz#e59a525f831210fa4ef1896428338641ac1c124d" + integrity sha512-INb7TM37/mAcsGmc9hyyI6+QR3rR1zVRu36B0NeGXKnOOLiZOfER5SA+N7X7k3yUYRzLWafduTDvJAfDswwEww== dependencies: atomic-sleep "^1.0.0" @@ -9779,21 +9856,7 @@ string-length@^4.0.1: char-regex "^1.0.2" strip-ansi "^6.0.0" -string-similarity@^4.0.1: - version "4.0.4" - resolved "https://registry.yarnpkg.com/string-similarity/-/string-similarity-4.0.4.tgz#42d01ab0b34660ea8a018da8f56a3309bb8b2a5b" - integrity sha512-/q/8Q4Bl4ZKAPjj8WerIBJWALKkaPRfrvhfF8k/B23i4nzrlRj2/go1m90In7nG/3XDSbOo0+pu6RvCTM9RGMQ== - -string-width@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" - integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M= - dependencies: - code-point-at "^1.0.0" - is-fullwidth-code-point "^1.0.0" - strip-ansi "^3.0.0" - -"string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.1.0, string-width@^4.2.0: +string-width@^4.1.0, string-width@^4.2.0: version "4.2.3" resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== @@ -9890,13 +9953,6 @@ string_decoder@~1.1.1: dependencies: safe-buffer "~5.1.0" -strip-ansi@^3.0.0, strip-ansi@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" - integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= - dependencies: - ansi-regex "^2.0.0" - strip-ansi@^6.0.0, strip-ansi@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" @@ -9926,7 +9982,7 @@ strip-indent@^3.0.0: dependencies: min-indent "^1.0.0" -strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: +strip-json-comments@^3.1.1: version "3.1.1" resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== @@ -10139,10 +10195,10 @@ text-table@^0.2.0: resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= -thread-stream@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/thread-stream/-/thread-stream-2.2.0.tgz#310c03a253f729094ce5d4638ef5186dfa80a9e8" - integrity sha512-rUkv4/fnb4rqy/gGy7VuqK6wE1+1DOCOWy4RMeaV69ZHMP11tQKZvZSip1yTgrKCMZzEMcCL/bKfHvSfDHx+iQ== +thread-stream@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/thread-stream/-/thread-stream-3.1.0.tgz#4b2ef252a7c215064507d4ef70c05a5e2d34c4f1" + integrity sha512-OqyPZ9u96VohAyMfJykzmivOrY2wfMSf3C5TtFJVgN+Hm6aj+voFhlK+kZEIv2FBh1X6Xp3DlnCOfEQ3B2J86A== dependencies: real-require "^0.2.0" @@ -10174,11 +10230,6 @@ tiny-glob@^0.2.9: globalyzer "0.1.0" globrex "^0.1.2" -tiny-lru@^10.0.0: - version "10.0.1" - resolved "https://registry.yarnpkg.com/tiny-lru/-/tiny-lru-10.0.1.tgz#aaf5d22207e641ed1b176ac2e616d6cc2fc9ef66" - integrity sha512-Vst+6kEsWvb17Zpz14sRJV/f8bUWKhqm6Dc+v08iShmIJ/WxqWytHzCTd6m88pS33rE2zpX34TRmOpAJPloNCA== - tmp@~0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.2.1.tgz#8457fc3037dcf4719c251367a1af6500ee1ccf14" @@ -10203,6 +10254,11 @@ to-regex-range@^5.0.1: dependencies: is-number "^7.0.0" +toad-cache@^3.3.0: + version "3.7.0" + resolved "https://registry.yarnpkg.com/toad-cache/-/toad-cache-3.7.0.tgz#b9b63304ea7c45ec34d91f1d2fa513517025c441" + integrity sha512-/m8M+2BJUpoJdgAHoG+baCwBT+tf2VraSfkBgl0Y00qIWt41DJ8R5B8nsEw0I58YwF5IZH6z24/2TobDKnqSWw== + toidentifier@1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.1.tgz#3be34321a88a820ed1bd80dfaa33e479fbb8dd35" @@ -10348,6 +10404,11 @@ type-fest@^0.21.3: resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== +type-fest@^2.12.2: + version "2.19.0" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-2.19.0.tgz#88068015bb33036a598b952e55e9311a60fd3a9b" + integrity sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA== + type-is@~1.6.18: version "1.6.18" resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" @@ -10718,12 +10779,10 @@ which@^2.0.1, which@^2.0.2: dependencies: isexe "^2.0.0" -wide-align@^1.1.0: - version "1.1.5" - resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.5.tgz#df1d4c206854369ecf3c9a4898f1b23fbd9d15d3" - integrity sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg== - dependencies: - string-width "^1.0.2 || 2 || 3 || 4" +word-wrap@^1.2.5: + version "1.2.5" + resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.5.tgz#d2c45c6dd4fbce621a66f136cbe328afd0410b34" + integrity sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA== wrap-ansi@^6.2.0: version "6.2.0" From b51c5a385143f75b6a43306e8f028918a953c8ad Mon Sep 17 00:00:00 2001 From: Pierre Bastianelli Date: Fri, 13 Dec 2024 12:10:32 -0800 Subject: [PATCH 5/5] chore: fixing schemas --- app/schema/schema.graphql | 5946 +++++--- app/schema/schema.json | 27073 +++++++++++++++++++++--------------- app/yarn.lock | 34 +- 3 files changed, 19907 insertions(+), 13146 deletions(-) diff --git a/app/schema/schema.graphql b/app/schema/schema.graphql index 072fab02ce..c38daf01be 100644 --- a/app/schema/schema.graphql +++ b/app/schema/schema.graphql @@ -1,16 +1,17 @@ -"""All input for the `addAdditionalFundingSourceToRevision` mutation.""" -input AddAdditionalFundingSourceToRevisionInput { +"""All input for the `addContactToRevision` mutation.""" +input AddContactToRevisionInput { """ 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 + contactId: Int + contactIndex: Int! revisionId: Int! - sourceIndex: Int! } -"""The output of our `addAdditionalFundingSourceToRevision` mutation.""" -type AddAdditionalFundingSourceToRevisionPayload { +"""The output of our `addContactToRevision` mutation.""" +type AddContactToRevisionPayload { """Reads a single `ChangeStatus` that is related to this `FormChange`.""" changeStatusByChangeStatus: ChangeStatus @@ -48,20 +49,20 @@ type AddAdditionalFundingSourceToRevisionPayload { query: Query } -"""All input for the `addContactToRevision` mutation.""" -input AddContactToRevisionInput { +"""All input for the `addProjectAttachmentToRevision` mutation.""" +input AddProjectAttachmentToRevisionInput { + attachmentId: Int! + """ 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 - contactId: Int - contactIndex: Int! revisionId: Int! } -"""The output of our `addContactToRevision` mutation.""" -type AddContactToRevisionPayload { +"""The output of our `addProjectAttachmentToRevision` mutation.""" +type AddProjectAttachmentToRevisionPayload { """Reads a single `ChangeStatus` that is related to this `FormChange`.""" changeStatusByChangeStatus: ChangeStatus @@ -99,31 +100,6 @@ type AddContactToRevisionPayload { query: Query } -"""All input for the `addEmissionIntensityReportToRevision` mutation.""" -input AddEmissionIntensityReportToRevisionInput { - """ - 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 - revisionId: Int! -} - -"""The output of our `addEmissionIntensityReportToRevision` mutation.""" -type AddEmissionIntensityReportToRevisionPayload { - """ - 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 - formChanges: [FormChange] - - """ - Our root query field type. Allows us to run any query from our mutation payload. - """ - query: Query -} - """ Table containing information about funding provided through sources other than CIF and the proponent; often needed for program review and data request purposes. """ @@ -2217,6 +2193,123 @@ type Attachment implements Node { """Reads a single `CifUser` that is related to this `Attachment`.""" cifUserByUpdatedBy: CifUser + """Reads and enables pagination through a set of `CifUser`.""" + cifUsersByProjectAttachmentAttachmentIdAndArchivedBy( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CifUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CifUserFilter + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = NO + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `CifUser`.""" + orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] + ): AttachmentCifUsersByProjectAttachmentAttachmentIdAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `CifUser`.""" + cifUsersByProjectAttachmentAttachmentIdAndCreatedBy( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CifUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CifUserFilter + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = NO + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `CifUser`.""" + orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] + ): AttachmentCifUsersByProjectAttachmentAttachmentIdAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CifUser`.""" + cifUsersByProjectAttachmentAttachmentIdAndUpdatedBy( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CifUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CifUserFilter + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = NO + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `CifUser`.""" + orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] + ): AttachmentCifUsersByProjectAttachmentAttachmentIdAndUpdatedByManyToManyConnection! + """created at timestamp""" createdAt: Datetime! @@ -2245,13 +2338,83 @@ type Attachment implements Node { """ id: ID! - """Reads a single `Project` that is related to this `Attachment`.""" - projectByProjectId: Project - projectId: Int + """Reads and enables pagination through a set of `ProjectAttachment`.""" + projectAttachmentsByAttachmentId( + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Reads a single `ProjectStatus` that is related to this `Attachment`.""" - projectStatusByProjectStatusId: ProjectStatus - projectStatusId: Int + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ProjectAttachmentCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ProjectAttachmentFilter + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = INHERIT + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `ProjectAttachment`.""" + orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectAttachmentsConnection! + + """Reads and enables pagination through a set of `Project`.""" + projectsByProjectAttachmentAttachmentIdAndProjectId( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ProjectCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ProjectFilter + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = NO + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `Project`.""" + orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] + ): AttachmentProjectsByProjectAttachmentAttachmentIdAndProjectIdManyToManyConnection! """Unique ID for the attachment""" rowId: Int! @@ -2263,6 +2426,213 @@ type Attachment implements Node { updatedBy: Int } +""" +A connection to a list of `CifUser` values, with data from `ProjectAttachment`. +""" +type AttachmentCifUsersByProjectAttachmentAttachmentIdAndArchivedByManyToManyConnection { + """ + A list of edges which contains the `CifUser`, info from the `ProjectAttachment`, and the cursor to aid in pagination. + """ + edges: [AttachmentCifUsersByProjectAttachmentAttachmentIdAndArchivedByManyToManyEdge!]! + + """A list of `CifUser` objects.""" + nodes: [CifUser]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CifUser` you could get from the connection.""" + totalCount: Int! +} + +""" +A `CifUser` edge in the connection, with data from `ProjectAttachment`. +""" +type AttachmentCifUsersByProjectAttachmentAttachmentIdAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CifUser` at the end of the edge.""" + node: CifUser + + """Reads and enables pagination through a set of `ProjectAttachment`.""" + projectAttachmentsByArchivedBy( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ProjectAttachmentCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ProjectAttachmentFilter + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = NO + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `ProjectAttachment`.""" + orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectAttachmentsConnection! +} + +""" +A connection to a list of `CifUser` values, with data from `ProjectAttachment`. +""" +type AttachmentCifUsersByProjectAttachmentAttachmentIdAndCreatedByManyToManyConnection { + """ + A list of edges which contains the `CifUser`, info from the `ProjectAttachment`, and the cursor to aid in pagination. + """ + edges: [AttachmentCifUsersByProjectAttachmentAttachmentIdAndCreatedByManyToManyEdge!]! + + """A list of `CifUser` objects.""" + nodes: [CifUser]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CifUser` you could get from the connection.""" + totalCount: Int! +} + +""" +A `CifUser` edge in the connection, with data from `ProjectAttachment`. +""" +type AttachmentCifUsersByProjectAttachmentAttachmentIdAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CifUser` at the end of the edge.""" + node: CifUser + + """Reads and enables pagination through a set of `ProjectAttachment`.""" + projectAttachmentsByCreatedBy( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ProjectAttachmentCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ProjectAttachmentFilter + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = NO + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `ProjectAttachment`.""" + orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectAttachmentsConnection! +} + +""" +A connection to a list of `CifUser` values, with data from `ProjectAttachment`. +""" +type AttachmentCifUsersByProjectAttachmentAttachmentIdAndUpdatedByManyToManyConnection { + """ + A list of edges which contains the `CifUser`, info from the `ProjectAttachment`, and the cursor to aid in pagination. + """ + edges: [AttachmentCifUsersByProjectAttachmentAttachmentIdAndUpdatedByManyToManyEdge!]! + + """A list of `CifUser` objects.""" + nodes: [CifUser]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CifUser` you could get from the connection.""" + totalCount: Int! +} + +""" +A `CifUser` edge in the connection, with data from `ProjectAttachment`. +""" +type AttachmentCifUsersByProjectAttachmentAttachmentIdAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CifUser` at the end of the edge.""" + node: CifUser + + """Reads and enables pagination through a set of `ProjectAttachment`.""" + projectAttachmentsByUpdatedBy( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ProjectAttachmentCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ProjectAttachmentFilter + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = NO + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `ProjectAttachment`.""" + orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectAttachmentsConnection! +} + """ A condition to be used against `Attachment` object types. All fields are tested for equality and combined with a logical ‘and.’ @@ -2295,12 +2665,6 @@ input AttachmentCondition { """Checks for equality with the object’s `fileType` field.""" fileType: String - """Checks for equality with the object’s `projectId` field.""" - projectId: Int - - """Checks for equality with the object’s `projectStatusId` field.""" - projectStatusId: Int - """Checks for equality with the object’s `rowId` field.""" rowId: Int @@ -2369,23 +2733,11 @@ input AttachmentFilter { """Checks for any expressions in this list.""" or: [AttachmentFilter!] - """Filter by the object’s `projectByProjectId` relation.""" - projectByProjectId: ProjectFilter - - """A related `projectByProjectId` exists.""" - projectByProjectIdExists: Boolean - - """Filter by the object’s `projectId` field.""" - projectId: IntFilter - - """Filter by the object’s `projectStatusByProjectStatusId` relation.""" - projectStatusByProjectStatusId: ProjectStatusFilter + """Filter by the object’s `projectAttachmentsByAttachmentId` relation.""" + projectAttachmentsByAttachmentId: AttachmentToManyProjectAttachmentFilter - """A related `projectStatusByProjectStatusId` exists.""" - projectStatusByProjectStatusIdExists: Boolean - - """Filter by the object’s `projectStatusId` field.""" - projectStatusId: IntFilter + """Some related `projectAttachmentsByAttachmentId` exist.""" + projectAttachmentsByAttachmentIdExist: Boolean """Filter by the object’s `rowId` field.""" rowId: IntFilter @@ -2427,8 +2779,6 @@ input AttachmentInput { """Original uploaded file type""" fileType: String - projectId: Int - projectStatusId: Int """updated at timestamp""" updatedAt: Datetime @@ -2469,8 +2819,6 @@ input AttachmentPatch { """Original uploaded file type""" fileType: String - projectId: Int - projectStatusId: Int """updated at timestamp""" updatedAt: Datetime @@ -2479,6 +2827,95 @@ input AttachmentPatch { updatedBy: Int } +""" +A connection to a list of `Project` values, with data from `ProjectAttachment`. +""" +type AttachmentProjectsByProjectAttachmentAttachmentIdAndProjectIdManyToManyConnection { + """ + A list of edges which contains the `Project`, info from the `ProjectAttachment`, and the cursor to aid in pagination. + """ + edges: [AttachmentProjectsByProjectAttachmentAttachmentIdAndProjectIdManyToManyEdge!]! + + """A list of `Project` objects.""" + nodes: [Project]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `Project` you could get from the connection.""" + totalCount: Int! +} + +""" +A `Project` edge in the connection, with data from `ProjectAttachment`. +""" +type AttachmentProjectsByProjectAttachmentAttachmentIdAndProjectIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Project` at the end of the edge.""" + node: Project + + """Reads and enables pagination through a set of `ProjectAttachment`.""" + projectAttachmentsByProjectId( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ProjectAttachmentCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ProjectAttachmentFilter + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = NO + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `ProjectAttachment`.""" + orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectAttachmentsConnection! +} + +""" +A filter to be used against many `ProjectAttachment` object types. All fields are combined with a logical ‘and.’ +""" +input AttachmentToManyProjectAttachmentFilter { + """ + Every related `ProjectAttachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ProjectAttachmentFilter + + """ + No related `ProjectAttachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ProjectAttachmentFilter + + """ + Some related `ProjectAttachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ProjectAttachmentFilter +} + """A connection to a list of `Attachment` values.""" type AttachmentsConnection { """ @@ -2608,70 +3045,8 @@ enum AttachmentsOrderBy { NATURAL PRIMARY_KEY_ASC PRIMARY_KEY_DESC - PROJECT_BY_PROJECT_ID__ADDITIONAL_SECTOR_INFORMATION_ASC - PROJECT_BY_PROJECT_ID__ADDITIONAL_SECTOR_INFORMATION_DESC - PROJECT_BY_PROJECT_ID__ARCHIVED_AT_ASC - PROJECT_BY_PROJECT_ID__ARCHIVED_AT_DESC - PROJECT_BY_PROJECT_ID__ARCHIVED_BY_ASC - PROJECT_BY_PROJECT_ID__ARCHIVED_BY_DESC - PROJECT_BY_PROJECT_ID__COMMENTS_ASC - PROJECT_BY_PROJECT_ID__COMMENTS_DESC - PROJECT_BY_PROJECT_ID__CONTRACT_NUMBER_ASC - PROJECT_BY_PROJECT_ID__CONTRACT_NUMBER_DESC - PROJECT_BY_PROJECT_ID__CREATED_AT_ASC - PROJECT_BY_PROJECT_ID__CREATED_AT_DESC - PROJECT_BY_PROJECT_ID__CREATED_BY_ASC - PROJECT_BY_PROJECT_ID__CREATED_BY_DESC - PROJECT_BY_PROJECT_ID__FUNDING_STREAM_RFP_ID_ASC - PROJECT_BY_PROJECT_ID__FUNDING_STREAM_RFP_ID_DESC - PROJECT_BY_PROJECT_ID__ID_ASC - PROJECT_BY_PROJECT_ID__ID_DESC - PROJECT_BY_PROJECT_ID__NEXT_MILESTONE_DUE_DATE_ASC - PROJECT_BY_PROJECT_ID__NEXT_MILESTONE_DUE_DATE_DESC - PROJECT_BY_PROJECT_ID__OPERATOR_ID_ASC - PROJECT_BY_PROJECT_ID__OPERATOR_ID_DESC - PROJECT_BY_PROJECT_ID__PROJECT_NAME_ASC - PROJECT_BY_PROJECT_ID__PROJECT_NAME_DESC - PROJECT_BY_PROJECT_ID__PROJECT_STATUS_ID_ASC - PROJECT_BY_PROJECT_ID__PROJECT_STATUS_ID_DESC - PROJECT_BY_PROJECT_ID__PROJECT_TYPE_ASC - PROJECT_BY_PROJECT_ID__PROJECT_TYPE_DESC - PROJECT_BY_PROJECT_ID__PROPOSAL_REFERENCE_ASC - PROJECT_BY_PROJECT_ID__PROPOSAL_REFERENCE_DESC - PROJECT_BY_PROJECT_ID__SCORE_ASC - PROJECT_BY_PROJECT_ID__SCORE_DESC - PROJECT_BY_PROJECT_ID__SECTOR_NAME_ASC - PROJECT_BY_PROJECT_ID__SECTOR_NAME_DESC - PROJECT_BY_PROJECT_ID__SUMMARY_ASC - PROJECT_BY_PROJECT_ID__SUMMARY_DESC - PROJECT_BY_PROJECT_ID__TOTAL_FUNDING_REQUEST_ASC - PROJECT_BY_PROJECT_ID__TOTAL_FUNDING_REQUEST_DESC - PROJECT_BY_PROJECT_ID__UPDATED_AT_ASC - PROJECT_BY_PROJECT_ID__UPDATED_AT_DESC - PROJECT_BY_PROJECT_ID__UPDATED_BY_ASC - PROJECT_BY_PROJECT_ID__UPDATED_BY_DESC - PROJECT_ID_ASC - PROJECT_ID_DESC - PROJECT_STATUS_BY_PROJECT_STATUS_ID__ARCHIVED_AT_ASC - PROJECT_STATUS_BY_PROJECT_STATUS_ID__ARCHIVED_AT_DESC - PROJECT_STATUS_BY_PROJECT_STATUS_ID__ARCHIVED_BY_ASC - PROJECT_STATUS_BY_PROJECT_STATUS_ID__ARCHIVED_BY_DESC - PROJECT_STATUS_BY_PROJECT_STATUS_ID__CREATED_AT_ASC - PROJECT_STATUS_BY_PROJECT_STATUS_ID__CREATED_AT_DESC - PROJECT_STATUS_BY_PROJECT_STATUS_ID__CREATED_BY_ASC - PROJECT_STATUS_BY_PROJECT_STATUS_ID__CREATED_BY_DESC - PROJECT_STATUS_BY_PROJECT_STATUS_ID__DESCRIPTION_ASC - PROJECT_STATUS_BY_PROJECT_STATUS_ID__DESCRIPTION_DESC - PROJECT_STATUS_BY_PROJECT_STATUS_ID__ID_ASC - PROJECT_STATUS_BY_PROJECT_STATUS_ID__ID_DESC - PROJECT_STATUS_BY_PROJECT_STATUS_ID__NAME_ASC - PROJECT_STATUS_BY_PROJECT_STATUS_ID__NAME_DESC - PROJECT_STATUS_BY_PROJECT_STATUS_ID__UPDATED_AT_ASC - PROJECT_STATUS_BY_PROJECT_STATUS_ID__UPDATED_AT_DESC - PROJECT_STATUS_BY_PROJECT_STATUS_ID__UPDATED_BY_ASC - PROJECT_STATUS_BY_PROJECT_STATUS_ID__UPDATED_BY_DESC - PROJECT_STATUS_ID_ASC - PROJECT_STATUS_ID_DESC + PROJECT_ATTACHMENTS_BY_ATTACHMENT_ID__COUNT_ASC + PROJECT_ATTACHMENTS_BY_ATTACHMENT_ID__COUNT_DESC UPDATED_AT_ASC UPDATED_AT_DESC UPDATED_BY_ASC @@ -4925,7 +5300,7 @@ type CifUser implements Node { ): AttachmentsConnection! """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByUpdatedBy( + attachmentsByProjectAttachmentArchivedByAndAttachmentId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -4948,7 +5323,7 @@ type CifUser implements Node { """ Indicates whether archived items should be included in the results or not. """ - includeArchived: IncludeArchivedOption = INHERIT + includeArchived: IncludeArchivedOption = NO """Only read the last `n` values of the set.""" last: Int @@ -4961,10 +5336,10 @@ type CifUser implements Node { """The method to use when ordering `Attachment`.""" orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - ): AttachmentsConnection! + ): CifUserAttachmentsByProjectAttachmentArchivedByAndAttachmentIdManyToManyConnection! - """Reads and enables pagination through a set of `ChangeStatus`.""" - changeStatusesByArchivedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByProjectAttachmentCreatedByAndAttachmentId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -4974,12 +5349,90 @@ type CifUser implements Node { """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeStatusCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeStatusFilter + filter: AttachmentFilter + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = NO + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + ): CifUserAttachmentsByProjectAttachmentCreatedByAndAttachmentIdManyToManyConnection! + + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByProjectAttachmentUpdatedByAndAttachmentId( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + 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 + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = NO + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + ): CifUserAttachmentsByProjectAttachmentUpdatedByAndAttachmentIdManyToManyConnection! + + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByUpdatedBy( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + 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 """Only read the first `n` values of the set.""" first: Int @@ -4998,12 +5451,12 @@ type CifUser implements Node { """ offset: Int - """The method to use when ordering `ChangeStatus`.""" - orderBy: [ChangeStatusesOrderBy!] = [PRIMARY_KEY_ASC] - ): ChangeStatusesConnection! + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + ): AttachmentsConnection! """Reads and enables pagination through a set of `ChangeStatus`.""" - changeStatusesByCreatedBy( + changeStatusesByArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -5042,7 +5495,7 @@ type CifUser implements Node { ): ChangeStatusesConnection! """Reads and enables pagination through a set of `ChangeStatus`.""" - changeStatusesByFormChangeCreatedByAndChangeStatus( + changeStatusesByCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -5065,7 +5518,7 @@ type CifUser implements Node { """ Indicates whether archived items should be included in the results or not. """ - includeArchived: IncludeArchivedOption = NO + includeArchived: IncludeArchivedOption = INHERIT """Only read the last `n` values of the set.""" last: Int @@ -5078,10 +5531,49 @@ type CifUser implements Node { """The method to use when ordering `ChangeStatus`.""" orderBy: [ChangeStatusesOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserChangeStatusesByFormChangeCreatedByAndChangeStatusManyToManyConnection! + ): ChangeStatusesConnection! """Reads and enables pagination through a set of `ChangeStatus`.""" - changeStatusesByFormChangeUpdatedByAndChangeStatus( + changeStatusesByFormChangeCreatedByAndChangeStatus( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ChangeStatusCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ChangeStatusFilter + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = NO + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `ChangeStatus`.""" + orderBy: [ChangeStatusesOrderBy!] = [PRIMARY_KEY_ASC] + ): CifUserChangeStatusesByFormChangeCreatedByAndChangeStatusManyToManyConnection! + + """Reads and enables pagination through a set of `ChangeStatus`.""" + changeStatusesByFormChangeUpdatedByAndChangeStatus( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -9458,7 +9950,7 @@ type CifUser implements Node { ): CifUserCifUsersByProjectArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectContactArchivedByAndCreatedBy( + cifUsersByProjectAttachmentArchivedByAndCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -9494,10 +9986,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectContactArchivedByAndCreatedByManyToManyConnection! + ): CifUserCifUsersByProjectAttachmentArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectContactArchivedByAndUpdatedBy( + cifUsersByProjectAttachmentArchivedByAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -9533,10 +10025,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectContactArchivedByAndUpdatedByManyToManyConnection! + ): CifUserCifUsersByProjectAttachmentArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectContactCreatedByAndArchivedBy( + cifUsersByProjectAttachmentCreatedByAndArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -9572,10 +10064,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectContactCreatedByAndArchivedByManyToManyConnection! + ): CifUserCifUsersByProjectAttachmentCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectContactCreatedByAndUpdatedBy( + cifUsersByProjectAttachmentCreatedByAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -9611,10 +10103,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectContactCreatedByAndUpdatedByManyToManyConnection! + ): CifUserCifUsersByProjectAttachmentCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectContactUpdatedByAndArchivedBy( + cifUsersByProjectAttachmentUpdatedByAndArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -9650,10 +10142,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectContactUpdatedByAndArchivedByManyToManyConnection! + ): CifUserCifUsersByProjectAttachmentUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectContactUpdatedByAndCreatedBy( + cifUsersByProjectAttachmentUpdatedByAndCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -9689,10 +10181,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectContactUpdatedByAndCreatedByManyToManyConnection! + ): CifUserCifUsersByProjectAttachmentUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectCreatedByAndArchivedBy( + cifUsersByProjectContactArchivedByAndCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -9728,10 +10220,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectCreatedByAndArchivedByManyToManyConnection! + ): CifUserCifUsersByProjectContactArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectCreatedByAndUpdatedBy( + cifUsersByProjectContactArchivedByAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -9767,10 +10259,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectCreatedByAndUpdatedByManyToManyConnection! + ): CifUserCifUsersByProjectContactArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectManagerArchivedByAndCifUserId( + cifUsersByProjectContactCreatedByAndArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -9806,10 +10298,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectManagerArchivedByAndCifUserIdManyToManyConnection! + ): CifUserCifUsersByProjectContactCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectManagerArchivedByAndCreatedBy( + cifUsersByProjectContactCreatedByAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -9845,10 +10337,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectManagerArchivedByAndCreatedByManyToManyConnection! + ): CifUserCifUsersByProjectContactCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectManagerArchivedByAndUpdatedBy( + cifUsersByProjectContactUpdatedByAndArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -9884,10 +10376,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectManagerArchivedByAndUpdatedByManyToManyConnection! + ): CifUserCifUsersByProjectContactUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectManagerCifUserIdAndArchivedBy( + cifUsersByProjectContactUpdatedByAndCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -9923,10 +10415,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectManagerCifUserIdAndArchivedByManyToManyConnection! + ): CifUserCifUsersByProjectContactUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectManagerCifUserIdAndCreatedBy( + cifUsersByProjectCreatedByAndArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -9962,10 +10454,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectManagerCifUserIdAndCreatedByManyToManyConnection! + ): CifUserCifUsersByProjectCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectManagerCifUserIdAndUpdatedBy( + cifUsersByProjectCreatedByAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -10001,10 +10493,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectManagerCifUserIdAndUpdatedByManyToManyConnection! + ): CifUserCifUsersByProjectCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectManagerCreatedByAndArchivedBy( + cifUsersByProjectManagerArchivedByAndCifUserId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -10040,10 +10532,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectManagerCreatedByAndArchivedByManyToManyConnection! + ): CifUserCifUsersByProjectManagerArchivedByAndCifUserIdManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectManagerCreatedByAndCifUserId( + cifUsersByProjectManagerArchivedByAndCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -10079,10 +10571,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectManagerCreatedByAndCifUserIdManyToManyConnection! + ): CifUserCifUsersByProjectManagerArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectManagerCreatedByAndUpdatedBy( + cifUsersByProjectManagerArchivedByAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -10118,10 +10610,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectManagerCreatedByAndUpdatedByManyToManyConnection! + ): CifUserCifUsersByProjectManagerArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectManagerLabelArchivedByAndCreatedBy( + cifUsersByProjectManagerCifUserIdAndArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -10157,10 +10649,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectManagerLabelArchivedByAndCreatedByManyToManyConnection! + ): CifUserCifUsersByProjectManagerCifUserIdAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectManagerLabelArchivedByAndUpdatedBy( + cifUsersByProjectManagerCifUserIdAndCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -10196,10 +10688,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectManagerLabelArchivedByAndUpdatedByManyToManyConnection! + ): CifUserCifUsersByProjectManagerCifUserIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectManagerLabelCreatedByAndArchivedBy( + cifUsersByProjectManagerCifUserIdAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -10235,10 +10727,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectManagerLabelCreatedByAndArchivedByManyToManyConnection! + ): CifUserCifUsersByProjectManagerCifUserIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectManagerLabelCreatedByAndUpdatedBy( + cifUsersByProjectManagerCreatedByAndArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -10274,10 +10766,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectManagerLabelCreatedByAndUpdatedByManyToManyConnection! + ): CifUserCifUsersByProjectManagerCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectManagerLabelUpdatedByAndArchivedBy( + cifUsersByProjectManagerCreatedByAndCifUserId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -10313,10 +10805,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectManagerLabelUpdatedByAndArchivedByManyToManyConnection! + ): CifUserCifUsersByProjectManagerCreatedByAndCifUserIdManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectManagerLabelUpdatedByAndCreatedBy( + cifUsersByProjectManagerCreatedByAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -10352,10 +10844,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectManagerLabelUpdatedByAndCreatedByManyToManyConnection! + ): CifUserCifUsersByProjectManagerCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectManagerUpdatedByAndArchivedBy( + cifUsersByProjectManagerLabelArchivedByAndCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -10391,10 +10883,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectManagerUpdatedByAndArchivedByManyToManyConnection! + ): CifUserCifUsersByProjectManagerLabelArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectManagerUpdatedByAndCifUserId( + cifUsersByProjectManagerLabelArchivedByAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -10430,10 +10922,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectManagerUpdatedByAndCifUserIdManyToManyConnection! + ): CifUserCifUsersByProjectManagerLabelArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectManagerUpdatedByAndCreatedBy( + cifUsersByProjectManagerLabelCreatedByAndArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -10469,10 +10961,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectManagerUpdatedByAndCreatedByManyToManyConnection! + ): CifUserCifUsersByProjectManagerLabelCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectRevisionAmendmentTypeArchivedByAndCreatedBy( + cifUsersByProjectManagerLabelCreatedByAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -10508,10 +11000,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectRevisionAmendmentTypeArchivedByAndCreatedByManyToManyConnection! + ): CifUserCifUsersByProjectManagerLabelCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectRevisionAmendmentTypeArchivedByAndUpdatedBy( + cifUsersByProjectManagerLabelUpdatedByAndArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -10547,10 +11039,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectRevisionAmendmentTypeArchivedByAndUpdatedByManyToManyConnection! + ): CifUserCifUsersByProjectManagerLabelUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectRevisionAmendmentTypeCreatedByAndArchivedBy( + cifUsersByProjectManagerLabelUpdatedByAndCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -10586,10 +11078,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectRevisionAmendmentTypeCreatedByAndArchivedByManyToManyConnection! + ): CifUserCifUsersByProjectManagerLabelUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectRevisionAmendmentTypeCreatedByAndUpdatedBy( + cifUsersByProjectManagerUpdatedByAndArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -10625,10 +11117,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectRevisionAmendmentTypeCreatedByAndUpdatedByManyToManyConnection! + ): CifUserCifUsersByProjectManagerUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectRevisionAmendmentTypeUpdatedByAndArchivedBy( + cifUsersByProjectManagerUpdatedByAndCifUserId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -10664,10 +11156,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectRevisionAmendmentTypeUpdatedByAndArchivedByManyToManyConnection! + ): CifUserCifUsersByProjectManagerUpdatedByAndCifUserIdManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectRevisionAmendmentTypeUpdatedByAndCreatedBy( + cifUsersByProjectManagerUpdatedByAndCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -10703,10 +11195,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectRevisionAmendmentTypeUpdatedByAndCreatedByManyToManyConnection! + ): CifUserCifUsersByProjectManagerUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectRevisionCreatedByAndUpdatedBy( + cifUsersByProjectRevisionAmendmentTypeArchivedByAndCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -10742,10 +11234,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectRevisionCreatedByAndUpdatedByManyToManyConnection! + ): CifUserCifUsersByProjectRevisionAmendmentTypeArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectRevisionUpdatedByAndCreatedBy( + cifUsersByProjectRevisionAmendmentTypeArchivedByAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -10781,10 +11273,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectRevisionUpdatedByAndCreatedByManyToManyConnection! + ): CifUserCifUsersByProjectRevisionAmendmentTypeArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectStatusArchivedByAndCreatedBy( + cifUsersByProjectRevisionAmendmentTypeCreatedByAndArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -10820,10 +11312,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectStatusArchivedByAndCreatedByManyToManyConnection! + ): CifUserCifUsersByProjectRevisionAmendmentTypeCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectStatusArchivedByAndUpdatedBy( + cifUsersByProjectRevisionAmendmentTypeCreatedByAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -10859,10 +11351,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectStatusArchivedByAndUpdatedByManyToManyConnection! + ): CifUserCifUsersByProjectRevisionAmendmentTypeCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectStatusCreatedByAndArchivedBy( + cifUsersByProjectRevisionAmendmentTypeUpdatedByAndArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -10898,10 +11390,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectStatusCreatedByAndArchivedByManyToManyConnection! + ): CifUserCifUsersByProjectRevisionAmendmentTypeUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectStatusCreatedByAndUpdatedBy( + cifUsersByProjectRevisionAmendmentTypeUpdatedByAndCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -10937,10 +11429,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectStatusCreatedByAndUpdatedByManyToManyConnection! + ): CifUserCifUsersByProjectRevisionAmendmentTypeUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectStatusUpdatedByAndArchivedBy( + cifUsersByProjectRevisionCreatedByAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -10976,10 +11468,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectStatusUpdatedByAndArchivedByManyToManyConnection! + ): CifUserCifUsersByProjectRevisionCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectStatusUpdatedByAndCreatedBy( + cifUsersByProjectRevisionUpdatedByAndCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -11015,10 +11507,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectStatusUpdatedByAndCreatedByManyToManyConnection! + ): CifUserCifUsersByProjectRevisionUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectTypeArchivedByAndCreatedBy( + cifUsersByProjectStatusArchivedByAndCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -11054,10 +11546,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectTypeArchivedByAndCreatedByManyToManyConnection! + ): CifUserCifUsersByProjectStatusArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectTypeArchivedByAndUpdatedBy( + cifUsersByProjectStatusArchivedByAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -11093,10 +11585,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectTypeArchivedByAndUpdatedByManyToManyConnection! + ): CifUserCifUsersByProjectStatusArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectTypeCreatedByAndArchivedBy( + cifUsersByProjectStatusCreatedByAndArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -11132,10 +11624,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectTypeCreatedByAndArchivedByManyToManyConnection! + ): CifUserCifUsersByProjectStatusCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectTypeCreatedByAndUpdatedBy( + cifUsersByProjectStatusCreatedByAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -11171,10 +11663,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectTypeCreatedByAndUpdatedByManyToManyConnection! + ): CifUserCifUsersByProjectStatusCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectTypeUpdatedByAndArchivedBy( + cifUsersByProjectStatusUpdatedByAndArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -11210,10 +11702,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectTypeUpdatedByAndArchivedByManyToManyConnection! + ): CifUserCifUsersByProjectStatusUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectTypeUpdatedByAndCreatedBy( + cifUsersByProjectStatusUpdatedByAndCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -11249,10 +11741,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectTypeUpdatedByAndCreatedByManyToManyConnection! + ): CifUserCifUsersByProjectStatusUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectUpdatedByAndArchivedBy( + cifUsersByProjectTypeArchivedByAndCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -11288,10 +11780,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectUpdatedByAndArchivedByManyToManyConnection! + ): CifUserCifUsersByProjectTypeArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByProjectUpdatedByAndCreatedBy( + cifUsersByProjectTypeArchivedByAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -11327,10 +11819,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByProjectUpdatedByAndCreatedByManyToManyConnection! + ): CifUserCifUsersByProjectTypeArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByReportTypeArchivedByAndCreatedBy( + cifUsersByProjectTypeCreatedByAndArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -11366,10 +11858,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByReportTypeArchivedByAndCreatedByManyToManyConnection! + ): CifUserCifUsersByProjectTypeCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByReportTypeArchivedByAndUpdatedBy( + cifUsersByProjectTypeCreatedByAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -11405,10 +11897,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByReportTypeArchivedByAndUpdatedByManyToManyConnection! + ): CifUserCifUsersByProjectTypeCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByReportTypeCreatedByAndArchivedBy( + cifUsersByProjectTypeUpdatedByAndArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -11444,10 +11936,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByReportTypeCreatedByAndArchivedByManyToManyConnection! + ): CifUserCifUsersByProjectTypeUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByReportTypeCreatedByAndUpdatedBy( + cifUsersByProjectTypeUpdatedByAndCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -11483,10 +11975,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByReportTypeCreatedByAndUpdatedByManyToManyConnection! + ): CifUserCifUsersByProjectTypeUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByReportTypeUpdatedByAndArchivedBy( + cifUsersByProjectUpdatedByAndArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -11522,10 +12014,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByReportTypeUpdatedByAndArchivedByManyToManyConnection! + ): CifUserCifUsersByProjectUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByReportTypeUpdatedByAndCreatedBy( + cifUsersByProjectUpdatedByAndCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -11561,10 +12053,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByReportTypeUpdatedByAndCreatedByManyToManyConnection! + ): CifUserCifUsersByProjectUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByReportingRequirementArchivedByAndCreatedBy( + cifUsersByReportTypeArchivedByAndCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -11600,10 +12092,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByReportingRequirementArchivedByAndCreatedByManyToManyConnection! + ): CifUserCifUsersByReportTypeArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByReportingRequirementArchivedByAndUpdatedBy( + cifUsersByReportTypeArchivedByAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -11639,10 +12131,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByReportingRequirementArchivedByAndUpdatedByManyToManyConnection! + ): CifUserCifUsersByReportTypeArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByReportingRequirementCreatedByAndArchivedBy( + cifUsersByReportTypeCreatedByAndArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -11678,10 +12170,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByReportingRequirementCreatedByAndArchivedByManyToManyConnection! + ): CifUserCifUsersByReportTypeCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByReportingRequirementCreatedByAndUpdatedBy( + cifUsersByReportTypeCreatedByAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -11717,10 +12209,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByReportingRequirementCreatedByAndUpdatedByManyToManyConnection! + ): CifUserCifUsersByReportTypeCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByReportingRequirementUpdatedByAndArchivedBy( + cifUsersByReportTypeUpdatedByAndArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -11756,10 +12248,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByReportingRequirementUpdatedByAndArchivedByManyToManyConnection! + ): CifUserCifUsersByReportTypeUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByReportingRequirementUpdatedByAndCreatedBy( + cifUsersByReportTypeUpdatedByAndCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -11795,10 +12287,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByReportingRequirementUpdatedByAndCreatedByManyToManyConnection! + ): CifUserCifUsersByReportTypeUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByRevisionStatusArchivedByAndCreatedBy( + cifUsersByReportingRequirementArchivedByAndCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -11834,10 +12326,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByRevisionStatusArchivedByAndCreatedByManyToManyConnection! + ): CifUserCifUsersByReportingRequirementArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByRevisionStatusArchivedByAndUpdatedBy( + cifUsersByReportingRequirementArchivedByAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -11873,10 +12365,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByRevisionStatusArchivedByAndUpdatedByManyToManyConnection! + ): CifUserCifUsersByReportingRequirementArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByRevisionStatusCreatedByAndArchivedBy( + cifUsersByReportingRequirementCreatedByAndArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -11912,10 +12404,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByRevisionStatusCreatedByAndArchivedByManyToManyConnection! + ): CifUserCifUsersByReportingRequirementCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByRevisionStatusCreatedByAndUpdatedBy( + cifUsersByReportingRequirementCreatedByAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -11951,10 +12443,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByRevisionStatusCreatedByAndUpdatedByManyToManyConnection! + ): CifUserCifUsersByReportingRequirementCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByRevisionStatusUpdatedByAndArchivedBy( + cifUsersByReportingRequirementUpdatedByAndArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -11990,10 +12482,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByRevisionStatusUpdatedByAndArchivedByManyToManyConnection! + ): CifUserCifUsersByReportingRequirementUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByRevisionStatusUpdatedByAndCreatedBy( + cifUsersByReportingRequirementUpdatedByAndCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -12029,10 +12521,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByRevisionStatusUpdatedByAndCreatedByManyToManyConnection! + ): CifUserCifUsersByReportingRequirementUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByRevisionTypeArchivedByAndCreatedBy( + cifUsersByRevisionStatusArchivedByAndCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -12068,10 +12560,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByRevisionTypeArchivedByAndCreatedByManyToManyConnection! + ): CifUserCifUsersByRevisionStatusArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByRevisionTypeArchivedByAndUpdatedBy( + cifUsersByRevisionStatusArchivedByAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -12107,10 +12599,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByRevisionTypeArchivedByAndUpdatedByManyToManyConnection! + ): CifUserCifUsersByRevisionStatusArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByRevisionTypeCreatedByAndArchivedBy( + cifUsersByRevisionStatusCreatedByAndArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -12146,10 +12638,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByRevisionTypeCreatedByAndArchivedByManyToManyConnection! + ): CifUserCifUsersByRevisionStatusCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByRevisionTypeCreatedByAndUpdatedBy( + cifUsersByRevisionStatusCreatedByAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -12185,10 +12677,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByRevisionTypeCreatedByAndUpdatedByManyToManyConnection! + ): CifUserCifUsersByRevisionStatusCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByRevisionTypeUpdatedByAndArchivedBy( + cifUsersByRevisionStatusUpdatedByAndArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -12224,10 +12716,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByRevisionTypeUpdatedByAndArchivedByManyToManyConnection! + ): CifUserCifUsersByRevisionStatusUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByRevisionTypeUpdatedByAndCreatedBy( + cifUsersByRevisionStatusUpdatedByAndCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -12263,10 +12755,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersByRevisionTypeUpdatedByAndCreatedByManyToManyConnection! + ): CifUserCifUsersByRevisionStatusUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersBySectorArchivedByAndCreatedBy( + cifUsersByRevisionTypeArchivedByAndCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -12302,10 +12794,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersBySectorArchivedByAndCreatedByManyToManyConnection! + ): CifUserCifUsersByRevisionTypeArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersBySectorArchivedByAndUpdatedBy( + cifUsersByRevisionTypeArchivedByAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -12341,10 +12833,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersBySectorArchivedByAndUpdatedByManyToManyConnection! + ): CifUserCifUsersByRevisionTypeArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersBySectorCreatedByAndArchivedBy( + cifUsersByRevisionTypeCreatedByAndArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -12380,10 +12872,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersBySectorCreatedByAndArchivedByManyToManyConnection! + ): CifUserCifUsersByRevisionTypeCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersBySectorCreatedByAndUpdatedBy( + cifUsersByRevisionTypeCreatedByAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -12419,10 +12911,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersBySectorCreatedByAndUpdatedByManyToManyConnection! + ): CifUserCifUsersByRevisionTypeCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersBySectorUpdatedByAndArchivedBy( + cifUsersByRevisionTypeUpdatedByAndArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -12458,10 +12950,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersBySectorUpdatedByAndArchivedByManyToManyConnection! + ): CifUserCifUsersByRevisionTypeUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersBySectorUpdatedByAndCreatedBy( + cifUsersByRevisionTypeUpdatedByAndCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -12497,10 +12989,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserCifUsersBySectorUpdatedByAndCreatedByManyToManyConnection! + ): CifUserCifUsersByRevisionTypeUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByUpdatedBy( + cifUsersBySectorArchivedByAndCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -12523,7 +13015,7 @@ type CifUser implements Node { """ Indicates whether archived items should be included in the results or not. """ - includeArchived: IncludeArchivedOption = INHERIT + includeArchived: IncludeArchivedOption = NO """Only read the last `n` values of the set.""" last: Int @@ -12536,10 +13028,10 @@ type CifUser implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUsersConnection! + ): CifUserCifUsersBySectorArchivedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Contact`.""" - contactsByArchivedBy( + """Reads and enables pagination through a set of `CifUser`.""" + cifUsersBySectorArchivedByAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -12549,12 +13041,12 @@ type CifUser implements Node { """ A condition to be used in determining which values should be returned by the collection. """ - condition: ContactCondition + condition: CifUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ContactFilter + filter: CifUserFilter """Only read the first `n` values of the set.""" first: Int @@ -12562,7 +13054,7 @@ type CifUser implements Node { """ Indicates whether archived items should be included in the results or not. """ - includeArchived: IncludeArchivedOption = INHERIT + includeArchived: IncludeArchivedOption = NO """Only read the last `n` values of the set.""" last: Int @@ -12573,12 +13065,12 @@ type CifUser implements Node { """ offset: Int - """The method to use when ordering `Contact`.""" - orderBy: [ContactsOrderBy!] = [PRIMARY_KEY_ASC] - ): ContactsConnection! + """The method to use when ordering `CifUser`.""" + orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] + ): CifUserCifUsersBySectorArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Contact`.""" - contactsByCreatedBy( + """Reads and enables pagination through a set of `CifUser`.""" + cifUsersBySectorCreatedByAndArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -12588,12 +13080,12 @@ type CifUser implements Node { """ A condition to be used in determining which values should be returned by the collection. """ - condition: ContactCondition + condition: CifUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ContactFilter + filter: CifUserFilter """Only read the first `n` values of the set.""" first: Int @@ -12601,7 +13093,7 @@ type CifUser implements Node { """ Indicates whether archived items should be included in the results or not. """ - includeArchived: IncludeArchivedOption = INHERIT + includeArchived: IncludeArchivedOption = NO """Only read the last `n` values of the set.""" last: Int @@ -12612,12 +13104,12 @@ type CifUser implements Node { """ offset: Int - """The method to use when ordering `Contact`.""" - orderBy: [ContactsOrderBy!] = [PRIMARY_KEY_ASC] - ): ContactsConnection! + """The method to use when ordering `CifUser`.""" + orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] + ): CifUserCifUsersBySectorCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Contact`.""" - contactsByProjectContactArchivedByAndContactId( + """Reads and enables pagination through a set of `CifUser`.""" + cifUsersBySectorCreatedByAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -12627,12 +13119,12 @@ type CifUser implements Node { """ A condition to be used in determining which values should be returned by the collection. """ - condition: ContactCondition + condition: CifUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ContactFilter + filter: CifUserFilter """Only read the first `n` values of the set.""" first: Int @@ -12651,12 +13143,129 @@ type CifUser implements Node { """ offset: Int - """The method to use when ordering `Contact`.""" - orderBy: [ContactsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserContactsByProjectContactArchivedByAndContactIdManyToManyConnection! + """The method to use when ordering `CifUser`.""" + orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] + ): CifUserCifUsersBySectorCreatedByAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CifUser`.""" + cifUsersBySectorUpdatedByAndArchivedBy( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CifUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CifUserFilter + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = NO + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `CifUser`.""" + orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] + ): CifUserCifUsersBySectorUpdatedByAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `CifUser`.""" + cifUsersBySectorUpdatedByAndCreatedBy( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CifUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CifUserFilter + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = NO + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `CifUser`.""" + orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] + ): CifUserCifUsersBySectorUpdatedByAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CifUser`.""" + cifUsersByUpdatedBy( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CifUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CifUserFilter + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = INHERIT + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `CifUser`.""" + orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] + ): CifUsersConnection! """Reads and enables pagination through a set of `Contact`.""" - contactsByProjectContactCreatedByAndContactId( + contactsByArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -12679,7 +13288,7 @@ type CifUser implements Node { """ Indicates whether archived items should be included in the results or not. """ - includeArchived: IncludeArchivedOption = NO + includeArchived: IncludeArchivedOption = INHERIT """Only read the last `n` values of the set.""" last: Int @@ -12692,10 +13301,127 @@ type CifUser implements Node { """The method to use when ordering `Contact`.""" orderBy: [ContactsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserContactsByProjectContactCreatedByAndContactIdManyToManyConnection! + ): ContactsConnection! """Reads and enables pagination through a set of `Contact`.""" - contactsByProjectContactUpdatedByAndContactId( + contactsByCreatedBy( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ContactCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ContactFilter + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = INHERIT + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `Contact`.""" + orderBy: [ContactsOrderBy!] = [PRIMARY_KEY_ASC] + ): ContactsConnection! + + """Reads and enables pagination through a set of `Contact`.""" + contactsByProjectContactArchivedByAndContactId( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ContactCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ContactFilter + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = NO + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `Contact`.""" + orderBy: [ContactsOrderBy!] = [PRIMARY_KEY_ASC] + ): CifUserContactsByProjectContactArchivedByAndContactIdManyToManyConnection! + + """Reads and enables pagination through a set of `Contact`.""" + contactsByProjectContactCreatedByAndContactId( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ContactCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ContactFilter + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = NO + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `Contact`.""" + orderBy: [ContactsOrderBy!] = [PRIMARY_KEY_ASC] + ): CifUserContactsByProjectContactCreatedByAndContactIdManyToManyConnection! + + """Reads and enables pagination through a set of `Contact`.""" + contactsByProjectContactUpdatedByAndContactId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -14665,6 +15391,123 @@ type CifUser implements Node { orderBy: [PaymentsOrderBy!] = [PRIMARY_KEY_ASC] ): PaymentsConnection! + """Reads and enables pagination through a set of `ProjectAttachment`.""" + projectAttachmentsByArchivedBy( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ProjectAttachmentCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ProjectAttachmentFilter + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = INHERIT + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `ProjectAttachment`.""" + orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectAttachmentsConnection! + + """Reads and enables pagination through a set of `ProjectAttachment`.""" + projectAttachmentsByCreatedBy( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ProjectAttachmentCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ProjectAttachmentFilter + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = INHERIT + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `ProjectAttachment`.""" + orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectAttachmentsConnection! + + """Reads and enables pagination through a set of `ProjectAttachment`.""" + projectAttachmentsByUpdatedBy( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ProjectAttachmentCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ProjectAttachmentFilter + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = INHERIT + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `ProjectAttachment`.""" + orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectAttachmentsConnection! + """Reads and enables pagination through a set of `ProjectContact`.""" projectContactsByArchivedBy( """Read all values in the set after (below) this cursor.""" @@ -15612,7 +16455,46 @@ type CifUser implements Node { ): ProjectStatusesConnection! """Reads and enables pagination through a set of `ProjectStatus`.""" - projectStatusesByAttachmentArchivedByAndProjectStatusId( + projectStatusesByCreatedBy( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ProjectStatusCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ProjectStatusFilter + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = INHERIT + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `ProjectStatus`.""" + orderBy: [ProjectStatusesOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectStatusesConnection! + + """Reads and enables pagination through a set of `ProjectStatus`.""" + projectStatusesByFundingStreamProjectStatusArchivedByAndProjectStatusId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -15648,10 +16530,10 @@ type CifUser implements Node { """The method to use when ordering `ProjectStatus`.""" orderBy: [ProjectStatusesOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectStatusesByAttachmentArchivedByAndProjectStatusIdManyToManyConnection! + ): CifUserProjectStatusesByFundingStreamProjectStatusArchivedByAndProjectStatusIdManyToManyConnection! """Reads and enables pagination through a set of `ProjectStatus`.""" - projectStatusesByAttachmentCreatedByAndProjectStatusId( + projectStatusesByFundingStreamProjectStatusCreatedByAndProjectStatusId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -15687,10 +16569,10 @@ type CifUser implements Node { """The method to use when ordering `ProjectStatus`.""" orderBy: [ProjectStatusesOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectStatusesByAttachmentCreatedByAndProjectStatusIdManyToManyConnection! + ): CifUserProjectStatusesByFundingStreamProjectStatusCreatedByAndProjectStatusIdManyToManyConnection! """Reads and enables pagination through a set of `ProjectStatus`.""" - projectStatusesByAttachmentUpdatedByAndProjectStatusId( + projectStatusesByFundingStreamProjectStatusUpdatedByAndProjectStatusId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -15726,10 +16608,10 @@ type CifUser implements Node { """The method to use when ordering `ProjectStatus`.""" orderBy: [ProjectStatusesOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectStatusesByAttachmentUpdatedByAndProjectStatusIdManyToManyConnection! + ): CifUserProjectStatusesByFundingStreamProjectStatusUpdatedByAndProjectStatusIdManyToManyConnection! """Reads and enables pagination through a set of `ProjectStatus`.""" - projectStatusesByCreatedBy( + projectStatusesByProjectArchivedByAndProjectStatusId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -15752,7 +16634,7 @@ type CifUser implements Node { """ Indicates whether archived items should be included in the results or not. """ - includeArchived: IncludeArchivedOption = INHERIT + includeArchived: IncludeArchivedOption = NO """Only read the last `n` values of the set.""" last: Int @@ -15765,10 +16647,10 @@ type CifUser implements Node { """The method to use when ordering `ProjectStatus`.""" orderBy: [ProjectStatusesOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectStatusesConnection! + ): CifUserProjectStatusesByProjectArchivedByAndProjectStatusIdManyToManyConnection! """Reads and enables pagination through a set of `ProjectStatus`.""" - projectStatusesByFundingStreamProjectStatusArchivedByAndProjectStatusId( + projectStatusesByProjectCreatedByAndProjectStatusId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -15804,10 +16686,10 @@ type CifUser implements Node { """The method to use when ordering `ProjectStatus`.""" orderBy: [ProjectStatusesOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectStatusesByFundingStreamProjectStatusArchivedByAndProjectStatusIdManyToManyConnection! + ): CifUserProjectStatusesByProjectCreatedByAndProjectStatusIdManyToManyConnection! """Reads and enables pagination through a set of `ProjectStatus`.""" - projectStatusesByFundingStreamProjectStatusCreatedByAndProjectStatusId( + projectStatusesByProjectUpdatedByAndProjectStatusId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -15843,10 +16725,10 @@ type CifUser implements Node { """The method to use when ordering `ProjectStatus`.""" orderBy: [ProjectStatusesOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectStatusesByFundingStreamProjectStatusCreatedByAndProjectStatusIdManyToManyConnection! + ): CifUserProjectStatusesByProjectUpdatedByAndProjectStatusIdManyToManyConnection! """Reads and enables pagination through a set of `ProjectStatus`.""" - projectStatusesByFundingStreamProjectStatusUpdatedByAndProjectStatusId( + projectStatusesByUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -15869,7 +16751,7 @@ type CifUser implements Node { """ Indicates whether archived items should be included in the results or not. """ - includeArchived: IncludeArchivedOption = NO + includeArchived: IncludeArchivedOption = INHERIT """Only read the last `n` values of the set.""" last: Int @@ -15882,10 +16764,10 @@ type CifUser implements Node { """The method to use when ordering `ProjectStatus`.""" orderBy: [ProjectStatusesOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectStatusesByFundingStreamProjectStatusUpdatedByAndProjectStatusIdManyToManyConnection! + ): ProjectStatusesConnection! - """Reads and enables pagination through a set of `ProjectStatus`.""" - projectStatusesByProjectArchivedByAndProjectStatusId( + """Reads and enables pagination through a set of `ProjectType`.""" + projectTypesByArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -15895,12 +16777,12 @@ type CifUser implements Node { """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectStatusCondition + condition: ProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectStatusFilter + filter: ProjectTypeFilter """Only read the first `n` values of the set.""" first: Int @@ -15908,7 +16790,7 @@ type CifUser implements Node { """ Indicates whether archived items should be included in the results or not. """ - includeArchived: IncludeArchivedOption = NO + includeArchived: IncludeArchivedOption = INHERIT """Only read the last `n` values of the set.""" last: Int @@ -15919,12 +16801,12 @@ type CifUser implements Node { """ offset: Int - """The method to use when ordering `ProjectStatus`.""" - orderBy: [ProjectStatusesOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectStatusesByProjectArchivedByAndProjectStatusIdManyToManyConnection! + """The method to use when ordering `ProjectType`.""" + orderBy: [ProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectTypesConnection! - """Reads and enables pagination through a set of `ProjectStatus`.""" - projectStatusesByProjectCreatedByAndProjectStatusId( + """Reads and enables pagination through a set of `ProjectType`.""" + projectTypesByCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -15934,12 +16816,12 @@ type CifUser implements Node { """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectStatusCondition + condition: ProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectStatusFilter + filter: ProjectTypeFilter """Only read the first `n` values of the set.""" first: Int @@ -15947,7 +16829,7 @@ type CifUser implements Node { """ Indicates whether archived items should be included in the results or not. """ - includeArchived: IncludeArchivedOption = NO + includeArchived: IncludeArchivedOption = INHERIT """Only read the last `n` values of the set.""" last: Int @@ -15958,12 +16840,12 @@ type CifUser implements Node { """ offset: Int - """The method to use when ordering `ProjectStatus`.""" - orderBy: [ProjectStatusesOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectStatusesByProjectCreatedByAndProjectStatusIdManyToManyConnection! + """The method to use when ordering `ProjectType`.""" + orderBy: [ProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectTypesConnection! - """Reads and enables pagination through a set of `ProjectStatus`.""" - projectStatusesByProjectUpdatedByAndProjectStatusId( + """Reads and enables pagination through a set of `ProjectType`.""" + projectTypesByProjectArchivedByAndProjectType( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -15973,12 +16855,12 @@ type CifUser implements Node { """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectStatusCondition + condition: ProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectStatusFilter + filter: ProjectTypeFilter """Only read the first `n` values of the set.""" first: Int @@ -15997,12 +16879,12 @@ type CifUser implements Node { """ offset: Int - """The method to use when ordering `ProjectStatus`.""" - orderBy: [ProjectStatusesOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectStatusesByProjectUpdatedByAndProjectStatusIdManyToManyConnection! + """The method to use when ordering `ProjectType`.""" + orderBy: [ProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + ): CifUserProjectTypesByProjectArchivedByAndProjectTypeManyToManyConnection! - """Reads and enables pagination through a set of `ProjectStatus`.""" - projectStatusesByUpdatedBy( + """Reads and enables pagination through a set of `ProjectType`.""" + projectTypesByProjectCreatedByAndProjectType( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -16012,12 +16894,12 @@ type CifUser implements Node { """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectStatusCondition + condition: ProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectStatusFilter + filter: ProjectTypeFilter """Only read the first `n` values of the set.""" first: Int @@ -16025,7 +16907,7 @@ type CifUser implements Node { """ Indicates whether archived items should be included in the results or not. """ - includeArchived: IncludeArchivedOption = INHERIT + includeArchived: IncludeArchivedOption = NO """Only read the last `n` values of the set.""" last: Int @@ -16036,12 +16918,12 @@ type CifUser implements Node { """ offset: Int - """The method to use when ordering `ProjectStatus`.""" - orderBy: [ProjectStatusesOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectStatusesConnection! + """The method to use when ordering `ProjectType`.""" + orderBy: [ProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + ): CifUserProjectTypesByProjectCreatedByAndProjectTypeManyToManyConnection! """Reads and enables pagination through a set of `ProjectType`.""" - projectTypesByArchivedBy( + projectTypesByProjectUpdatedByAndProjectType( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -16064,7 +16946,7 @@ type CifUser implements Node { """ Indicates whether archived items should be included in the results or not. """ - includeArchived: IncludeArchivedOption = INHERIT + includeArchived: IncludeArchivedOption = NO """Only read the last `n` values of the set.""" last: Int @@ -16077,10 +16959,10 @@ type CifUser implements Node { """The method to use when ordering `ProjectType`.""" orderBy: [ProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectTypesConnection! + ): CifUserProjectTypesByProjectUpdatedByAndProjectTypeManyToManyConnection! """Reads and enables pagination through a set of `ProjectType`.""" - projectTypesByCreatedBy( + projectTypesByUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -16118,8 +17000,8 @@ type CifUser implements Node { orderBy: [ProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] ): ProjectTypesConnection! - """Reads and enables pagination through a set of `ProjectType`.""" - projectTypesByProjectArchivedByAndProjectType( + """Reads and enables pagination through a set of `Project`.""" + projectsByAdditionalFundingSourceArchivedByAndProjectId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -16129,12 +17011,12 @@ type CifUser implements Node { """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectTypeCondition + condition: ProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectTypeFilter + filter: ProjectFilter """Only read the first `n` values of the set.""" first: Int @@ -16153,12 +17035,12 @@ type CifUser implements Node { """ offset: Int - """The method to use when ordering `ProjectType`.""" - orderBy: [ProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectTypesByProjectArchivedByAndProjectTypeManyToManyConnection! + """The method to use when ordering `Project`.""" + orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] + ): CifUserProjectsByAdditionalFundingSourceArchivedByAndProjectIdManyToManyConnection! - """Reads and enables pagination through a set of `ProjectType`.""" - projectTypesByProjectCreatedByAndProjectType( + """Reads and enables pagination through a set of `Project`.""" + projectsByAdditionalFundingSourceCreatedByAndProjectId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -16168,12 +17050,12 @@ type CifUser implements Node { """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectTypeCondition + condition: ProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectTypeFilter + filter: ProjectFilter """Only read the first `n` values of the set.""" first: Int @@ -16192,12 +17074,12 @@ type CifUser implements Node { """ offset: Int - """The method to use when ordering `ProjectType`.""" - orderBy: [ProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectTypesByProjectCreatedByAndProjectTypeManyToManyConnection! + """The method to use when ordering `Project`.""" + orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] + ): CifUserProjectsByAdditionalFundingSourceCreatedByAndProjectIdManyToManyConnection! - """Reads and enables pagination through a set of `ProjectType`.""" - projectTypesByProjectUpdatedByAndProjectType( + """Reads and enables pagination through a set of `Project`.""" + projectsByAdditionalFundingSourceUpdatedByAndProjectId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -16207,12 +17089,12 @@ type CifUser implements Node { """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectTypeCondition + condition: ProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectTypeFilter + filter: ProjectFilter """Only read the first `n` values of the set.""" first: Int @@ -16231,12 +17113,12 @@ type CifUser implements Node { """ offset: Int - """The method to use when ordering `ProjectType`.""" - orderBy: [ProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectTypesByProjectUpdatedByAndProjectTypeManyToManyConnection! + """The method to use when ordering `Project`.""" + orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] + ): CifUserProjectsByAdditionalFundingSourceUpdatedByAndProjectIdManyToManyConnection! - """Reads and enables pagination through a set of `ProjectType`.""" - projectTypesByUpdatedBy( + """Reads and enables pagination through a set of `Project`.""" + projectsByArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -16246,12 +17128,12 @@ type CifUser implements Node { """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectTypeCondition + condition: ProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectTypeFilter + filter: ProjectFilter """Only read the first `n` values of the set.""" first: Int @@ -16270,12 +17152,51 @@ type CifUser implements Node { """ offset: Int - """The method to use when ordering `ProjectType`.""" - orderBy: [ProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectTypesConnection! + """The method to use when ordering `Project`.""" + orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectsConnection! """Reads and enables pagination through a set of `Project`.""" - projectsByAdditionalFundingSourceArchivedByAndProjectId( + projectsByCreatedBy( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ProjectCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ProjectFilter + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = INHERIT + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `Project`.""" + orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectsConnection! + + """Reads and enables pagination through a set of `Project`.""" + projectsByFundingParameterArchivedByAndProjectId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -16311,10 +17232,10 @@ type CifUser implements Node { """The method to use when ordering `Project`.""" orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectsByAdditionalFundingSourceArchivedByAndProjectIdManyToManyConnection! + ): CifUserProjectsByFundingParameterArchivedByAndProjectIdManyToManyConnection! """Reads and enables pagination through a set of `Project`.""" - projectsByAdditionalFundingSourceCreatedByAndProjectId( + projectsByFundingParameterCreatedByAndProjectId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -16350,10 +17271,10 @@ type CifUser implements Node { """The method to use when ordering `Project`.""" orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectsByAdditionalFundingSourceCreatedByAndProjectIdManyToManyConnection! + ): CifUserProjectsByFundingParameterCreatedByAndProjectIdManyToManyConnection! """Reads and enables pagination through a set of `Project`.""" - projectsByAdditionalFundingSourceUpdatedByAndProjectId( + projectsByFundingParameterUpdatedByAndProjectId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -16389,10 +17310,10 @@ type CifUser implements Node { """The method to use when ordering `Project`.""" orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectsByAdditionalFundingSourceUpdatedByAndProjectIdManyToManyConnection! + ): CifUserProjectsByFundingParameterUpdatedByAndProjectIdManyToManyConnection! """Reads and enables pagination through a set of `Project`.""" - projectsByArchivedBy( + projectsByProjectAttachmentArchivedByAndProjectId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -16415,7 +17336,7 @@ type CifUser implements Node { """ Indicates whether archived items should be included in the results or not. """ - includeArchived: IncludeArchivedOption = INHERIT + includeArchived: IncludeArchivedOption = NO """Only read the last `n` values of the set.""" last: Int @@ -16428,10 +17349,10 @@ type CifUser implements Node { """The method to use when ordering `Project`.""" orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectsConnection! + ): CifUserProjectsByProjectAttachmentArchivedByAndProjectIdManyToManyConnection! """Reads and enables pagination through a set of `Project`.""" - projectsByAttachmentArchivedByAndProjectId( + projectsByProjectAttachmentCreatedByAndProjectId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -16467,10 +17388,10 @@ type CifUser implements Node { """The method to use when ordering `Project`.""" orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectsByAttachmentArchivedByAndProjectIdManyToManyConnection! + ): CifUserProjectsByProjectAttachmentCreatedByAndProjectIdManyToManyConnection! """Reads and enables pagination through a set of `Project`.""" - projectsByAttachmentCreatedByAndProjectId( + projectsByProjectAttachmentUpdatedByAndProjectId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -16506,10 +17427,10 @@ type CifUser implements Node { """The method to use when ordering `Project`.""" orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectsByAttachmentCreatedByAndProjectIdManyToManyConnection! + ): CifUserProjectsByProjectAttachmentUpdatedByAndProjectIdManyToManyConnection! """Reads and enables pagination through a set of `Project`.""" - projectsByAttachmentUpdatedByAndProjectId( + projectsByProjectContactArchivedByAndProjectId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -16545,10 +17466,10 @@ type CifUser implements Node { """The method to use when ordering `Project`.""" orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectsByAttachmentUpdatedByAndProjectIdManyToManyConnection! + ): CifUserProjectsByProjectContactArchivedByAndProjectIdManyToManyConnection! """Reads and enables pagination through a set of `Project`.""" - projectsByCreatedBy( + projectsByProjectContactCreatedByAndProjectId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -16571,7 +17492,7 @@ type CifUser implements Node { """ Indicates whether archived items should be included in the results or not. """ - includeArchived: IncludeArchivedOption = INHERIT + includeArchived: IncludeArchivedOption = NO """Only read the last `n` values of the set.""" last: Int @@ -16584,10 +17505,10 @@ type CifUser implements Node { """The method to use when ordering `Project`.""" orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectsConnection! + ): CifUserProjectsByProjectContactCreatedByAndProjectIdManyToManyConnection! """Reads and enables pagination through a set of `Project`.""" - projectsByFundingParameterArchivedByAndProjectId( + projectsByProjectContactUpdatedByAndProjectId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -16623,10 +17544,10 @@ type CifUser implements Node { """The method to use when ordering `Project`.""" orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectsByFundingParameterArchivedByAndProjectIdManyToManyConnection! + ): CifUserProjectsByProjectContactUpdatedByAndProjectIdManyToManyConnection! """Reads and enables pagination through a set of `Project`.""" - projectsByFundingParameterCreatedByAndProjectId( + projectsByProjectManagerArchivedByAndProjectId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -16662,10 +17583,49 @@ type CifUser implements Node { """The method to use when ordering `Project`.""" orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectsByFundingParameterCreatedByAndProjectIdManyToManyConnection! + ): CifUserProjectsByProjectManagerArchivedByAndProjectIdManyToManyConnection! """Reads and enables pagination through a set of `Project`.""" - projectsByFundingParameterUpdatedByAndProjectId( + projectsByProjectManagerCifUserIdAndProjectId( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ProjectCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ProjectFilter + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = NO + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `Project`.""" + orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] + ): CifUserProjectsByProjectManagerCifUserIdAndProjectIdManyToManyConnection! + + """Reads and enables pagination through a set of `Project`.""" + projectsByProjectManagerCreatedByAndProjectId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -16701,49 +17661,10 @@ type CifUser implements Node { """The method to use when ordering `Project`.""" orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectsByFundingParameterUpdatedByAndProjectIdManyToManyConnection! - - """Reads and enables pagination through a set of `Project`.""" - projectsByProjectContactArchivedByAndProjectId( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ProjectCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ProjectFilter - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = NO - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `Project`.""" - orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectsByProjectContactArchivedByAndProjectIdManyToManyConnection! + ): CifUserProjectsByProjectManagerCreatedByAndProjectIdManyToManyConnection! """Reads and enables pagination through a set of `Project`.""" - projectsByProjectContactCreatedByAndProjectId( + projectsByProjectManagerUpdatedByAndProjectId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -16779,10 +17700,10 @@ type CifUser implements Node { """The method to use when ordering `Project`.""" orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectsByProjectContactCreatedByAndProjectIdManyToManyConnection! + ): CifUserProjectsByProjectManagerUpdatedByAndProjectIdManyToManyConnection! """Reads and enables pagination through a set of `Project`.""" - projectsByProjectContactUpdatedByAndProjectId( + projectsByProjectRevisionCreatedByAndProjectId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -16818,10 +17739,10 @@ type CifUser implements Node { """The method to use when ordering `Project`.""" orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectsByProjectContactUpdatedByAndProjectIdManyToManyConnection! + ): CifUserProjectsByProjectRevisionCreatedByAndProjectIdManyToManyConnection! """Reads and enables pagination through a set of `Project`.""" - projectsByProjectManagerArchivedByAndProjectId( + projectsByProjectRevisionUpdatedByAndProjectId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -16857,10 +17778,10 @@ type CifUser implements Node { """The method to use when ordering `Project`.""" orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectsByProjectManagerArchivedByAndProjectIdManyToManyConnection! + ): CifUserProjectsByProjectRevisionUpdatedByAndProjectIdManyToManyConnection! """Reads and enables pagination through a set of `Project`.""" - projectsByProjectManagerCifUserIdAndProjectId( + projectsByReportingRequirementArchivedByAndProjectId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -16896,10 +17817,10 @@ type CifUser implements Node { """The method to use when ordering `Project`.""" orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectsByProjectManagerCifUserIdAndProjectIdManyToManyConnection! + ): CifUserProjectsByReportingRequirementArchivedByAndProjectIdManyToManyConnection! """Reads and enables pagination through a set of `Project`.""" - projectsByProjectManagerCreatedByAndProjectId( + projectsByReportingRequirementCreatedByAndProjectId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -16935,10 +17856,10 @@ type CifUser implements Node { """The method to use when ordering `Project`.""" orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectsByProjectManagerCreatedByAndProjectIdManyToManyConnection! + ): CifUserProjectsByReportingRequirementCreatedByAndProjectIdManyToManyConnection! """Reads and enables pagination through a set of `Project`.""" - projectsByProjectManagerUpdatedByAndProjectId( + projectsByReportingRequirementUpdatedByAndProjectId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -16974,10 +17895,10 @@ type CifUser implements Node { """The method to use when ordering `Project`.""" orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectsByProjectManagerUpdatedByAndProjectIdManyToManyConnection! + ): CifUserProjectsByReportingRequirementUpdatedByAndProjectIdManyToManyConnection! """Reads and enables pagination through a set of `Project`.""" - projectsByProjectRevisionCreatedByAndProjectId( + projectsByUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -17000,7 +17921,7 @@ type CifUser implements Node { """ Indicates whether archived items should be included in the results or not. """ - includeArchived: IncludeArchivedOption = NO + includeArchived: IncludeArchivedOption = INHERIT """Only read the last `n` values of the set.""" last: Int @@ -17013,10 +17934,10 @@ type CifUser implements Node { """The method to use when ordering `Project`.""" orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectsByProjectRevisionCreatedByAndProjectIdManyToManyConnection! + ): ProjectsConnection! - """Reads and enables pagination through a set of `Project`.""" - projectsByProjectRevisionUpdatedByAndProjectId( + """Reads and enables pagination through a set of `ReportType`.""" + reportTypesByArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -17026,12 +17947,12 @@ type CifUser implements Node { """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectCondition + condition: ReportTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectFilter + filter: ReportTypeFilter """Only read the first `n` values of the set.""" first: Int @@ -17039,7 +17960,7 @@ type CifUser implements Node { """ Indicates whether archived items should be included in the results or not. """ - includeArchived: IncludeArchivedOption = NO + includeArchived: IncludeArchivedOption = INHERIT """Only read the last `n` values of the set.""" last: Int @@ -17050,12 +17971,12 @@ type CifUser implements Node { """ offset: Int - """The method to use when ordering `Project`.""" - orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectsByProjectRevisionUpdatedByAndProjectIdManyToManyConnection! + """The method to use when ordering `ReportType`.""" + orderBy: [ReportTypesOrderBy!] = [PRIMARY_KEY_ASC] + ): ReportTypesConnection! - """Reads and enables pagination through a set of `Project`.""" - projectsByReportingRequirementArchivedByAndProjectId( + """Reads and enables pagination through a set of `ReportType`.""" + reportTypesByCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -17065,12 +17986,12 @@ type CifUser implements Node { """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectCondition + condition: ReportTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectFilter + filter: ReportTypeFilter """Only read the first `n` values of the set.""" first: Int @@ -17078,7 +17999,7 @@ type CifUser implements Node { """ Indicates whether archived items should be included in the results or not. """ - includeArchived: IncludeArchivedOption = NO + includeArchived: IncludeArchivedOption = INHERIT """Only read the last `n` values of the set.""" last: Int @@ -17089,12 +18010,12 @@ type CifUser implements Node { """ offset: Int - """The method to use when ordering `Project`.""" - orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectsByReportingRequirementArchivedByAndProjectIdManyToManyConnection! + """The method to use when ordering `ReportType`.""" + orderBy: [ReportTypesOrderBy!] = [PRIMARY_KEY_ASC] + ): ReportTypesConnection! - """Reads and enables pagination through a set of `Project`.""" - projectsByReportingRequirementCreatedByAndProjectId( + """Reads and enables pagination through a set of `ReportType`.""" + reportTypesByReportingRequirementArchivedByAndReportType( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -17104,12 +18025,12 @@ type CifUser implements Node { """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectCondition + condition: ReportTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectFilter + filter: ReportTypeFilter """Only read the first `n` values of the set.""" first: Int @@ -17128,12 +18049,12 @@ type CifUser implements Node { """ offset: Int - """The method to use when ordering `Project`.""" - orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectsByReportingRequirementCreatedByAndProjectIdManyToManyConnection! + """The method to use when ordering `ReportType`.""" + orderBy: [ReportTypesOrderBy!] = [PRIMARY_KEY_ASC] + ): CifUserReportTypesByReportingRequirementArchivedByAndReportTypeManyToManyConnection! - """Reads and enables pagination through a set of `Project`.""" - projectsByReportingRequirementUpdatedByAndProjectId( + """Reads and enables pagination through a set of `ReportType`.""" + reportTypesByReportingRequirementCreatedByAndReportType( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -17143,12 +18064,12 @@ type CifUser implements Node { """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectCondition + condition: ReportTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectFilter + filter: ReportTypeFilter """Only read the first `n` values of the set.""" first: Int @@ -17167,51 +18088,12 @@ type CifUser implements Node { """ offset: Int - """The method to use when ordering `Project`.""" - orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserProjectsByReportingRequirementUpdatedByAndProjectIdManyToManyConnection! - - """Reads and enables pagination through a set of `Project`.""" - projectsByUpdatedBy( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ProjectCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ProjectFilter - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = INHERIT - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `Project`.""" - orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectsConnection! + """The method to use when ordering `ReportType`.""" + orderBy: [ReportTypesOrderBy!] = [PRIMARY_KEY_ASC] + ): CifUserReportTypesByReportingRequirementCreatedByAndReportTypeManyToManyConnection! """Reads and enables pagination through a set of `ReportType`.""" - reportTypesByArchivedBy( + reportTypesByReportingRequirementUpdatedByAndReportType( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -17234,7 +18116,7 @@ type CifUser implements Node { """ Indicates whether archived items should be included in the results or not. """ - includeArchived: IncludeArchivedOption = INHERIT + includeArchived: IncludeArchivedOption = NO """Only read the last `n` values of the set.""" last: Int @@ -17247,10 +18129,10 @@ type CifUser implements Node { """The method to use when ordering `ReportType`.""" orderBy: [ReportTypesOrderBy!] = [PRIMARY_KEY_ASC] - ): ReportTypesConnection! + ): CifUserReportTypesByReportingRequirementUpdatedByAndReportTypeManyToManyConnection! """Reads and enables pagination through a set of `ReportType`.""" - reportTypesByCreatedBy( + reportTypesByUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -17288,8 +18170,8 @@ type CifUser implements Node { orderBy: [ReportTypesOrderBy!] = [PRIMARY_KEY_ASC] ): ReportTypesConnection! - """Reads and enables pagination through a set of `ReportType`.""" - reportTypesByReportingRequirementArchivedByAndReportType( + """Reads and enables pagination through a set of `ReportingRequirement`.""" + reportingRequirementsByArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -17299,12 +18181,12 @@ type CifUser implements Node { """ A condition to be used in determining which values should be returned by the collection. """ - condition: ReportTypeCondition + condition: ReportingRequirementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ReportTypeFilter + filter: ReportingRequirementFilter """Only read the first `n` values of the set.""" first: Int @@ -17312,7 +18194,7 @@ type CifUser implements Node { """ Indicates whether archived items should be included in the results or not. """ - includeArchived: IncludeArchivedOption = NO + includeArchived: IncludeArchivedOption = INHERIT """Only read the last `n` values of the set.""" last: Int @@ -17323,12 +18205,12 @@ type CifUser implements Node { """ offset: Int - """The method to use when ordering `ReportType`.""" - orderBy: [ReportTypesOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserReportTypesByReportingRequirementArchivedByAndReportTypeManyToManyConnection! + """The method to use when ordering `ReportingRequirement`.""" + orderBy: [ReportingRequirementsOrderBy!] = [PRIMARY_KEY_ASC] + ): ReportingRequirementsConnection! - """Reads and enables pagination through a set of `ReportType`.""" - reportTypesByReportingRequirementCreatedByAndReportType( + """Reads and enables pagination through a set of `ReportingRequirement`.""" + reportingRequirementsByCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -17338,12 +18220,12 @@ type CifUser implements Node { """ A condition to be used in determining which values should be returned by the collection. """ - condition: ReportTypeCondition + condition: ReportingRequirementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ReportTypeFilter + filter: ReportingRequirementFilter """Only read the first `n` values of the set.""" first: Int @@ -17351,7 +18233,7 @@ type CifUser implements Node { """ Indicates whether archived items should be included in the results or not. """ - includeArchived: IncludeArchivedOption = NO + includeArchived: IncludeArchivedOption = INHERIT """Only read the last `n` values of the set.""" last: Int @@ -17362,12 +18244,12 @@ type CifUser implements Node { """ offset: Int - """The method to use when ordering `ReportType`.""" - orderBy: [ReportTypesOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserReportTypesByReportingRequirementCreatedByAndReportTypeManyToManyConnection! + """The method to use when ordering `ReportingRequirement`.""" + orderBy: [ReportingRequirementsOrderBy!] = [PRIMARY_KEY_ASC] + ): ReportingRequirementsConnection! - """Reads and enables pagination through a set of `ReportType`.""" - reportTypesByReportingRequirementUpdatedByAndReportType( + """Reads and enables pagination through a set of `ReportingRequirement`.""" + reportingRequirementsByEmissionIntensityReportArchivedByAndReportingRequirementId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -17377,12 +18259,12 @@ type CifUser implements Node { """ A condition to be used in determining which values should be returned by the collection. """ - condition: ReportTypeCondition + condition: ReportingRequirementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ReportTypeFilter + filter: ReportingRequirementFilter """Only read the first `n` values of the set.""" first: Int @@ -17401,12 +18283,12 @@ type CifUser implements Node { """ offset: Int - """The method to use when ordering `ReportType`.""" - orderBy: [ReportTypesOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserReportTypesByReportingRequirementUpdatedByAndReportTypeManyToManyConnection! + """The method to use when ordering `ReportingRequirement`.""" + orderBy: [ReportingRequirementsOrderBy!] = [PRIMARY_KEY_ASC] + ): CifUserReportingRequirementsByEmissionIntensityReportArchivedByAndReportingRequirementIdManyToManyConnection! - """Reads and enables pagination through a set of `ReportType`.""" - reportTypesByUpdatedBy( + """Reads and enables pagination through a set of `ReportingRequirement`.""" + reportingRequirementsByEmissionIntensityReportCreatedByAndReportingRequirementId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -17416,12 +18298,12 @@ type CifUser implements Node { """ A condition to be used in determining which values should be returned by the collection. """ - condition: ReportTypeCondition + condition: ReportingRequirementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ReportTypeFilter + filter: ReportingRequirementFilter """Only read the first `n` values of the set.""" first: Int @@ -17429,7 +18311,7 @@ type CifUser implements Node { """ Indicates whether archived items should be included in the results or not. """ - includeArchived: IncludeArchivedOption = INHERIT + includeArchived: IncludeArchivedOption = NO """Only read the last `n` values of the set.""" last: Int @@ -17440,12 +18322,12 @@ type CifUser implements Node { """ offset: Int - """The method to use when ordering `ReportType`.""" - orderBy: [ReportTypesOrderBy!] = [PRIMARY_KEY_ASC] - ): ReportTypesConnection! + """The method to use when ordering `ReportingRequirement`.""" + orderBy: [ReportingRequirementsOrderBy!] = [PRIMARY_KEY_ASC] + ): CifUserReportingRequirementsByEmissionIntensityReportCreatedByAndReportingRequirementIdManyToManyConnection! """Reads and enables pagination through a set of `ReportingRequirement`.""" - reportingRequirementsByArchivedBy( + reportingRequirementsByEmissionIntensityReportUpdatedByAndReportingRequirementId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -17468,7 +18350,7 @@ type CifUser implements Node { """ Indicates whether archived items should be included in the results or not. """ - includeArchived: IncludeArchivedOption = INHERIT + includeArchived: IncludeArchivedOption = NO """Only read the last `n` values of the set.""" last: Int @@ -17481,10 +18363,10 @@ type CifUser implements Node { """The method to use when ordering `ReportingRequirement`.""" orderBy: [ReportingRequirementsOrderBy!] = [PRIMARY_KEY_ASC] - ): ReportingRequirementsConnection! + ): CifUserReportingRequirementsByEmissionIntensityReportUpdatedByAndReportingRequirementIdManyToManyConnection! """Reads and enables pagination through a set of `ReportingRequirement`.""" - reportingRequirementsByCreatedBy( + reportingRequirementsByMilestoneReportArchivedByAndReportingRequirementId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -17507,7 +18389,7 @@ type CifUser implements Node { """ Indicates whether archived items should be included in the results or not. """ - includeArchived: IncludeArchivedOption = INHERIT + includeArchived: IncludeArchivedOption = NO """Only read the last `n` values of the set.""" last: Int @@ -17520,10 +18402,10 @@ type CifUser implements Node { """The method to use when ordering `ReportingRequirement`.""" orderBy: [ReportingRequirementsOrderBy!] = [PRIMARY_KEY_ASC] - ): ReportingRequirementsConnection! + ): CifUserReportingRequirementsByMilestoneReportArchivedByAndReportingRequirementIdManyToManyConnection! """Reads and enables pagination through a set of `ReportingRequirement`.""" - reportingRequirementsByEmissionIntensityReportArchivedByAndReportingRequirementId( + reportingRequirementsByMilestoneReportCreatedByAndReportingRequirementId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -17559,166 +18441,10 @@ type CifUser implements Node { """The method to use when ordering `ReportingRequirement`.""" orderBy: [ReportingRequirementsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserReportingRequirementsByEmissionIntensityReportArchivedByAndReportingRequirementIdManyToManyConnection! + ): CifUserReportingRequirementsByMilestoneReportCreatedByAndReportingRequirementIdManyToManyConnection! """Reads and enables pagination through a set of `ReportingRequirement`.""" - reportingRequirementsByEmissionIntensityReportCreatedByAndReportingRequirementId( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ReportingRequirementCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ReportingRequirementFilter - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = NO - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `ReportingRequirement`.""" - orderBy: [ReportingRequirementsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserReportingRequirementsByEmissionIntensityReportCreatedByAndReportingRequirementIdManyToManyConnection! - - """Reads and enables pagination through a set of `ReportingRequirement`.""" - reportingRequirementsByEmissionIntensityReportUpdatedByAndReportingRequirementId( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ReportingRequirementCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ReportingRequirementFilter - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = NO - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `ReportingRequirement`.""" - orderBy: [ReportingRequirementsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserReportingRequirementsByEmissionIntensityReportUpdatedByAndReportingRequirementIdManyToManyConnection! - - """Reads and enables pagination through a set of `ReportingRequirement`.""" - reportingRequirementsByMilestoneReportArchivedByAndReportingRequirementId( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ReportingRequirementCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ReportingRequirementFilter - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = NO - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `ReportingRequirement`.""" - orderBy: [ReportingRequirementsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserReportingRequirementsByMilestoneReportArchivedByAndReportingRequirementIdManyToManyConnection! - - """Reads and enables pagination through a set of `ReportingRequirement`.""" - reportingRequirementsByMilestoneReportCreatedByAndReportingRequirementId( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ReportingRequirementCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ReportingRequirementFilter - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = NO - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `ReportingRequirement`.""" - orderBy: [ReportingRequirementsOrderBy!] = [PRIMARY_KEY_ASC] - ): CifUserReportingRequirementsByMilestoneReportCreatedByAndReportingRequirementIdManyToManyConnection! - - """Reads and enables pagination through a set of `ReportingRequirement`.""" - reportingRequirementsByMilestoneReportUpdatedByAndReportingRequirementId( + reportingRequirementsByMilestoneReportUpdatedByAndReportingRequirementId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -18984,31 +19710,36 @@ type CifUserAmendmentTypesByProjectRevisionAmendmentTypeUpdatedByAndAmendmentTyp } """ -A connection to a list of `ChangeStatus` values, with data from `FormChange`. +A connection to a list of `Attachment` values, with data from `ProjectAttachment`. """ -type CifUserChangeStatusesByFormChangeCreatedByAndChangeStatusManyToManyConnection { +type CifUserAttachmentsByProjectAttachmentArchivedByAndAttachmentIdManyToManyConnection { """ - A list of edges which contains the `ChangeStatus`, info from the `FormChange`, and the cursor to aid in pagination. + A list of edges which contains the `Attachment`, info from the `ProjectAttachment`, and the cursor to aid in pagination. """ - edges: [CifUserChangeStatusesByFormChangeCreatedByAndChangeStatusManyToManyEdge!]! + edges: [CifUserAttachmentsByProjectAttachmentArchivedByAndAttachmentIdManyToManyEdge!]! - """A list of `ChangeStatus` objects.""" - nodes: [ChangeStatus]! + """A list of `Attachment` objects.""" + nodes: [Attachment]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `ChangeStatus` you could get from the connection.""" + """The count of *all* `Attachment` you could get from the connection.""" totalCount: Int! } -"""A `ChangeStatus` edge in the connection, with data from `FormChange`.""" -type CifUserChangeStatusesByFormChangeCreatedByAndChangeStatusManyToManyEdge { +""" +A `Attachment` edge in the connection, with data from `ProjectAttachment`. +""" +type CifUserAttachmentsByProjectAttachmentArchivedByAndAttachmentIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """Reads and enables pagination through a set of `FormChange`.""" - formChangesByChangeStatus( + """The `Attachment` at the end of the edge.""" + node: Attachment + + """Reads and enables pagination through a set of `ProjectAttachment`.""" + projectAttachmentsByAttachmentId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -19018,16 +19749,21 @@ type CifUserChangeStatusesByFormChangeCreatedByAndChangeStatusManyToManyEdge { """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormChangeCondition + condition: ProjectAttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormChangeFilter + filter: ProjectAttachmentFilter """Only read the first `n` values of the set.""" first: Int + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = NO + """Only read the last `n` values of the set.""" last: Int @@ -19037,22 +19773,157 @@ type CifUserChangeStatusesByFormChangeCreatedByAndChangeStatusManyToManyEdge { """ offset: Int - """The method to use when ordering `FormChange`.""" - orderBy: [FormChangesOrderBy!] = [PRIMARY_KEY_ASC] - ): FormChangesConnection! + """The method to use when ordering `ProjectAttachment`.""" + orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectAttachmentsConnection! +} - """The `ChangeStatus` at the end of the edge.""" - node: ChangeStatus +""" +A connection to a list of `Attachment` values, with data from `ProjectAttachment`. +""" +type CifUserAttachmentsByProjectAttachmentCreatedByAndAttachmentIdManyToManyConnection { + """ + A list of edges which contains the `Attachment`, info from the `ProjectAttachment`, and the cursor to aid in pagination. + """ + edges: [CifUserAttachmentsByProjectAttachmentCreatedByAndAttachmentIdManyToManyEdge!]! + + """A list of `Attachment` objects.""" + nodes: [Attachment]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `Attachment` you could get from the connection.""" + totalCount: Int! +} + +""" +A `Attachment` edge in the connection, with data from `ProjectAttachment`. +""" +type CifUserAttachmentsByProjectAttachmentCreatedByAndAttachmentIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Attachment` at the end of the edge.""" + node: Attachment + + """Reads and enables pagination through a set of `ProjectAttachment`.""" + projectAttachmentsByAttachmentId( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ProjectAttachmentCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ProjectAttachmentFilter + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = NO + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `ProjectAttachment`.""" + orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectAttachmentsConnection! +} + +""" +A connection to a list of `Attachment` values, with data from `ProjectAttachment`. +""" +type CifUserAttachmentsByProjectAttachmentUpdatedByAndAttachmentIdManyToManyConnection { + """ + A list of edges which contains the `Attachment`, info from the `ProjectAttachment`, and the cursor to aid in pagination. + """ + edges: [CifUserAttachmentsByProjectAttachmentUpdatedByAndAttachmentIdManyToManyEdge!]! + + """A list of `Attachment` objects.""" + nodes: [Attachment]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `Attachment` you could get from the connection.""" + totalCount: Int! +} + +""" +A `Attachment` edge in the connection, with data from `ProjectAttachment`. +""" +type CifUserAttachmentsByProjectAttachmentUpdatedByAndAttachmentIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Attachment` at the end of the edge.""" + node: Attachment + + """Reads and enables pagination through a set of `ProjectAttachment`.""" + projectAttachmentsByAttachmentId( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ProjectAttachmentCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ProjectAttachmentFilter + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = NO + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `ProjectAttachment`.""" + orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectAttachmentsConnection! } """ A connection to a list of `ChangeStatus` values, with data from `FormChange`. """ -type CifUserChangeStatusesByFormChangeUpdatedByAndChangeStatusManyToManyConnection { +type CifUserChangeStatusesByFormChangeCreatedByAndChangeStatusManyToManyConnection { """ A list of edges which contains the `ChangeStatus`, info from the `FormChange`, and the cursor to aid in pagination. """ - edges: [CifUserChangeStatusesByFormChangeUpdatedByAndChangeStatusManyToManyEdge!]! + edges: [CifUserChangeStatusesByFormChangeCreatedByAndChangeStatusManyToManyEdge!]! """A list of `ChangeStatus` objects.""" nodes: [ChangeStatus]! @@ -19065,7 +19936,69 @@ type CifUserChangeStatusesByFormChangeUpdatedByAndChangeStatusManyToManyConnecti } """A `ChangeStatus` edge in the connection, with data from `FormChange`.""" -type CifUserChangeStatusesByFormChangeUpdatedByAndChangeStatusManyToManyEdge { +type CifUserChangeStatusesByFormChangeCreatedByAndChangeStatusManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """Reads and enables pagination through a set of `FormChange`.""" + formChangesByChangeStatus( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormChangeCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormChangeFilter + + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `FormChange`.""" + orderBy: [FormChangesOrderBy!] = [PRIMARY_KEY_ASC] + ): FormChangesConnection! + + """The `ChangeStatus` at the end of the edge.""" + node: ChangeStatus +} + +""" +A connection to a list of `ChangeStatus` values, with data from `FormChange`. +""" +type CifUserChangeStatusesByFormChangeUpdatedByAndChangeStatusManyToManyConnection { + """ + A list of edges which contains the `ChangeStatus`, info from the `FormChange`, and the cursor to aid in pagination. + """ + edges: [CifUserChangeStatusesByFormChangeUpdatedByAndChangeStatusManyToManyEdge!]! + + """A list of `ChangeStatus` objects.""" + nodes: [ChangeStatus]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `ChangeStatus` you could get from the connection.""" + totalCount: Int! +} + +"""A `ChangeStatus` edge in the connection, with data from `FormChange`.""" +type CifUserChangeStatusesByFormChangeUpdatedByAndChangeStatusManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -26384,13 +27317,13 @@ type CifUserCifUsersByProjectArchivedByAndUpdatedByManyToManyEdge { } """ -A connection to a list of `CifUser` values, with data from `ProjectContact`. +A connection to a list of `CifUser` values, with data from `ProjectAttachment`. """ -type CifUserCifUsersByProjectContactArchivedByAndCreatedByManyToManyConnection { +type CifUserCifUsersByProjectAttachmentArchivedByAndCreatedByManyToManyConnection { """ - A list of edges which contains the `CifUser`, info from the `ProjectContact`, and the cursor to aid in pagination. + A list of edges which contains the `CifUser`, info from the `ProjectAttachment`, and the cursor to aid in pagination. """ - edges: [CifUserCifUsersByProjectContactArchivedByAndCreatedByManyToManyEdge!]! + edges: [CifUserCifUsersByProjectAttachmentArchivedByAndCreatedByManyToManyEdge!]! """A list of `CifUser` objects.""" nodes: [CifUser]! @@ -26402,16 +27335,18 @@ type CifUserCifUsersByProjectContactArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CifUser` edge in the connection, with data from `ProjectContact`.""" -type CifUserCifUsersByProjectContactArchivedByAndCreatedByManyToManyEdge { +""" +A `CifUser` edge in the connection, with data from `ProjectAttachment`. +""" +type CifUserCifUsersByProjectAttachmentArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CifUser` at the end of the edge.""" node: CifUser - """Reads and enables pagination through a set of `ProjectContact`.""" - projectContactsByCreatedBy( + """Reads and enables pagination through a set of `ProjectAttachment`.""" + projectAttachmentsByCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -26421,12 +27356,12 @@ type CifUserCifUsersByProjectContactArchivedByAndCreatedByManyToManyEdge { """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectContactCondition + condition: ProjectAttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectContactFilter + filter: ProjectAttachmentFilter """Only read the first `n` values of the set.""" first: Int @@ -26445,19 +27380,19 @@ type CifUserCifUsersByProjectContactArchivedByAndCreatedByManyToManyEdge { """ offset: Int - """The method to use when ordering `ProjectContact`.""" - orderBy: [ProjectContactsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectContactsConnection! + """The method to use when ordering `ProjectAttachment`.""" + orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectAttachmentsConnection! } """ -A connection to a list of `CifUser` values, with data from `ProjectContact`. +A connection to a list of `CifUser` values, with data from `ProjectAttachment`. """ -type CifUserCifUsersByProjectContactArchivedByAndUpdatedByManyToManyConnection { +type CifUserCifUsersByProjectAttachmentArchivedByAndUpdatedByManyToManyConnection { """ - A list of edges which contains the `CifUser`, info from the `ProjectContact`, and the cursor to aid in pagination. + A list of edges which contains the `CifUser`, info from the `ProjectAttachment`, and the cursor to aid in pagination. """ - edges: [CifUserCifUsersByProjectContactArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CifUserCifUsersByProjectAttachmentArchivedByAndUpdatedByManyToManyEdge!]! """A list of `CifUser` objects.""" nodes: [CifUser]! @@ -26469,16 +27404,18 @@ type CifUserCifUsersByProjectContactArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CifUser` edge in the connection, with data from `ProjectContact`.""" -type CifUserCifUsersByProjectContactArchivedByAndUpdatedByManyToManyEdge { +""" +A `CifUser` edge in the connection, with data from `ProjectAttachment`. +""" +type CifUserCifUsersByProjectAttachmentArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CifUser` at the end of the edge.""" node: CifUser - """Reads and enables pagination through a set of `ProjectContact`.""" - projectContactsByUpdatedBy( + """Reads and enables pagination through a set of `ProjectAttachment`.""" + projectAttachmentsByUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -26488,12 +27425,12 @@ type CifUserCifUsersByProjectContactArchivedByAndUpdatedByManyToManyEdge { """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectContactCondition + condition: ProjectAttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectContactFilter + filter: ProjectAttachmentFilter """Only read the first `n` values of the set.""" first: Int @@ -26512,19 +27449,19 @@ type CifUserCifUsersByProjectContactArchivedByAndUpdatedByManyToManyEdge { """ offset: Int - """The method to use when ordering `ProjectContact`.""" - orderBy: [ProjectContactsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectContactsConnection! + """The method to use when ordering `ProjectAttachment`.""" + orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectAttachmentsConnection! } """ -A connection to a list of `CifUser` values, with data from `ProjectContact`. +A connection to a list of `CifUser` values, with data from `ProjectAttachment`. """ -type CifUserCifUsersByProjectContactCreatedByAndArchivedByManyToManyConnection { +type CifUserCifUsersByProjectAttachmentCreatedByAndArchivedByManyToManyConnection { """ - A list of edges which contains the `CifUser`, info from the `ProjectContact`, and the cursor to aid in pagination. + A list of edges which contains the `CifUser`, info from the `ProjectAttachment`, and the cursor to aid in pagination. """ - edges: [CifUserCifUsersByProjectContactCreatedByAndArchivedByManyToManyEdge!]! + edges: [CifUserCifUsersByProjectAttachmentCreatedByAndArchivedByManyToManyEdge!]! """A list of `CifUser` objects.""" nodes: [CifUser]! @@ -26536,16 +27473,18 @@ type CifUserCifUsersByProjectContactCreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CifUser` edge in the connection, with data from `ProjectContact`.""" -type CifUserCifUsersByProjectContactCreatedByAndArchivedByManyToManyEdge { +""" +A `CifUser` edge in the connection, with data from `ProjectAttachment`. +""" +type CifUserCifUsersByProjectAttachmentCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CifUser` at the end of the edge.""" node: CifUser - """Reads and enables pagination through a set of `ProjectContact`.""" - projectContactsByArchivedBy( + """Reads and enables pagination through a set of `ProjectAttachment`.""" + projectAttachmentsByArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -26555,12 +27494,12 @@ type CifUserCifUsersByProjectContactCreatedByAndArchivedByManyToManyEdge { """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectContactCondition + condition: ProjectAttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectContactFilter + filter: ProjectAttachmentFilter """Only read the first `n` values of the set.""" first: Int @@ -26579,19 +27518,226 @@ type CifUserCifUsersByProjectContactCreatedByAndArchivedByManyToManyEdge { """ offset: Int - """The method to use when ordering `ProjectContact`.""" - orderBy: [ProjectContactsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectContactsConnection! + """The method to use when ordering `ProjectAttachment`.""" + orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectAttachmentsConnection! +} + +""" +A connection to a list of `CifUser` values, with data from `ProjectAttachment`. +""" +type CifUserCifUsersByProjectAttachmentCreatedByAndUpdatedByManyToManyConnection { + """ + A list of edges which contains the `CifUser`, info from the `ProjectAttachment`, and the cursor to aid in pagination. + """ + edges: [CifUserCifUsersByProjectAttachmentCreatedByAndUpdatedByManyToManyEdge!]! + + """A list of `CifUser` objects.""" + nodes: [CifUser]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CifUser` you could get from the connection.""" + totalCount: Int! +} + +""" +A `CifUser` edge in the connection, with data from `ProjectAttachment`. +""" +type CifUserCifUsersByProjectAttachmentCreatedByAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CifUser` at the end of the edge.""" + node: CifUser + + """Reads and enables pagination through a set of `ProjectAttachment`.""" + projectAttachmentsByUpdatedBy( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ProjectAttachmentCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ProjectAttachmentFilter + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = NO + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `ProjectAttachment`.""" + orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectAttachmentsConnection! +} + +""" +A connection to a list of `CifUser` values, with data from `ProjectAttachment`. +""" +type CifUserCifUsersByProjectAttachmentUpdatedByAndArchivedByManyToManyConnection { + """ + A list of edges which contains the `CifUser`, info from the `ProjectAttachment`, and the cursor to aid in pagination. + """ + edges: [CifUserCifUsersByProjectAttachmentUpdatedByAndArchivedByManyToManyEdge!]! + + """A list of `CifUser` objects.""" + nodes: [CifUser]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CifUser` you could get from the connection.""" + totalCount: Int! +} + +""" +A `CifUser` edge in the connection, with data from `ProjectAttachment`. +""" +type CifUserCifUsersByProjectAttachmentUpdatedByAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CifUser` at the end of the edge.""" + node: CifUser + + """Reads and enables pagination through a set of `ProjectAttachment`.""" + projectAttachmentsByArchivedBy( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ProjectAttachmentCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ProjectAttachmentFilter + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = NO + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `ProjectAttachment`.""" + orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectAttachmentsConnection! +} + +""" +A connection to a list of `CifUser` values, with data from `ProjectAttachment`. +""" +type CifUserCifUsersByProjectAttachmentUpdatedByAndCreatedByManyToManyConnection { + """ + A list of edges which contains the `CifUser`, info from the `ProjectAttachment`, and the cursor to aid in pagination. + """ + edges: [CifUserCifUsersByProjectAttachmentUpdatedByAndCreatedByManyToManyEdge!]! + + """A list of `CifUser` objects.""" + nodes: [CifUser]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CifUser` you could get from the connection.""" + totalCount: Int! +} + +""" +A `CifUser` edge in the connection, with data from `ProjectAttachment`. +""" +type CifUserCifUsersByProjectAttachmentUpdatedByAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CifUser` at the end of the edge.""" + node: CifUser + + """Reads and enables pagination through a set of `ProjectAttachment`.""" + projectAttachmentsByCreatedBy( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ProjectAttachmentCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ProjectAttachmentFilter + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = NO + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `ProjectAttachment`.""" + orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectAttachmentsConnection! } """ A connection to a list of `CifUser` values, with data from `ProjectContact`. """ -type CifUserCifUsersByProjectContactCreatedByAndUpdatedByManyToManyConnection { +type CifUserCifUsersByProjectContactArchivedByAndCreatedByManyToManyConnection { """ A list of edges which contains the `CifUser`, info from the `ProjectContact`, and the cursor to aid in pagination. """ - edges: [CifUserCifUsersByProjectContactCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CifUserCifUsersByProjectContactArchivedByAndCreatedByManyToManyEdge!]! """A list of `CifUser` objects.""" nodes: [CifUser]! @@ -26604,7 +27750,7 @@ type CifUserCifUsersByProjectContactCreatedByAndUpdatedByManyToManyConnection { } """A `CifUser` edge in the connection, with data from `ProjectContact`.""" -type CifUserCifUsersByProjectContactCreatedByAndUpdatedByManyToManyEdge { +type CifUserCifUsersByProjectContactArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -26612,7 +27758,7 @@ type CifUserCifUsersByProjectContactCreatedByAndUpdatedByManyToManyEdge { node: CifUser """Reads and enables pagination through a set of `ProjectContact`.""" - projectContactsByUpdatedBy( + projectContactsByCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -26654,11 +27800,11 @@ type CifUserCifUsersByProjectContactCreatedByAndUpdatedByManyToManyEdge { """ A connection to a list of `CifUser` values, with data from `ProjectContact`. """ -type CifUserCifUsersByProjectContactUpdatedByAndArchivedByManyToManyConnection { +type CifUserCifUsersByProjectContactArchivedByAndUpdatedByManyToManyConnection { """ A list of edges which contains the `CifUser`, info from the `ProjectContact`, and the cursor to aid in pagination. """ - edges: [CifUserCifUsersByProjectContactUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CifUserCifUsersByProjectContactArchivedByAndUpdatedByManyToManyEdge!]! """A list of `CifUser` objects.""" nodes: [CifUser]! @@ -26671,7 +27817,74 @@ type CifUserCifUsersByProjectContactUpdatedByAndArchivedByManyToManyConnection { } """A `CifUser` edge in the connection, with data from `ProjectContact`.""" -type CifUserCifUsersByProjectContactUpdatedByAndArchivedByManyToManyEdge { +type CifUserCifUsersByProjectContactArchivedByAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CifUser` at the end of the edge.""" + node: CifUser + + """Reads and enables pagination through a set of `ProjectContact`.""" + projectContactsByUpdatedBy( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ProjectContactCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ProjectContactFilter + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = NO + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `ProjectContact`.""" + orderBy: [ProjectContactsOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectContactsConnection! +} + +""" +A connection to a list of `CifUser` values, with data from `ProjectContact`. +""" +type CifUserCifUsersByProjectContactCreatedByAndArchivedByManyToManyConnection { + """ + A list of edges which contains the `CifUser`, info from the `ProjectContact`, and the cursor to aid in pagination. + """ + edges: [CifUserCifUsersByProjectContactCreatedByAndArchivedByManyToManyEdge!]! + + """A list of `CifUser` objects.""" + nodes: [CifUser]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CifUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CifUser` edge in the connection, with data from `ProjectContact`.""" +type CifUserCifUsersByProjectContactCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -26721,11 +27934,11 @@ type CifUserCifUsersByProjectContactUpdatedByAndArchivedByManyToManyEdge { """ A connection to a list of `CifUser` values, with data from `ProjectContact`. """ -type CifUserCifUsersByProjectContactUpdatedByAndCreatedByManyToManyConnection { +type CifUserCifUsersByProjectContactCreatedByAndUpdatedByManyToManyConnection { """ A list of edges which contains the `CifUser`, info from the `ProjectContact`, and the cursor to aid in pagination. """ - edges: [CifUserCifUsersByProjectContactUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CifUserCifUsersByProjectContactCreatedByAndUpdatedByManyToManyEdge!]! """A list of `CifUser` objects.""" nodes: [CifUser]! @@ -26738,7 +27951,7 @@ type CifUserCifUsersByProjectContactUpdatedByAndCreatedByManyToManyConnection { } """A `CifUser` edge in the connection, with data from `ProjectContact`.""" -type CifUserCifUsersByProjectContactUpdatedByAndCreatedByManyToManyEdge { +type CifUserCifUsersByProjectContactCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -26746,7 +27959,7 @@ type CifUserCifUsersByProjectContactUpdatedByAndCreatedByManyToManyEdge { node: CifUser """Reads and enables pagination through a set of `ProjectContact`.""" - projectContactsByCreatedBy( + projectContactsByUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -26785,12 +27998,14 @@ type CifUserCifUsersByProjectContactUpdatedByAndCreatedByManyToManyEdge { ): ProjectContactsConnection! } -"""A connection to a list of `CifUser` values, with data from `Project`.""" -type CifUserCifUsersByProjectCreatedByAndArchivedByManyToManyConnection { +""" +A connection to a list of `CifUser` values, with data from `ProjectContact`. +""" +type CifUserCifUsersByProjectContactUpdatedByAndArchivedByManyToManyConnection { """ - A list of edges which contains the `CifUser`, info from the `Project`, and the cursor to aid in pagination. + A list of edges which contains the `CifUser`, info from the `ProjectContact`, and the cursor to aid in pagination. """ - edges: [CifUserCifUsersByProjectCreatedByAndArchivedByManyToManyEdge!]! + edges: [CifUserCifUsersByProjectContactUpdatedByAndArchivedByManyToManyEdge!]! """A list of `CifUser` objects.""" nodes: [CifUser]! @@ -26802,16 +28017,16 @@ type CifUserCifUsersByProjectCreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CifUser` edge in the connection, with data from `Project`.""" -type CifUserCifUsersByProjectCreatedByAndArchivedByManyToManyEdge { +"""A `CifUser` edge in the connection, with data from `ProjectContact`.""" +type CifUserCifUsersByProjectContactUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CifUser` at the end of the edge.""" node: CifUser - """Reads and enables pagination through a set of `Project`.""" - projectsByArchivedBy( + """Reads and enables pagination through a set of `ProjectContact`.""" + projectContactsByArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -26821,12 +28036,12 @@ type CifUserCifUsersByProjectCreatedByAndArchivedByManyToManyEdge { """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectCondition + condition: ProjectContactCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectFilter + filter: ProjectContactFilter """Only read the first `n` values of the set.""" first: Int @@ -26845,17 +28060,84 @@ type CifUserCifUsersByProjectCreatedByAndArchivedByManyToManyEdge { """ offset: Int - """The method to use when ordering `Project`.""" - orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectsConnection! + """The method to use when ordering `ProjectContact`.""" + orderBy: [ProjectContactsOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectContactsConnection! +} + +""" +A connection to a list of `CifUser` values, with data from `ProjectContact`. +""" +type CifUserCifUsersByProjectContactUpdatedByAndCreatedByManyToManyConnection { + """ + A list of edges which contains the `CifUser`, info from the `ProjectContact`, and the cursor to aid in pagination. + """ + edges: [CifUserCifUsersByProjectContactUpdatedByAndCreatedByManyToManyEdge!]! + + """A list of `CifUser` objects.""" + nodes: [CifUser]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CifUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CifUser` edge in the connection, with data from `ProjectContact`.""" +type CifUserCifUsersByProjectContactUpdatedByAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CifUser` at the end of the edge.""" + node: CifUser + + """Reads and enables pagination through a set of `ProjectContact`.""" + projectContactsByCreatedBy( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ProjectContactCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ProjectContactFilter + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = NO + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `ProjectContact`.""" + orderBy: [ProjectContactsOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectContactsConnection! } """A connection to a list of `CifUser` values, with data from `Project`.""" -type CifUserCifUsersByProjectCreatedByAndUpdatedByManyToManyConnection { +type CifUserCifUsersByProjectCreatedByAndArchivedByManyToManyConnection { """ A list of edges which contains the `CifUser`, info from the `Project`, and the cursor to aid in pagination. """ - edges: [CifUserCifUsersByProjectCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CifUserCifUsersByProjectCreatedByAndArchivedByManyToManyEdge!]! """A list of `CifUser` objects.""" nodes: [CifUser]! @@ -26868,7 +28150,7 @@ type CifUserCifUsersByProjectCreatedByAndUpdatedByManyToManyConnection { } """A `CifUser` edge in the connection, with data from `Project`.""" -type CifUserCifUsersByProjectCreatedByAndUpdatedByManyToManyEdge { +type CifUserCifUsersByProjectCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -26876,7 +28158,7 @@ type CifUserCifUsersByProjectCreatedByAndUpdatedByManyToManyEdge { node: CifUser """Reads and enables pagination through a set of `Project`.""" - projectsByUpdatedBy( + projectsByArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -26915,14 +28197,12 @@ type CifUserCifUsersByProjectCreatedByAndUpdatedByManyToManyEdge { ): ProjectsConnection! } -""" -A connection to a list of `CifUser` values, with data from `ProjectManager`. -""" -type CifUserCifUsersByProjectManagerArchivedByAndCifUserIdManyToManyConnection { +"""A connection to a list of `CifUser` values, with data from `Project`.""" +type CifUserCifUsersByProjectCreatedByAndUpdatedByManyToManyConnection { """ - A list of edges which contains the `CifUser`, info from the `ProjectManager`, and the cursor to aid in pagination. + A list of edges which contains the `CifUser`, info from the `Project`, and the cursor to aid in pagination. """ - edges: [CifUserCifUsersByProjectManagerArchivedByAndCifUserIdManyToManyEdge!]! + edges: [CifUserCifUsersByProjectCreatedByAndUpdatedByManyToManyEdge!]! """A list of `CifUser` objects.""" nodes: [CifUser]! @@ -26934,16 +28214,16 @@ type CifUserCifUsersByProjectManagerArchivedByAndCifUserIdManyToManyConnection { totalCount: Int! } -"""A `CifUser` edge in the connection, with data from `ProjectManager`.""" -type CifUserCifUsersByProjectManagerArchivedByAndCifUserIdManyToManyEdge { +"""A `CifUser` edge in the connection, with data from `Project`.""" +type CifUserCifUsersByProjectCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CifUser` at the end of the edge.""" node: CifUser - """Reads and enables pagination through a set of `ProjectManager`.""" - projectManagersByCifUserId( + """Reads and enables pagination through a set of `Project`.""" + projectsByUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -26953,12 +28233,12 @@ type CifUserCifUsersByProjectManagerArchivedByAndCifUserIdManyToManyEdge { """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectManagerCondition + condition: ProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectManagerFilter + filter: ProjectFilter """Only read the first `n` values of the set.""" first: Int @@ -26977,19 +28257,19 @@ type CifUserCifUsersByProjectManagerArchivedByAndCifUserIdManyToManyEdge { """ offset: Int - """The method to use when ordering `ProjectManager`.""" - orderBy: [ProjectManagersOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectManagersConnection! + """The method to use when ordering `Project`.""" + orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectsConnection! } """ A connection to a list of `CifUser` values, with data from `ProjectManager`. """ -type CifUserCifUsersByProjectManagerArchivedByAndCreatedByManyToManyConnection { +type CifUserCifUsersByProjectManagerArchivedByAndCifUserIdManyToManyConnection { """ A list of edges which contains the `CifUser`, info from the `ProjectManager`, and the cursor to aid in pagination. """ - edges: [CifUserCifUsersByProjectManagerArchivedByAndCreatedByManyToManyEdge!]! + edges: [CifUserCifUsersByProjectManagerArchivedByAndCifUserIdManyToManyEdge!]! """A list of `CifUser` objects.""" nodes: [CifUser]! @@ -27002,7 +28282,7 @@ type CifUserCifUsersByProjectManagerArchivedByAndCreatedByManyToManyConnection { } """A `CifUser` edge in the connection, with data from `ProjectManager`.""" -type CifUserCifUsersByProjectManagerArchivedByAndCreatedByManyToManyEdge { +type CifUserCifUsersByProjectManagerArchivedByAndCifUserIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -27010,7 +28290,7 @@ type CifUserCifUsersByProjectManagerArchivedByAndCreatedByManyToManyEdge { node: CifUser """Reads and enables pagination through a set of `ProjectManager`.""" - projectManagersByCreatedBy( + projectManagersByCifUserId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -27052,11 +28332,11 @@ type CifUserCifUsersByProjectManagerArchivedByAndCreatedByManyToManyEdge { """ A connection to a list of `CifUser` values, with data from `ProjectManager`. """ -type CifUserCifUsersByProjectManagerArchivedByAndUpdatedByManyToManyConnection { +type CifUserCifUsersByProjectManagerArchivedByAndCreatedByManyToManyConnection { """ A list of edges which contains the `CifUser`, info from the `ProjectManager`, and the cursor to aid in pagination. """ - edges: [CifUserCifUsersByProjectManagerArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CifUserCifUsersByProjectManagerArchivedByAndCreatedByManyToManyEdge!]! """A list of `CifUser` objects.""" nodes: [CifUser]! @@ -27069,7 +28349,7 @@ type CifUserCifUsersByProjectManagerArchivedByAndUpdatedByManyToManyConnection { } """A `CifUser` edge in the connection, with data from `ProjectManager`.""" -type CifUserCifUsersByProjectManagerArchivedByAndUpdatedByManyToManyEdge { +type CifUserCifUsersByProjectManagerArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -27077,7 +28357,7 @@ type CifUserCifUsersByProjectManagerArchivedByAndUpdatedByManyToManyEdge { node: CifUser """Reads and enables pagination through a set of `ProjectManager`.""" - projectManagersByUpdatedBy( + projectManagersByCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -27119,11 +28399,11 @@ type CifUserCifUsersByProjectManagerArchivedByAndUpdatedByManyToManyEdge { """ A connection to a list of `CifUser` values, with data from `ProjectManager`. """ -type CifUserCifUsersByProjectManagerCifUserIdAndArchivedByManyToManyConnection { +type CifUserCifUsersByProjectManagerArchivedByAndUpdatedByManyToManyConnection { """ A list of edges which contains the `CifUser`, info from the `ProjectManager`, and the cursor to aid in pagination. """ - edges: [CifUserCifUsersByProjectManagerCifUserIdAndArchivedByManyToManyEdge!]! + edges: [CifUserCifUsersByProjectManagerArchivedByAndUpdatedByManyToManyEdge!]! """A list of `CifUser` objects.""" nodes: [CifUser]! @@ -27136,7 +28416,7 @@ type CifUserCifUsersByProjectManagerCifUserIdAndArchivedByManyToManyConnection { } """A `CifUser` edge in the connection, with data from `ProjectManager`.""" -type CifUserCifUsersByProjectManagerCifUserIdAndArchivedByManyToManyEdge { +type CifUserCifUsersByProjectManagerArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -27144,7 +28424,7 @@ type CifUserCifUsersByProjectManagerCifUserIdAndArchivedByManyToManyEdge { node: CifUser """Reads and enables pagination through a set of `ProjectManager`.""" - projectManagersByArchivedBy( + projectManagersByUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -27186,11 +28466,11 @@ type CifUserCifUsersByProjectManagerCifUserIdAndArchivedByManyToManyEdge { """ A connection to a list of `CifUser` values, with data from `ProjectManager`. """ -type CifUserCifUsersByProjectManagerCifUserIdAndCreatedByManyToManyConnection { +type CifUserCifUsersByProjectManagerCifUserIdAndArchivedByManyToManyConnection { """ A list of edges which contains the `CifUser`, info from the `ProjectManager`, and the cursor to aid in pagination. """ - edges: [CifUserCifUsersByProjectManagerCifUserIdAndCreatedByManyToManyEdge!]! + edges: [CifUserCifUsersByProjectManagerCifUserIdAndArchivedByManyToManyEdge!]! """A list of `CifUser` objects.""" nodes: [CifUser]! @@ -27203,7 +28483,7 @@ type CifUserCifUsersByProjectManagerCifUserIdAndCreatedByManyToManyConnection { } """A `CifUser` edge in the connection, with data from `ProjectManager`.""" -type CifUserCifUsersByProjectManagerCifUserIdAndCreatedByManyToManyEdge { +type CifUserCifUsersByProjectManagerCifUserIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -27211,7 +28491,7 @@ type CifUserCifUsersByProjectManagerCifUserIdAndCreatedByManyToManyEdge { node: CifUser """Reads and enables pagination through a set of `ProjectManager`.""" - projectManagersByCreatedBy( + projectManagersByArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -27253,11 +28533,11 @@ type CifUserCifUsersByProjectManagerCifUserIdAndCreatedByManyToManyEdge { """ A connection to a list of `CifUser` values, with data from `ProjectManager`. """ -type CifUserCifUsersByProjectManagerCifUserIdAndUpdatedByManyToManyConnection { +type CifUserCifUsersByProjectManagerCifUserIdAndCreatedByManyToManyConnection { """ A list of edges which contains the `CifUser`, info from the `ProjectManager`, and the cursor to aid in pagination. """ - edges: [CifUserCifUsersByProjectManagerCifUserIdAndUpdatedByManyToManyEdge!]! + edges: [CifUserCifUsersByProjectManagerCifUserIdAndCreatedByManyToManyEdge!]! """A list of `CifUser` objects.""" nodes: [CifUser]! @@ -27270,7 +28550,7 @@ type CifUserCifUsersByProjectManagerCifUserIdAndUpdatedByManyToManyConnection { } """A `CifUser` edge in the connection, with data from `ProjectManager`.""" -type CifUserCifUsersByProjectManagerCifUserIdAndUpdatedByManyToManyEdge { +type CifUserCifUsersByProjectManagerCifUserIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -27278,7 +28558,7 @@ type CifUserCifUsersByProjectManagerCifUserIdAndUpdatedByManyToManyEdge { node: CifUser """Reads and enables pagination through a set of `ProjectManager`.""" - projectManagersByUpdatedBy( + projectManagersByCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -27320,11 +28600,11 @@ type CifUserCifUsersByProjectManagerCifUserIdAndUpdatedByManyToManyEdge { """ A connection to a list of `CifUser` values, with data from `ProjectManager`. """ -type CifUserCifUsersByProjectManagerCreatedByAndArchivedByManyToManyConnection { +type CifUserCifUsersByProjectManagerCifUserIdAndUpdatedByManyToManyConnection { """ A list of edges which contains the `CifUser`, info from the `ProjectManager`, and the cursor to aid in pagination. """ - edges: [CifUserCifUsersByProjectManagerCreatedByAndArchivedByManyToManyEdge!]! + edges: [CifUserCifUsersByProjectManagerCifUserIdAndUpdatedByManyToManyEdge!]! """A list of `CifUser` objects.""" nodes: [CifUser]! @@ -27337,7 +28617,7 @@ type CifUserCifUsersByProjectManagerCreatedByAndArchivedByManyToManyConnection { } """A `CifUser` edge in the connection, with data from `ProjectManager`.""" -type CifUserCifUsersByProjectManagerCreatedByAndArchivedByManyToManyEdge { +type CifUserCifUsersByProjectManagerCifUserIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -27345,7 +28625,74 @@ type CifUserCifUsersByProjectManagerCreatedByAndArchivedByManyToManyEdge { node: CifUser """Reads and enables pagination through a set of `ProjectManager`.""" - projectManagersByArchivedBy( + projectManagersByUpdatedBy( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ProjectManagerCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ProjectManagerFilter + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = NO + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `ProjectManager`.""" + orderBy: [ProjectManagersOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectManagersConnection! +} + +""" +A connection to a list of `CifUser` values, with data from `ProjectManager`. +""" +type CifUserCifUsersByProjectManagerCreatedByAndArchivedByManyToManyConnection { + """ + A list of edges which contains the `CifUser`, info from the `ProjectManager`, and the cursor to aid in pagination. + """ + edges: [CifUserCifUsersByProjectManagerCreatedByAndArchivedByManyToManyEdge!]! + + """A list of `CifUser` objects.""" + nodes: [CifUser]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CifUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CifUser` edge in the connection, with data from `ProjectManager`.""" +type CifUserCifUsersByProjectManagerCreatedByAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CifUser` at the end of the edge.""" + node: CifUser + + """Reads and enables pagination through a set of `ProjectManager`.""" + projectManagersByArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -32273,6 +33620,24 @@ input CifUserFilter { """Some related `paymentsByUpdatedBy` exist.""" paymentsByUpdatedByExist: Boolean + """Filter by the object’s `projectAttachmentsByArchivedBy` relation.""" + projectAttachmentsByArchivedBy: CifUserToManyProjectAttachmentFilter + + """Some related `projectAttachmentsByArchivedBy` exist.""" + projectAttachmentsByArchivedByExist: Boolean + + """Filter by the object’s `projectAttachmentsByCreatedBy` relation.""" + projectAttachmentsByCreatedBy: CifUserToManyProjectAttachmentFilter + + """Some related `projectAttachmentsByCreatedBy` exist.""" + projectAttachmentsByCreatedByExist: Boolean + + """Filter by the object’s `projectAttachmentsByUpdatedBy` relation.""" + projectAttachmentsByUpdatedBy: CifUserToManyProjectAttachmentFilter + + """Some related `projectAttachmentsByUpdatedBy` exist.""" + projectAttachmentsByUpdatedByExist: Boolean + """Filter by the object’s `projectContactsByArchivedBy` relation.""" projectContactsByArchivedBy: CifUserToManyProjectContactFilter @@ -34310,13 +35675,13 @@ type CifUserProjectRevisionsByProjectRevisionAmendmentTypeUpdatedByAndProjectRev } """ -A connection to a list of `ProjectStatus` values, with data from `Attachment`. +A connection to a list of `ProjectStatus` values, with data from `FundingStreamProjectStatus`. """ -type CifUserProjectStatusesByAttachmentArchivedByAndProjectStatusIdManyToManyConnection { +type CifUserProjectStatusesByFundingStreamProjectStatusArchivedByAndProjectStatusIdManyToManyConnection { """ - A list of edges which contains the `ProjectStatus`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `ProjectStatus`, info from the `FundingStreamProjectStatus`, and the cursor to aid in pagination. """ - edges: [CifUserProjectStatusesByAttachmentArchivedByAndProjectStatusIdManyToManyEdge!]! + edges: [CifUserProjectStatusesByFundingStreamProjectStatusArchivedByAndProjectStatusIdManyToManyEdge!]! """A list of `ProjectStatus` objects.""" nodes: [ProjectStatus]! @@ -34328,144 +35693,17 @@ type CifUserProjectStatusesByAttachmentArchivedByAndProjectStatusIdManyToManyCon totalCount: Int! } -"""A `ProjectStatus` edge in the connection, with data from `Attachment`.""" -type CifUserProjectStatusesByAttachmentArchivedByAndProjectStatusIdManyToManyEdge { - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByProjectStatusId( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - 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 - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = NO - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - ): AttachmentsConnection! - - """A cursor for use in pagination.""" - cursor: Cursor - - """The `ProjectStatus` at the end of the edge.""" - node: ProjectStatus -} - """ -A connection to a list of `ProjectStatus` values, with data from `Attachment`. +A `ProjectStatus` edge in the connection, with data from `FundingStreamProjectStatus`. """ -type CifUserProjectStatusesByAttachmentCreatedByAndProjectStatusIdManyToManyConnection { - """ - A list of edges which contains the `ProjectStatus`, info from the `Attachment`, and the cursor to aid in pagination. - """ - edges: [CifUserProjectStatusesByAttachmentCreatedByAndProjectStatusIdManyToManyEdge!]! - - """A list of `ProjectStatus` objects.""" - nodes: [ProjectStatus]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `ProjectStatus` you could get from the connection.""" - totalCount: Int! -} - -"""A `ProjectStatus` edge in the connection, with data from `Attachment`.""" -type CifUserProjectStatusesByAttachmentCreatedByAndProjectStatusIdManyToManyEdge { - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByProjectStatusId( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - 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 - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = NO - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - ): AttachmentsConnection! - +type CifUserProjectStatusesByFundingStreamProjectStatusArchivedByAndProjectStatusIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ProjectStatus` at the end of the edge.""" - node: ProjectStatus -} - -""" -A connection to a list of `ProjectStatus` values, with data from `Attachment`. -""" -type CifUserProjectStatusesByAttachmentUpdatedByAndProjectStatusIdManyToManyConnection { """ - A list of edges which contains the `ProjectStatus`, info from the `Attachment`, and the cursor to aid in pagination. + Reads and enables pagination through a set of `FundingStreamProjectStatus`. """ - edges: [CifUserProjectStatusesByAttachmentUpdatedByAndProjectStatusIdManyToManyEdge!]! - - """A list of `ProjectStatus` objects.""" - nodes: [ProjectStatus]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `ProjectStatus` you could get from the connection.""" - totalCount: Int! -} - -"""A `ProjectStatus` edge in the connection, with data from `Attachment`.""" -type CifUserProjectStatusesByAttachmentUpdatedByAndProjectStatusIdManyToManyEdge { - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByProjectStatusId( + fundingStreamProjectStatusesByProjectStatusId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -34475,12 +35713,12 @@ type CifUserProjectStatusesByAttachmentUpdatedByAndProjectStatusIdManyToManyEdge """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: FundingStreamProjectStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter + filter: FundingStreamProjectStatusFilter """Only read the first `n` values of the set.""" first: Int @@ -34499,12 +35737,9 @@ type CifUserProjectStatusesByAttachmentUpdatedByAndProjectStatusIdManyToManyEdge """ offset: Int - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - ): AttachmentsConnection! - - """A cursor for use in pagination.""" - cursor: Cursor + """The method to use when ordering `FundingStreamProjectStatus`.""" + orderBy: [FundingStreamProjectStatusesOrderBy!] = [PRIMARY_KEY_ASC] + ): FundingStreamProjectStatusesConnection! """The `ProjectStatus` at the end of the edge.""" node: ProjectStatus @@ -34513,11 +35748,11 @@ type CifUserProjectStatusesByAttachmentUpdatedByAndProjectStatusIdManyToManyEdge """ A connection to a list of `ProjectStatus` values, with data from `FundingStreamProjectStatus`. """ -type CifUserProjectStatusesByFundingStreamProjectStatusArchivedByAndProjectStatusIdManyToManyConnection { +type CifUserProjectStatusesByFundingStreamProjectStatusCreatedByAndProjectStatusIdManyToManyConnection { """ A list of edges which contains the `ProjectStatus`, info from the `FundingStreamProjectStatus`, and the cursor to aid in pagination. """ - edges: [CifUserProjectStatusesByFundingStreamProjectStatusArchivedByAndProjectStatusIdManyToManyEdge!]! + edges: [CifUserProjectStatusesByFundingStreamProjectStatusCreatedByAndProjectStatusIdManyToManyEdge!]! """A list of `ProjectStatus` objects.""" nodes: [ProjectStatus]! @@ -34532,7 +35767,7 @@ type CifUserProjectStatusesByFundingStreamProjectStatusArchivedByAndProjectStatu """ A `ProjectStatus` edge in the connection, with data from `FundingStreamProjectStatus`. """ -type CifUserProjectStatusesByFundingStreamProjectStatusArchivedByAndProjectStatusIdManyToManyEdge { +type CifUserProjectStatusesByFundingStreamProjectStatusCreatedByAndProjectStatusIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -34584,11 +35819,11 @@ type CifUserProjectStatusesByFundingStreamProjectStatusArchivedByAndProjectStatu """ A connection to a list of `ProjectStatus` values, with data from `FundingStreamProjectStatus`. """ -type CifUserProjectStatusesByFundingStreamProjectStatusCreatedByAndProjectStatusIdManyToManyConnection { +type CifUserProjectStatusesByFundingStreamProjectStatusUpdatedByAndProjectStatusIdManyToManyConnection { """ A list of edges which contains the `ProjectStatus`, info from the `FundingStreamProjectStatus`, and the cursor to aid in pagination. """ - edges: [CifUserProjectStatusesByFundingStreamProjectStatusCreatedByAndProjectStatusIdManyToManyEdge!]! + edges: [CifUserProjectStatusesByFundingStreamProjectStatusUpdatedByAndProjectStatusIdManyToManyEdge!]! """A list of `ProjectStatus` objects.""" nodes: [ProjectStatus]! @@ -34603,7 +35838,7 @@ type CifUserProjectStatusesByFundingStreamProjectStatusCreatedByAndProjectStatus """ A `ProjectStatus` edge in the connection, with data from `FundingStreamProjectStatus`. """ -type CifUserProjectStatusesByFundingStreamProjectStatusCreatedByAndProjectStatusIdManyToManyEdge { +type CifUserProjectStatusesByFundingStreamProjectStatusUpdatedByAndProjectStatusIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -34653,13 +35888,13 @@ type CifUserProjectStatusesByFundingStreamProjectStatusCreatedByAndProjectStatus } """ -A connection to a list of `ProjectStatus` values, with data from `FundingStreamProjectStatus`. +A connection to a list of `ProjectStatus` values, with data from `Project`. """ -type CifUserProjectStatusesByFundingStreamProjectStatusUpdatedByAndProjectStatusIdManyToManyConnection { +type CifUserProjectStatusesByProjectArchivedByAndProjectStatusIdManyToManyConnection { """ - A list of edges which contains the `ProjectStatus`, info from the `FundingStreamProjectStatus`, and the cursor to aid in pagination. + A list of edges which contains the `ProjectStatus`, info from the `Project`, and the cursor to aid in pagination. """ - edges: [CifUserProjectStatusesByFundingStreamProjectStatusUpdatedByAndProjectStatusIdManyToManyEdge!]! + edges: [CifUserProjectStatusesByProjectArchivedByAndProjectStatusIdManyToManyEdge!]! """A list of `ProjectStatus` objects.""" nodes: [ProjectStatus]! @@ -34671,17 +35906,16 @@ type CifUserProjectStatusesByFundingStreamProjectStatusUpdatedByAndProjectStatus totalCount: Int! } -""" -A `ProjectStatus` edge in the connection, with data from `FundingStreamProjectStatus`. -""" -type CifUserProjectStatusesByFundingStreamProjectStatusUpdatedByAndProjectStatusIdManyToManyEdge { +"""A `ProjectStatus` edge in the connection, with data from `Project`.""" +type CifUserProjectStatusesByProjectArchivedByAndProjectStatusIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """ - Reads and enables pagination through a set of `FundingStreamProjectStatus`. - """ - fundingStreamProjectStatusesByProjectStatusId( + """The `ProjectStatus` at the end of the edge.""" + node: ProjectStatus + + """Reads and enables pagination through a set of `Project`.""" + projectsByProjectStatusId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -34691,12 +35925,12 @@ type CifUserProjectStatusesByFundingStreamProjectStatusUpdatedByAndProjectStatus """ A condition to be used in determining which values should be returned by the collection. """ - condition: FundingStreamProjectStatusCondition + condition: ProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FundingStreamProjectStatusFilter + filter: ProjectFilter """Only read the first `n` values of the set.""" first: Int @@ -34715,22 +35949,19 @@ type CifUserProjectStatusesByFundingStreamProjectStatusUpdatedByAndProjectStatus """ offset: Int - """The method to use when ordering `FundingStreamProjectStatus`.""" - orderBy: [FundingStreamProjectStatusesOrderBy!] = [PRIMARY_KEY_ASC] - ): FundingStreamProjectStatusesConnection! - - """The `ProjectStatus` at the end of the edge.""" - node: ProjectStatus + """The method to use when ordering `Project`.""" + orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectsConnection! } """ A connection to a list of `ProjectStatus` values, with data from `Project`. """ -type CifUserProjectStatusesByProjectArchivedByAndProjectStatusIdManyToManyConnection { +type CifUserProjectStatusesByProjectCreatedByAndProjectStatusIdManyToManyConnection { """ A list of edges which contains the `ProjectStatus`, info from the `Project`, and the cursor to aid in pagination. """ - edges: [CifUserProjectStatusesByProjectArchivedByAndProjectStatusIdManyToManyEdge!]! + edges: [CifUserProjectStatusesByProjectCreatedByAndProjectStatusIdManyToManyEdge!]! """A list of `ProjectStatus` objects.""" nodes: [ProjectStatus]! @@ -34743,74 +35974,7 @@ type CifUserProjectStatusesByProjectArchivedByAndProjectStatusIdManyToManyConnec } """A `ProjectStatus` edge in the connection, with data from `Project`.""" -type CifUserProjectStatusesByProjectArchivedByAndProjectStatusIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `ProjectStatus` at the end of the edge.""" - node: ProjectStatus - - """Reads and enables pagination through a set of `Project`.""" - projectsByProjectStatusId( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ProjectCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ProjectFilter - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = NO - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `Project`.""" - orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectsConnection! -} - -""" -A connection to a list of `ProjectStatus` values, with data from `Project`. -""" -type CifUserProjectStatusesByProjectCreatedByAndProjectStatusIdManyToManyConnection { - """ - A list of edges which contains the `ProjectStatus`, info from the `Project`, and the cursor to aid in pagination. - """ - edges: [CifUserProjectStatusesByProjectCreatedByAndProjectStatusIdManyToManyEdge!]! - - """A list of `ProjectStatus` objects.""" - nodes: [ProjectStatus]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `ProjectStatus` you could get from the connection.""" - totalCount: Int! -} - -"""A `ProjectStatus` edge in the connection, with data from `Project`.""" -type CifUserProjectStatusesByProjectCreatedByAndProjectStatusIdManyToManyEdge { +type CifUserProjectStatusesByProjectCreatedByAndProjectStatusIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -35339,13 +36503,13 @@ type CifUserProjectsByAdditionalFundingSourceUpdatedByAndProjectIdManyToManyEdge } """ -A connection to a list of `Project` values, with data from `Attachment`. +A connection to a list of `Project` values, with data from `FundingParameter`. """ -type CifUserProjectsByAttachmentArchivedByAndProjectIdManyToManyConnection { +type CifUserProjectsByFundingParameterArchivedByAndProjectIdManyToManyConnection { """ - A list of edges which contains the `Project`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `Project`, info from the `FundingParameter`, and the cursor to aid in pagination. """ - edges: [CifUserProjectsByAttachmentArchivedByAndProjectIdManyToManyEdge!]! + edges: [CifUserProjectsByFundingParameterArchivedByAndProjectIdManyToManyEdge!]! """A list of `Project` objects.""" nodes: [Project]! @@ -35357,10 +36521,13 @@ type CifUserProjectsByAttachmentArchivedByAndProjectIdManyToManyConnection { totalCount: Int! } -"""A `Project` edge in the connection, with data from `Attachment`.""" -type CifUserProjectsByAttachmentArchivedByAndProjectIdManyToManyEdge { - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByProjectId( +"""A `Project` edge in the connection, with data from `FundingParameter`.""" +type CifUserProjectsByFundingParameterArchivedByAndProjectIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """Reads and enables pagination through a set of `FundingParameter`.""" + fundingParametersByProjectId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -35370,12 +36537,12 @@ type CifUserProjectsByAttachmentArchivedByAndProjectIdManyToManyEdge { """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: FundingParameterCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter + filter: FundingParameterFilter """Only read the first `n` values of the set.""" first: Int @@ -35394,25 +36561,22 @@ type CifUserProjectsByAttachmentArchivedByAndProjectIdManyToManyEdge { """ offset: Int - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - ): AttachmentsConnection! - - """A cursor for use in pagination.""" - cursor: Cursor + """The method to use when ordering `FundingParameter`.""" + orderBy: [FundingParametersOrderBy!] = [PRIMARY_KEY_ASC] + ): FundingParametersConnection! """The `Project` at the end of the edge.""" node: Project } """ -A connection to a list of `Project` values, with data from `Attachment`. +A connection to a list of `Project` values, with data from `FundingParameter`. """ -type CifUserProjectsByAttachmentCreatedByAndProjectIdManyToManyConnection { +type CifUserProjectsByFundingParameterCreatedByAndProjectIdManyToManyConnection { """ - A list of edges which contains the `Project`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `Project`, info from the `FundingParameter`, and the cursor to aid in pagination. """ - edges: [CifUserProjectsByAttachmentCreatedByAndProjectIdManyToManyEdge!]! + edges: [CifUserProjectsByFundingParameterCreatedByAndProjectIdManyToManyEdge!]! """A list of `Project` objects.""" nodes: [Project]! @@ -35424,10 +36588,13 @@ type CifUserProjectsByAttachmentCreatedByAndProjectIdManyToManyConnection { totalCount: Int! } -"""A `Project` edge in the connection, with data from `Attachment`.""" -type CifUserProjectsByAttachmentCreatedByAndProjectIdManyToManyEdge { - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByProjectId( +"""A `Project` edge in the connection, with data from `FundingParameter`.""" +type CifUserProjectsByFundingParameterCreatedByAndProjectIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """Reads and enables pagination through a set of `FundingParameter`.""" + fundingParametersByProjectId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -35437,12 +36604,12 @@ type CifUserProjectsByAttachmentCreatedByAndProjectIdManyToManyEdge { """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: FundingParameterCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter + filter: FundingParameterFilter """Only read the first `n` values of the set.""" first: Int @@ -35461,25 +36628,22 @@ type CifUserProjectsByAttachmentCreatedByAndProjectIdManyToManyEdge { """ offset: Int - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - ): AttachmentsConnection! - - """A cursor for use in pagination.""" - cursor: Cursor + """The method to use when ordering `FundingParameter`.""" + orderBy: [FundingParametersOrderBy!] = [PRIMARY_KEY_ASC] + ): FundingParametersConnection! """The `Project` at the end of the edge.""" node: Project } """ -A connection to a list of `Project` values, with data from `Attachment`. +A connection to a list of `Project` values, with data from `FundingParameter`. """ -type CifUserProjectsByAttachmentUpdatedByAndProjectIdManyToManyConnection { +type CifUserProjectsByFundingParameterUpdatedByAndProjectIdManyToManyConnection { """ - A list of edges which contains the `Project`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `Project`, info from the `FundingParameter`, and the cursor to aid in pagination. """ - edges: [CifUserProjectsByAttachmentUpdatedByAndProjectIdManyToManyEdge!]! + edges: [CifUserProjectsByFundingParameterUpdatedByAndProjectIdManyToManyEdge!]! """A list of `Project` objects.""" nodes: [Project]! @@ -35491,10 +36655,13 @@ type CifUserProjectsByAttachmentUpdatedByAndProjectIdManyToManyConnection { totalCount: Int! } -"""A `Project` edge in the connection, with data from `Attachment`.""" -type CifUserProjectsByAttachmentUpdatedByAndProjectIdManyToManyEdge { - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByProjectId( +"""A `Project` edge in the connection, with data from `FundingParameter`.""" +type CifUserProjectsByFundingParameterUpdatedByAndProjectIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """Reads and enables pagination through a set of `FundingParameter`.""" + fundingParametersByProjectId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -35504,12 +36671,12 @@ type CifUserProjectsByAttachmentUpdatedByAndProjectIdManyToManyEdge { """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: FundingParameterCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter + filter: FundingParameterFilter """Only read the first `n` values of the set.""" first: Int @@ -35528,25 +36695,22 @@ type CifUserProjectsByAttachmentUpdatedByAndProjectIdManyToManyEdge { """ offset: Int - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - ): AttachmentsConnection! - - """A cursor for use in pagination.""" - cursor: Cursor + """The method to use when ordering `FundingParameter`.""" + orderBy: [FundingParametersOrderBy!] = [PRIMARY_KEY_ASC] + ): FundingParametersConnection! """The `Project` at the end of the edge.""" node: Project } """ -A connection to a list of `Project` values, with data from `FundingParameter`. +A connection to a list of `Project` values, with data from `ProjectAttachment`. """ -type CifUserProjectsByFundingParameterArchivedByAndProjectIdManyToManyConnection { +type CifUserProjectsByProjectAttachmentArchivedByAndProjectIdManyToManyConnection { """ - A list of edges which contains the `Project`, info from the `FundingParameter`, and the cursor to aid in pagination. + A list of edges which contains the `Project`, info from the `ProjectAttachment`, and the cursor to aid in pagination. """ - edges: [CifUserProjectsByFundingParameterArchivedByAndProjectIdManyToManyEdge!]! + edges: [CifUserProjectsByProjectAttachmentArchivedByAndProjectIdManyToManyEdge!]! """A list of `Project` objects.""" nodes: [Project]! @@ -35558,13 +36722,18 @@ type CifUserProjectsByFundingParameterArchivedByAndProjectIdManyToManyConnection totalCount: Int! } -"""A `Project` edge in the connection, with data from `FundingParameter`.""" -type CifUserProjectsByFundingParameterArchivedByAndProjectIdManyToManyEdge { +""" +A `Project` edge in the connection, with data from `ProjectAttachment`. +""" +type CifUserProjectsByProjectAttachmentArchivedByAndProjectIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """Reads and enables pagination through a set of `FundingParameter`.""" - fundingParametersByProjectId( + """The `Project` at the end of the edge.""" + node: Project + + """Reads and enables pagination through a set of `ProjectAttachment`.""" + projectAttachmentsByProjectId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -35574,12 +36743,12 @@ type CifUserProjectsByFundingParameterArchivedByAndProjectIdManyToManyEdge { """ A condition to be used in determining which values should be returned by the collection. """ - condition: FundingParameterCondition + condition: ProjectAttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FundingParameterFilter + filter: ProjectAttachmentFilter """Only read the first `n` values of the set.""" first: Int @@ -35598,22 +36767,19 @@ type CifUserProjectsByFundingParameterArchivedByAndProjectIdManyToManyEdge { """ offset: Int - """The method to use when ordering `FundingParameter`.""" - orderBy: [FundingParametersOrderBy!] = [PRIMARY_KEY_ASC] - ): FundingParametersConnection! - - """The `Project` at the end of the edge.""" - node: Project + """The method to use when ordering `ProjectAttachment`.""" + orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectAttachmentsConnection! } """ -A connection to a list of `Project` values, with data from `FundingParameter`. +A connection to a list of `Project` values, with data from `ProjectAttachment`. """ -type CifUserProjectsByFundingParameterCreatedByAndProjectIdManyToManyConnection { +type CifUserProjectsByProjectAttachmentCreatedByAndProjectIdManyToManyConnection { """ - A list of edges which contains the `Project`, info from the `FundingParameter`, and the cursor to aid in pagination. + A list of edges which contains the `Project`, info from the `ProjectAttachment`, and the cursor to aid in pagination. """ - edges: [CifUserProjectsByFundingParameterCreatedByAndProjectIdManyToManyEdge!]! + edges: [CifUserProjectsByProjectAttachmentCreatedByAndProjectIdManyToManyEdge!]! """A list of `Project` objects.""" nodes: [Project]! @@ -35625,13 +36791,18 @@ type CifUserProjectsByFundingParameterCreatedByAndProjectIdManyToManyConnection totalCount: Int! } -"""A `Project` edge in the connection, with data from `FundingParameter`.""" -type CifUserProjectsByFundingParameterCreatedByAndProjectIdManyToManyEdge { +""" +A `Project` edge in the connection, with data from `ProjectAttachment`. +""" +type CifUserProjectsByProjectAttachmentCreatedByAndProjectIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """Reads and enables pagination through a set of `FundingParameter`.""" - fundingParametersByProjectId( + """The `Project` at the end of the edge.""" + node: Project + + """Reads and enables pagination through a set of `ProjectAttachment`.""" + projectAttachmentsByProjectId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -35641,12 +36812,12 @@ type CifUserProjectsByFundingParameterCreatedByAndProjectIdManyToManyEdge { """ A condition to be used in determining which values should be returned by the collection. """ - condition: FundingParameterCondition + condition: ProjectAttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FundingParameterFilter + filter: ProjectAttachmentFilter """Only read the first `n` values of the set.""" first: Int @@ -35665,22 +36836,19 @@ type CifUserProjectsByFundingParameterCreatedByAndProjectIdManyToManyEdge { """ offset: Int - """The method to use when ordering `FundingParameter`.""" - orderBy: [FundingParametersOrderBy!] = [PRIMARY_KEY_ASC] - ): FundingParametersConnection! - - """The `Project` at the end of the edge.""" - node: Project + """The method to use when ordering `ProjectAttachment`.""" + orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectAttachmentsConnection! } """ -A connection to a list of `Project` values, with data from `FundingParameter`. +A connection to a list of `Project` values, with data from `ProjectAttachment`. """ -type CifUserProjectsByFundingParameterUpdatedByAndProjectIdManyToManyConnection { +type CifUserProjectsByProjectAttachmentUpdatedByAndProjectIdManyToManyConnection { """ - A list of edges which contains the `Project`, info from the `FundingParameter`, and the cursor to aid in pagination. + A list of edges which contains the `Project`, info from the `ProjectAttachment`, and the cursor to aid in pagination. """ - edges: [CifUserProjectsByFundingParameterUpdatedByAndProjectIdManyToManyEdge!]! + edges: [CifUserProjectsByProjectAttachmentUpdatedByAndProjectIdManyToManyEdge!]! """A list of `Project` objects.""" nodes: [Project]! @@ -35692,13 +36860,18 @@ type CifUserProjectsByFundingParameterUpdatedByAndProjectIdManyToManyConnection totalCount: Int! } -"""A `Project` edge in the connection, with data from `FundingParameter`.""" -type CifUserProjectsByFundingParameterUpdatedByAndProjectIdManyToManyEdge { +""" +A `Project` edge in the connection, with data from `ProjectAttachment`. +""" +type CifUserProjectsByProjectAttachmentUpdatedByAndProjectIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """Reads and enables pagination through a set of `FundingParameter`.""" - fundingParametersByProjectId( + """The `Project` at the end of the edge.""" + node: Project + + """Reads and enables pagination through a set of `ProjectAttachment`.""" + projectAttachmentsByProjectId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -35708,12 +36881,12 @@ type CifUserProjectsByFundingParameterUpdatedByAndProjectIdManyToManyEdge { """ A condition to be used in determining which values should be returned by the collection. """ - condition: FundingParameterCondition + condition: ProjectAttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FundingParameterFilter + filter: ProjectAttachmentFilter """Only read the first `n` values of the set.""" first: Int @@ -35732,12 +36905,9 @@ type CifUserProjectsByFundingParameterUpdatedByAndProjectIdManyToManyEdge { """ offset: Int - """The method to use when ordering `FundingParameter`.""" - orderBy: [FundingParametersOrderBy!] = [PRIMARY_KEY_ASC] - ): FundingParametersConnection! - - """The `Project` at the end of the edge.""" - node: Project + """The method to use when ordering `ProjectAttachment`.""" + orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectAttachmentsConnection! } """ @@ -38223,6 +39393,26 @@ input CifUserToManyPaymentFilter { some: PaymentFilter } +""" +A filter to be used against many `ProjectAttachment` object types. All fields are combined with a logical ‘and.’ +""" +input CifUserToManyProjectAttachmentFilter { + """ + Every related `ProjectAttachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ProjectAttachmentFilter + + """ + No related `ProjectAttachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ProjectAttachmentFilter + + """ + Some related `ProjectAttachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ProjectAttachmentFilter +} + """ A filter to be used against many `ProjectContact` object types. All fields are combined with a logical ‘and.’ """ @@ -38726,6 +39916,12 @@ enum CifUsersOrderBy { PROJECTS_BY_CREATED_BY__COUNT_DESC PROJECTS_BY_UPDATED_BY__COUNT_ASC PROJECTS_BY_UPDATED_BY__COUNT_DESC + PROJECT_ATTACHMENTS_BY_ARCHIVED_BY__COUNT_ASC + PROJECT_ATTACHMENTS_BY_ARCHIVED_BY__COUNT_DESC + PROJECT_ATTACHMENTS_BY_CREATED_BY__COUNT_ASC + PROJECT_ATTACHMENTS_BY_CREATED_BY__COUNT_DESC + PROJECT_ATTACHMENTS_BY_UPDATED_BY__COUNT_ASC + PROJECT_ATTACHMENTS_BY_UPDATED_BY__COUNT_DESC PROJECT_CONTACTS_BY_ARCHIVED_BY__COUNT_ASC PROJECT_CONTACTS_BY_ARCHIVED_BY__COUNT_DESC PROJECT_CONTACTS_BY_CREATED_BY__COUNT_ASC @@ -39945,12 +41141,6 @@ type CreateAttachmentPayload { """ clientMutationId: String - """Reads a single `Project` that is related to this `Attachment`.""" - projectByProjectId: Project - - """Reads a single `ProjectStatus` that is related to this `Attachment`.""" - projectStatusByProjectStatusId: ProjectStatus - """ Our root query field type. Allows us to run any query from our mutation payload. """ @@ -40505,6 +41695,58 @@ type CreateMilestoneReportPayload { reportingRequirementByReportingRequirementId: ReportingRequirement } +"""All input for the create `ProjectAttachment` mutation.""" +input CreateProjectAttachmentInput { + """ + 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 `ProjectAttachment` to be created by this mutation.""" + projectAttachment: ProjectAttachmentInput! +} + +"""The output of our create `ProjectAttachment` mutation.""" +type CreateProjectAttachmentPayload { + """ + Reads a single `Attachment` that is related to this `ProjectAttachment`. + """ + attachmentByAttachmentId: Attachment + + """Reads a single `CifUser` that is related to this `ProjectAttachment`.""" + cifUserByArchivedBy: CifUser + + """Reads a single `CifUser` that is related to this `ProjectAttachment`.""" + cifUserByCreatedBy: CifUser + + """Reads a single `CifUser` that is related to this `ProjectAttachment`.""" + cifUserByUpdatedBy: CifUser + + """ + 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 `ProjectAttachment` that was created by this mutation.""" + projectAttachment: ProjectAttachment + + """An edge for our `ProjectAttachment`. May be used by Relay 1.""" + projectAttachmentEdge( + """The method to use when ordering `ProjectAttachment`.""" + orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectAttachmentsEdge + + """Reads a single `Project` that is related to this `ProjectAttachment`.""" + projectByProjectId: Project + + """ + Our root query field type. Allows us to run any query from our mutation payload. + """ + query: Query +} + """All input for the create `ProjectContact` mutation.""" input CreateProjectContactInput { """ @@ -41406,12 +42648,6 @@ type DeleteAttachmentPayload { clientMutationId: String deletedAttachmentId: ID - """Reads a single `Project` that is related to this `Attachment`.""" - projectByProjectId: Project - - """Reads a single `ProjectStatus` that is related to this `Attachment`.""" - projectStatusByProjectStatusId: ProjectStatus - """ Our root query field type. Allows us to run any query from our mutation payload. """ @@ -42158,6 +43394,73 @@ type DeleteMilestoneReportPayload { reportingRequirementByReportingRequirementId: ReportingRequirement } +"""All input for the `deleteProjectAttachmentByRowId` mutation.""" +input DeleteProjectAttachmentByRowIdInput { + """ + 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 project attachment record""" + rowId: Int! +} + +"""All input for the `deleteProjectAttachment` mutation.""" +input DeleteProjectAttachmentInput { + """ + 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 `ProjectAttachment` to be deleted. + """ + id: ID! +} + +"""The output of our delete `ProjectAttachment` mutation.""" +type DeleteProjectAttachmentPayload { + """ + Reads a single `Attachment` that is related to this `ProjectAttachment`. + """ + attachmentByAttachmentId: Attachment + + """Reads a single `CifUser` that is related to this `ProjectAttachment`.""" + cifUserByArchivedBy: CifUser + + """Reads a single `CifUser` that is related to this `ProjectAttachment`.""" + cifUserByCreatedBy: CifUser + + """Reads a single `CifUser` that is related to this `ProjectAttachment`.""" + cifUserByUpdatedBy: CifUser + + """ + 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 + deletedProjectAttachmentId: ID + + """The `ProjectAttachment` that was deleted by this mutation.""" + projectAttachment: ProjectAttachment + + """An edge for our `ProjectAttachment`. May be used by Relay 1.""" + projectAttachmentEdge( + """The method to use when ordering `ProjectAttachment`.""" + orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectAttachmentsEdge + + """Reads a single `Project` that is related to this `ProjectAttachment`.""" + projectByProjectId: Project + + """ + Our root query field type. Allows us to run any query from our mutation payload. + """ + query: Query +} + """All input for the `deleteProjectContactByRowId` mutation.""" input DeleteProjectContactByRowIdInput { """ @@ -42885,6 +44188,55 @@ type DiscardFundingParameterFormChangePayload { query: Query } +"""All input for the `discardProjectAttachmentFormChange` mutation.""" +input DiscardProjectAttachmentFormChangeInput { + """ + 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 + formChangeId: Int! +} + +"""The output of our `discardProjectAttachmentFormChange` mutation.""" +type DiscardProjectAttachmentFormChangePayload { + """Reads a single `ChangeStatus` that is related to this `FormChange`.""" + changeStatusByChangeStatus: ChangeStatus + + """Reads a single `CifUser` that is related to this `FormChange`.""" + cifUserByCreatedBy: CifUser + + """Reads a single `CifUser` that is related to this `FormChange`.""" + cifUserByUpdatedBy: CifUser + + """ + 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 + + """Reads a single `Form` that is related to this `FormChange`.""" + formByJsonSchemaName: Form + formChange: FormChange + + """Reads a single `FormChange` that is related to this `FormChange`.""" + formChangeByPreviousFormChangeId: FormChange + + """An edge for our `FormChange`. May be used by Relay 1.""" + formChangeEdge( + """The method to use when ordering `FormChange`.""" + orderBy: [FormChangesOrderBy!] = [PRIMARY_KEY_ASC] + ): FormChangesEdge + + """Reads a single `ProjectRevision` that is related to this `FormChange`.""" + projectRevisionByProjectRevisionId: ProjectRevision + + """ + Our root query field type. Allows us to run any query from our mutation payload. + """ + query: Query +} + """ Table containing information about how CIF emission_intensity values map to a payment_percentage. This table is a lookup table that maps the emission intensity performance of a project to a payment percentage used to determine payments. @@ -44122,6 +45474,42 @@ type Form implements Node { """Table tracking individual changes to database records""" type FormChange implements Node { + """ + Computed column to return the actual performance milestone amount. + Calculation: + - Actual Performance Milestone Amount = (Maximum Performance Milestone Amount * Payment Percentage Of Performance Milestone Amount) / 100 + - Maximum Performance Milestone Amount is Holdback Amount To Date on front end code + + """ + actualPerformanceMilestoneAmount: BigFloat + + """ + Computed column to calculate the anticipated amount of funding for a project by fiscal year + """ + anticipatedFundingAmountPerFiscalYear( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: SumByFiscalYearFilter + + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + ): SumByFiscalYearsConnection! asEmissionIntensityReport: EmissionIntensityReport """ @@ -44129,6 +45517,11 @@ type FormChange implements Node { """ asProject: Project + """ + Computed column returns data from the new_form_data column as if it were an attachment record to allow graph traversal via the foreign keys. + """ + asProjectAttachment: ProjectAttachment + """ Computed column returns data from the new_form_data column as if it were a project_contact record to allow graph traversal via the foreign keys. """ @@ -44403,7 +45796,7 @@ type FormChange implements Node { grossPaymentsToDate: BigFloat """ - Computed column returns sum all holdback amounts for a project. Preference for value selection is adjustedHoldbackAmount > calculuatedHoldbackAmount > amount calculated via maximum milestone amount + Computed column returns sum all holdback amounts for a project. If any of the milestones have null values for adjustedHoldbackAmount and calculatedHoldbackAmount, then null is returned. Preference for value selection is adjustedHoldbackAmount > calculatedHoldbackAmount > amount calculated via maximum milestone amount """ holdbackAmountToDate: BigFloat @@ -44416,6 +45809,7 @@ type FormChange implements Node { """The name of the JSON schema to use for validation of this form data""" jsonSchemaName: String! + maximumPerformanceMilestoneAmount: BigFloat """ Computed column returns cumulative sum of all net payments. Preference for value selection is adjustedNetAmount > calculuatedNetAmount > amount calculated via maximum milestone amount @@ -44481,6 +45875,12 @@ type FormChange implements Node { orderBy: [ProjectRevisionsOrderBy!] = [PRIMARY_KEY_ASC] ): FormChangeProjectRevisionsByFormChangePreviousFormChangeIdAndProjectRevisionIdManyToManyConnection! + """Computed column returns the calculated proponents share percentage.""" + proponentsSharePercentage: BigFloat + + """Computed column to determine the rank of a project""" + rank: Int + """ A computed column to return the status for a reporting requirement form_change record based on the report_due_date and submitted_date """ @@ -44489,6 +45889,14 @@ type FormChange implements Node { """Unique ID for the form_change""" rowId: Int! + """ + Computed column to return the total project value. + Calculation: + - Total Project Value = Maximum Funding Amount + Proponent Cost + approved Additional Funding Amount(s) + + """ + totalProjectValue: BigFloat + """updated at timestamp""" updatedAt: Datetime! @@ -44742,6 +46150,9 @@ input FormChangeCondition { A filter to be used against `FormChange` object types. All fields are combined with a logical ‘and.’ """ input FormChangeFilter { + """Filter by the object’s `actualPerformanceMilestoneAmount` field.""" + actualPerformanceMilestoneAmount: BigFloatFilter + """Checks for all expressions in this list.""" and: [FormChangeFilter!] @@ -44823,6 +46234,9 @@ input FormChangeFilter { """Filter by the object’s `jsonSchemaName` field.""" jsonSchemaName: StringFilter + """Filter by the object’s `maximumPerformanceMilestoneAmount` field.""" + maximumPerformanceMilestoneAmount: BigFloatFilter + """Filter by the object’s `netPaymentsToDate` field.""" netPaymentsToDate: BigFloatFilter @@ -44853,12 +46267,21 @@ input FormChangeFilter { """Filter by the object’s `projectRevisionId` field.""" projectRevisionId: IntFilter + """Filter by the object’s `proponentsSharePercentage` field.""" + proponentsSharePercentage: BigFloatFilter + + """Filter by the object’s `rank` field.""" + rank: IntFilter + """Filter by the object’s `reportingRequirementStatus` field.""" reportingRequirementStatus: StringFilter """Filter by the object’s `rowId` field.""" rowId: IntFilter + """Filter by the object’s `totalProjectValue` field.""" + totalProjectValue: BigFloatFilter + """Filter by the object’s `updatedAt` field.""" updatedAt: DatetimeFilter @@ -49451,6 +50874,32 @@ input JSONFilter { notIn: [JSON!] } +"""All input for the `jsonbMinus` mutation.""" +input JsonbMinusInput { + """ + 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 + minuend: JSON! + subtrahend: JSON! +} + +"""The output of our `jsonbMinus` mutation.""" +type JsonbMinusPayload { + """ + 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 + json: JSON + + """ + Our root query field type. Allows us to run any query from our mutation payload. + """ + query: Query +} + type KeycloakJwt { acr: String aud: String @@ -50118,24 +51567,23 @@ enum MilestoneReportsOrderBy { The root mutation type which contains root level fields which mutate data. """ type Mutation { - addAdditionalFundingSourceToRevision( - """ - The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. - """ - input: AddAdditionalFundingSourceToRevisionInput! - ): AddAdditionalFundingSourceToRevisionPayload addContactToRevision( """ The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. """ input: AddContactToRevisionInput! ): AddContactToRevisionPayload - addEmissionIntensityReportToRevision( + + """ + Creates a new project_attachment form_change record for the given revision_id and attachment_id. + + """ + addProjectAttachmentToRevision( """ The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. """ - input: AddEmissionIntensityReportToRevisionInput! - ): AddEmissionIntensityReportToRevisionPayload + input: AddProjectAttachmentToRevisionInput! + ): AddProjectAttachmentToRevisionPayload """ Custom mutation to commit a form_change record via the API. Only used for records that are independent of a project such as the lists of contacts and operators. @@ -50284,6 +51732,14 @@ type Mutation { input: CreateProjectInput! ): CreateProjectPayload + """Creates a single `ProjectAttachment`.""" + createProjectAttachment( + """ + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + """ + input: CreateProjectAttachmentInput! + ): CreateProjectAttachmentPayload + """Creates a single `ProjectContact`.""" createProjectContact( """ @@ -50636,6 +52092,22 @@ type Mutation { input: DeleteMilestoneReportByRowIdInput! ): DeleteMilestoneReportPayload + """Deletes a single `ProjectAttachment` using its globally unique id.""" + deleteProjectAttachment( + """ + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + """ + input: DeleteProjectAttachmentInput! + ): DeleteProjectAttachmentPayload + + """Deletes a single `ProjectAttachment` using a unique key.""" + deleteProjectAttachmentByRowId( + """ + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + """ + input: DeleteProjectAttachmentByRowIdInput! + ): DeleteProjectAttachmentPayload + """Deletes a single `ProjectContact` using its globally unique id.""" deleteProjectContact( """ @@ -50826,6 +52298,12 @@ type Mutation { """ input: DiscardFundingParameterFormChangeInput! ): DiscardFundingParameterFormChangePayload + discardProjectAttachmentFormChange( + """ + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + """ + input: DiscardProjectAttachmentFormChangeInput! + ): DiscardProjectAttachmentFormChangePayload """ Custom mutation to generate annual reports for a revision between emissions intensity report_due_date and project_assets_life_end_date. @@ -50848,6 +52326,12 @@ type Mutation { """ input: GenerateQuarterlyReportsInput! ): GenerateQuarterlyReportsPayload + jsonbMinus( + """ + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + """ + input: JsonbMinusInput! + ): JsonbMinusPayload stageDirtyFormChanges( """ The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. @@ -51175,6 +52659,24 @@ type Mutation { input: UpdateOrCreateUserFromSessionInput! ): UpdateOrCreateUserFromSessionPayload + """ + Updates a single `ProjectAttachment` using its globally unique id and a patch. + """ + updateProjectAttachment( + """ + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + """ + input: UpdateProjectAttachmentInput! + ): UpdateProjectAttachmentPayload + + """Updates a single `ProjectAttachment` using a unique key and a patch.""" + updateProjectAttachmentByRowId( + """ + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + """ + input: UpdateProjectAttachmentByRowIdInput! + ): UpdateProjectAttachmentPayload + """ Updates a single `ProjectContact` using its globally unique id and a patch. """ @@ -52969,7 +54471,7 @@ type Project implements Node { archivedBy: Int """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByProjectId( + attachmentsByProjectAttachmentProjectIdAndAttachmentId( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -52992,7 +54494,7 @@ type Project implements Node { """ Indicates whether archived items should be included in the results or not. """ - includeArchived: IncludeArchivedOption = INHERIT + includeArchived: IncludeArchivedOption = NO """Only read the last `n` values of the set.""" last: Int @@ -53005,7 +54507,7 @@ type Project implements Node { """The method to use when ordering `Attachment`.""" orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - ): AttachmentsConnection! + ): ProjectAttachmentsByProjectAttachmentProjectIdAndAttachmentIdManyToManyConnection! """Reads and enables pagination through a set of `ChangeStatus`.""" changeStatusesByProjectRevisionProjectIdAndChangeStatus( @@ -53173,7 +54675,7 @@ type Project implements Node { ): ProjectCifUsersByAdditionalFundingSourceProjectIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByAttachmentProjectIdAndArchivedBy( + cifUsersByFundingParameterProjectIdAndArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -53209,10 +54711,10 @@ type Project implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectCifUsersByAttachmentProjectIdAndArchivedByManyToManyConnection! + ): ProjectCifUsersByFundingParameterProjectIdAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByAttachmentProjectIdAndCreatedBy( + cifUsersByFundingParameterProjectIdAndCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -53248,10 +54750,10 @@ type Project implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectCifUsersByAttachmentProjectIdAndCreatedByManyToManyConnection! + ): ProjectCifUsersByFundingParameterProjectIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByAttachmentProjectIdAndUpdatedBy( + cifUsersByFundingParameterProjectIdAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -53287,10 +54789,10 @@ type Project implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectCifUsersByAttachmentProjectIdAndUpdatedByManyToManyConnection! + ): ProjectCifUsersByFundingParameterProjectIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByFundingParameterProjectIdAndArchivedBy( + cifUsersByProjectAttachmentProjectIdAndArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -53326,10 +54828,10 @@ type Project implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectCifUsersByFundingParameterProjectIdAndArchivedByManyToManyConnection! + ): ProjectCifUsersByProjectAttachmentProjectIdAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByFundingParameterProjectIdAndCreatedBy( + cifUsersByProjectAttachmentProjectIdAndCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -53365,10 +54867,10 @@ type Project implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectCifUsersByFundingParameterProjectIdAndCreatedByManyToManyConnection! + ): ProjectCifUsersByProjectAttachmentProjectIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByFundingParameterProjectIdAndUpdatedBy( + cifUsersByProjectAttachmentProjectIdAndUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -53404,7 +54906,7 @@ type Project implements Node { """The method to use when ordering `CifUser`.""" orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectCifUsersByFundingParameterProjectIdAndUpdatedByManyToManyConnection! + ): ProjectCifUsersByProjectAttachmentProjectIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CifUser`.""" cifUsersByProjectContactProjectIdAndArchivedBy( @@ -53982,6 +55484,9 @@ type Project implements Node { """ latestCommittedProjectRevision: ProjectRevision + """Computed column returns the status of all milestones""" + milestoneStatus: String + """ Computed column to return the next milestone due date for a given project """ @@ -53993,14 +55498,56 @@ type Project implements Node { """Foreign key references the cif.operator table""" operatorId: Int! - """Returns the pending project revision for the project""" - pendingProjectRevision: ProjectRevision + """Returns the pending amendment for the project""" + pendingAmendment: ProjectRevision + + """Returns the pending general revision for the project""" + pendingGeneralRevision: ProjectRevision """ Returns a concatenated list of the project managers (used for filtering the projects table) """ primaryManagers: String + """Reads and enables pagination through a set of `ProjectAttachment`.""" + projectAttachmentsByProjectId( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ProjectAttachmentCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ProjectAttachmentFilter + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = INHERIT + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `ProjectAttachment`.""" + orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectAttachmentsConnection! + """Reads and enables pagination through a set of `ProjectContact`.""" projectContactsByProjectId( """Read all values in the set after (below) this cursor.""" @@ -54163,45 +55710,6 @@ type Project implements Node { """ projectStatusId: Int! - """Reads and enables pagination through a set of `ProjectStatus`.""" - projectStatusesByAttachmentProjectIdAndProjectStatusId( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ProjectStatusCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ProjectStatusFilter - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = NO - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `ProjectStatus`.""" - orderBy: [ProjectStatusesOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectProjectStatusesByAttachmentProjectIdAndProjectStatusIdManyToManyConnection! - """The type of the project (e.g. fuel switching)""" projectType: String @@ -54467,6 +55975,478 @@ type ProjectAdditionalFundingSourceStatusesByAdditionalFundingSourceProjectIdAnd node: AdditionalFundingSourceStatus } +"""Join table to track assignment of attachments to projects""" +type ProjectAttachment implements Node { + """archived at timestamp""" + archivedAt: Datetime + + """archived by user id""" + archivedBy: Int + + """ + Reads a single `Attachment` that is related to this `ProjectAttachment`. + """ + attachmentByAttachmentId: Attachment + + """Foreign key to the attachment""" + attachmentId: Int! + + """Reads a single `CifUser` that is related to this `ProjectAttachment`.""" + cifUserByArchivedBy: CifUser + + """Reads a single `CifUser` that is related to this `ProjectAttachment`.""" + cifUserByCreatedBy: CifUser + + """Reads a single `CifUser` that is related to this `ProjectAttachment`.""" + cifUserByUpdatedBy: CifUser + + """created at timestamp""" + createdAt: Datetime! + + """created by user id""" + createdBy: Int + + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! + + """Reads a single `Project` that is related to this `ProjectAttachment`.""" + projectByProjectId: Project + + """Foreign key to the project""" + projectId: Int! + + """Unique ID for the project attachment record""" + rowId: Int! + + """updated at timestamp""" + updatedAt: Datetime! + + """updated by user id""" + updatedBy: Int +} + +""" +A condition to be used against `ProjectAttachment` object types. All fields are +tested for equality and combined with a logical ‘and.’ +""" +input ProjectAttachmentCondition { + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `attachmentId` field.""" + attachmentId: Int + + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """Checks for equality with the object’s `projectId` field.""" + projectId: Int + + """Checks for equality with the object’s `rowId` field.""" + rowId: Int + + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime + + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int +} + +""" +A filter to be used against `ProjectAttachment` object types. All fields are combined with a logical ‘and.’ +""" +input ProjectAttachmentFilter { + """Checks for all expressions in this list.""" + and: [ProjectAttachmentFilter!] + + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter + + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter + + """Filter by the object’s `attachmentByAttachmentId` relation.""" + attachmentByAttachmentId: AttachmentFilter + + """Filter by the object’s `attachmentId` field.""" + attachmentId: IntFilter + + """Filter by the object’s `cifUserByArchivedBy` relation.""" + cifUserByArchivedBy: CifUserFilter + + """A related `cifUserByArchivedBy` exists.""" + cifUserByArchivedByExists: Boolean + + """Filter by the object’s `cifUserByCreatedBy` relation.""" + cifUserByCreatedBy: CifUserFilter + + """A related `cifUserByCreatedBy` exists.""" + cifUserByCreatedByExists: Boolean + + """Filter by the object’s `cifUserByUpdatedBy` relation.""" + cifUserByUpdatedBy: CifUserFilter + + """A related `cifUserByUpdatedBy` exists.""" + cifUserByUpdatedByExists: Boolean + + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter + + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter + + """Negates the expression.""" + not: ProjectAttachmentFilter + + """Checks for any expressions in this list.""" + or: [ProjectAttachmentFilter!] + + """Filter by the object’s `projectByProjectId` relation.""" + projectByProjectId: ProjectFilter + + """Filter by the object’s `projectId` field.""" + projectId: IntFilter + + """Filter by the object’s `rowId` field.""" + rowId: IntFilter + + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter + + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter +} + +"""An input for mutations affecting `ProjectAttachment`""" +input ProjectAttachmentInput { + """archived at timestamp""" + archivedAt: Datetime + + """archived by user id""" + archivedBy: Int + + """Foreign key to the attachment""" + attachmentId: Int! + + """created at timestamp""" + createdAt: Datetime + + """created by user id""" + createdBy: Int + + """Foreign key to the project""" + projectId: Int! + + """updated at timestamp""" + updatedAt: Datetime + + """updated by user id""" + updatedBy: Int +} + +""" +Represents an update to a `ProjectAttachment`. Fields that are set will be updated. +""" +input ProjectAttachmentPatch { + """archived at timestamp""" + archivedAt: Datetime + + """archived by user id""" + archivedBy: Int + + """Foreign key to the attachment""" + attachmentId: Int + + """created at timestamp""" + createdAt: Datetime + + """created by user id""" + createdBy: Int + + """Foreign key to the project""" + projectId: Int + + """updated at timestamp""" + updatedAt: Datetime + + """updated by user id""" + updatedBy: Int +} + +""" +A connection to a list of `Attachment` values, with data from `ProjectAttachment`. +""" +type ProjectAttachmentsByProjectAttachmentProjectIdAndAttachmentIdManyToManyConnection { + """ + A list of edges which contains the `Attachment`, info from the `ProjectAttachment`, and the cursor to aid in pagination. + """ + edges: [ProjectAttachmentsByProjectAttachmentProjectIdAndAttachmentIdManyToManyEdge!]! + + """A list of `Attachment` objects.""" + nodes: [Attachment]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `Attachment` you could get from the connection.""" + totalCount: Int! +} + +""" +A `Attachment` edge in the connection, with data from `ProjectAttachment`. +""" +type ProjectAttachmentsByProjectAttachmentProjectIdAndAttachmentIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Attachment` at the end of the edge.""" + node: Attachment + + """Reads and enables pagination through a set of `ProjectAttachment`.""" + projectAttachmentsByAttachmentId( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ProjectAttachmentCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ProjectAttachmentFilter + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = NO + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `ProjectAttachment`.""" + orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectAttachmentsConnection! +} + +"""A connection to a list of `ProjectAttachment` values.""" +type ProjectAttachmentsConnection { + """ + A list of edges which contains the `ProjectAttachment` and cursor to aid in pagination. + """ + edges: [ProjectAttachmentsEdge!]! + + """A list of `ProjectAttachment` objects.""" + nodes: [ProjectAttachment]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """ + The count of *all* `ProjectAttachment` you could get from the connection. + """ + totalCount: Int! +} + +"""A `ProjectAttachment` edge in the connection.""" +type ProjectAttachmentsEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `ProjectAttachment` at the end of the edge.""" + node: ProjectAttachment +} + +"""Methods to use when ordering `ProjectAttachment`.""" +enum ProjectAttachmentsOrderBy { + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ATTACHMENT_BY_ATTACHMENT_ID__ARCHIVED_AT_ASC + ATTACHMENT_BY_ATTACHMENT_ID__ARCHIVED_AT_DESC + ATTACHMENT_BY_ATTACHMENT_ID__ARCHIVED_BY_ASC + ATTACHMENT_BY_ATTACHMENT_ID__ARCHIVED_BY_DESC + ATTACHMENT_BY_ATTACHMENT_ID__CREATED_AT_ASC + ATTACHMENT_BY_ATTACHMENT_ID__CREATED_AT_DESC + ATTACHMENT_BY_ATTACHMENT_ID__CREATED_BY_ASC + ATTACHMENT_BY_ATTACHMENT_ID__CREATED_BY_DESC + ATTACHMENT_BY_ATTACHMENT_ID__DESCRIPTION_ASC + ATTACHMENT_BY_ATTACHMENT_ID__DESCRIPTION_DESC + ATTACHMENT_BY_ATTACHMENT_ID__FILE_ASC + ATTACHMENT_BY_ATTACHMENT_ID__FILE_DESC + ATTACHMENT_BY_ATTACHMENT_ID__FILE_NAME_ASC + ATTACHMENT_BY_ATTACHMENT_ID__FILE_NAME_DESC + ATTACHMENT_BY_ATTACHMENT_ID__FILE_SIZE_ASC + ATTACHMENT_BY_ATTACHMENT_ID__FILE_SIZE_DESC + ATTACHMENT_BY_ATTACHMENT_ID__FILE_TYPE_ASC + ATTACHMENT_BY_ATTACHMENT_ID__FILE_TYPE_DESC + ATTACHMENT_BY_ATTACHMENT_ID__ID_ASC + ATTACHMENT_BY_ATTACHMENT_ID__ID_DESC + ATTACHMENT_BY_ATTACHMENT_ID__UPDATED_AT_ASC + ATTACHMENT_BY_ATTACHMENT_ID__UPDATED_AT_DESC + ATTACHMENT_BY_ATTACHMENT_ID__UPDATED_BY_ASC + ATTACHMENT_BY_ATTACHMENT_ID__UPDATED_BY_DESC + ATTACHMENT_ID_ASC + ATTACHMENT_ID_DESC + CIF_USER_BY_ARCHIVED_BY__ALLOW_SUB_UPDATE_ASC + CIF_USER_BY_ARCHIVED_BY__ALLOW_SUB_UPDATE_DESC + CIF_USER_BY_ARCHIVED_BY__ARCHIVED_AT_ASC + CIF_USER_BY_ARCHIVED_BY__ARCHIVED_AT_DESC + CIF_USER_BY_ARCHIVED_BY__ARCHIVED_BY_ASC + CIF_USER_BY_ARCHIVED_BY__ARCHIVED_BY_DESC + CIF_USER_BY_ARCHIVED_BY__CREATED_AT_ASC + CIF_USER_BY_ARCHIVED_BY__CREATED_AT_DESC + CIF_USER_BY_ARCHIVED_BY__CREATED_BY_ASC + CIF_USER_BY_ARCHIVED_BY__CREATED_BY_DESC + CIF_USER_BY_ARCHIVED_BY__EMAIL_ADDRESS_ASC + CIF_USER_BY_ARCHIVED_BY__EMAIL_ADDRESS_DESC + CIF_USER_BY_ARCHIVED_BY__FAMILY_NAME_ASC + CIF_USER_BY_ARCHIVED_BY__FAMILY_NAME_DESC + CIF_USER_BY_ARCHIVED_BY__FULL_NAME_ASC + CIF_USER_BY_ARCHIVED_BY__FULL_NAME_DESC + CIF_USER_BY_ARCHIVED_BY__GIVEN_NAME_ASC + CIF_USER_BY_ARCHIVED_BY__GIVEN_NAME_DESC + CIF_USER_BY_ARCHIVED_BY__ID_ASC + CIF_USER_BY_ARCHIVED_BY__ID_DESC + CIF_USER_BY_ARCHIVED_BY__SESSION_SUB_ASC + CIF_USER_BY_ARCHIVED_BY__SESSION_SUB_DESC + CIF_USER_BY_ARCHIVED_BY__UPDATED_AT_ASC + CIF_USER_BY_ARCHIVED_BY__UPDATED_AT_DESC + CIF_USER_BY_ARCHIVED_BY__UPDATED_BY_ASC + CIF_USER_BY_ARCHIVED_BY__UPDATED_BY_DESC + CIF_USER_BY_CREATED_BY__ALLOW_SUB_UPDATE_ASC + CIF_USER_BY_CREATED_BY__ALLOW_SUB_UPDATE_DESC + CIF_USER_BY_CREATED_BY__ARCHIVED_AT_ASC + CIF_USER_BY_CREATED_BY__ARCHIVED_AT_DESC + CIF_USER_BY_CREATED_BY__ARCHIVED_BY_ASC + CIF_USER_BY_CREATED_BY__ARCHIVED_BY_DESC + CIF_USER_BY_CREATED_BY__CREATED_AT_ASC + CIF_USER_BY_CREATED_BY__CREATED_AT_DESC + CIF_USER_BY_CREATED_BY__CREATED_BY_ASC + CIF_USER_BY_CREATED_BY__CREATED_BY_DESC + CIF_USER_BY_CREATED_BY__EMAIL_ADDRESS_ASC + CIF_USER_BY_CREATED_BY__EMAIL_ADDRESS_DESC + CIF_USER_BY_CREATED_BY__FAMILY_NAME_ASC + CIF_USER_BY_CREATED_BY__FAMILY_NAME_DESC + CIF_USER_BY_CREATED_BY__FULL_NAME_ASC + CIF_USER_BY_CREATED_BY__FULL_NAME_DESC + CIF_USER_BY_CREATED_BY__GIVEN_NAME_ASC + CIF_USER_BY_CREATED_BY__GIVEN_NAME_DESC + CIF_USER_BY_CREATED_BY__ID_ASC + CIF_USER_BY_CREATED_BY__ID_DESC + CIF_USER_BY_CREATED_BY__SESSION_SUB_ASC + CIF_USER_BY_CREATED_BY__SESSION_SUB_DESC + CIF_USER_BY_CREATED_BY__UPDATED_AT_ASC + CIF_USER_BY_CREATED_BY__UPDATED_AT_DESC + CIF_USER_BY_CREATED_BY__UPDATED_BY_ASC + CIF_USER_BY_CREATED_BY__UPDATED_BY_DESC + CIF_USER_BY_UPDATED_BY__ALLOW_SUB_UPDATE_ASC + CIF_USER_BY_UPDATED_BY__ALLOW_SUB_UPDATE_DESC + CIF_USER_BY_UPDATED_BY__ARCHIVED_AT_ASC + CIF_USER_BY_UPDATED_BY__ARCHIVED_AT_DESC + CIF_USER_BY_UPDATED_BY__ARCHIVED_BY_ASC + CIF_USER_BY_UPDATED_BY__ARCHIVED_BY_DESC + CIF_USER_BY_UPDATED_BY__CREATED_AT_ASC + CIF_USER_BY_UPDATED_BY__CREATED_AT_DESC + CIF_USER_BY_UPDATED_BY__CREATED_BY_ASC + CIF_USER_BY_UPDATED_BY__CREATED_BY_DESC + CIF_USER_BY_UPDATED_BY__EMAIL_ADDRESS_ASC + CIF_USER_BY_UPDATED_BY__EMAIL_ADDRESS_DESC + CIF_USER_BY_UPDATED_BY__FAMILY_NAME_ASC + CIF_USER_BY_UPDATED_BY__FAMILY_NAME_DESC + CIF_USER_BY_UPDATED_BY__FULL_NAME_ASC + CIF_USER_BY_UPDATED_BY__FULL_NAME_DESC + CIF_USER_BY_UPDATED_BY__GIVEN_NAME_ASC + CIF_USER_BY_UPDATED_BY__GIVEN_NAME_DESC + CIF_USER_BY_UPDATED_BY__ID_ASC + CIF_USER_BY_UPDATED_BY__ID_DESC + CIF_USER_BY_UPDATED_BY__SESSION_SUB_ASC + CIF_USER_BY_UPDATED_BY__SESSION_SUB_DESC + CIF_USER_BY_UPDATED_BY__UPDATED_AT_ASC + CIF_USER_BY_UPDATED_BY__UPDATED_AT_DESC + CIF_USER_BY_UPDATED_BY__UPDATED_BY_ASC + CIF_USER_BY_UPDATED_BY__UPDATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + CREATED_BY_ASC + CREATED_BY_DESC + ID_ASC + ID_DESC + NATURAL + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC + PROJECT_BY_PROJECT_ID__ADDITIONAL_SECTOR_INFORMATION_ASC + PROJECT_BY_PROJECT_ID__ADDITIONAL_SECTOR_INFORMATION_DESC + PROJECT_BY_PROJECT_ID__ARCHIVED_AT_ASC + PROJECT_BY_PROJECT_ID__ARCHIVED_AT_DESC + PROJECT_BY_PROJECT_ID__ARCHIVED_BY_ASC + PROJECT_BY_PROJECT_ID__ARCHIVED_BY_DESC + PROJECT_BY_PROJECT_ID__COMMENTS_ASC + PROJECT_BY_PROJECT_ID__COMMENTS_DESC + PROJECT_BY_PROJECT_ID__CONTRACT_NUMBER_ASC + PROJECT_BY_PROJECT_ID__CONTRACT_NUMBER_DESC + PROJECT_BY_PROJECT_ID__CREATED_AT_ASC + PROJECT_BY_PROJECT_ID__CREATED_AT_DESC + PROJECT_BY_PROJECT_ID__CREATED_BY_ASC + PROJECT_BY_PROJECT_ID__CREATED_BY_DESC + PROJECT_BY_PROJECT_ID__FUNDING_STREAM_RFP_ID_ASC + PROJECT_BY_PROJECT_ID__FUNDING_STREAM_RFP_ID_DESC + PROJECT_BY_PROJECT_ID__ID_ASC + PROJECT_BY_PROJECT_ID__ID_DESC + PROJECT_BY_PROJECT_ID__NEXT_MILESTONE_DUE_DATE_ASC + PROJECT_BY_PROJECT_ID__NEXT_MILESTONE_DUE_DATE_DESC + PROJECT_BY_PROJECT_ID__OPERATOR_ID_ASC + PROJECT_BY_PROJECT_ID__OPERATOR_ID_DESC + PROJECT_BY_PROJECT_ID__PROJECT_NAME_ASC + PROJECT_BY_PROJECT_ID__PROJECT_NAME_DESC + PROJECT_BY_PROJECT_ID__PROJECT_STATUS_ID_ASC + PROJECT_BY_PROJECT_ID__PROJECT_STATUS_ID_DESC + PROJECT_BY_PROJECT_ID__PROJECT_TYPE_ASC + PROJECT_BY_PROJECT_ID__PROJECT_TYPE_DESC + PROJECT_BY_PROJECT_ID__PROPOSAL_REFERENCE_ASC + PROJECT_BY_PROJECT_ID__PROPOSAL_REFERENCE_DESC + PROJECT_BY_PROJECT_ID__SCORE_ASC + PROJECT_BY_PROJECT_ID__SCORE_DESC + PROJECT_BY_PROJECT_ID__SECTOR_NAME_ASC + PROJECT_BY_PROJECT_ID__SECTOR_NAME_DESC + PROJECT_BY_PROJECT_ID__SUMMARY_ASC + PROJECT_BY_PROJECT_ID__SUMMARY_DESC + PROJECT_BY_PROJECT_ID__TOTAL_FUNDING_REQUEST_ASC + PROJECT_BY_PROJECT_ID__TOTAL_FUNDING_REQUEST_DESC + PROJECT_BY_PROJECT_ID__UPDATED_AT_ASC + PROJECT_BY_PROJECT_ID__UPDATED_AT_DESC + PROJECT_BY_PROJECT_ID__UPDATED_BY_ASC + PROJECT_BY_PROJECT_ID__UPDATED_BY_DESC + PROJECT_ID_ASC + PROJECT_ID_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC +} + """ A connection to a list of `ChangeStatus` values, with data from `ProjectRevision`. """ @@ -54745,13 +56725,13 @@ type ProjectCifUsersByAdditionalFundingSourceProjectIdAndUpdatedByManyToManyEdge } """ -A connection to a list of `CifUser` values, with data from `Attachment`. +A connection to a list of `CifUser` values, with data from `FundingParameter`. """ -type ProjectCifUsersByAttachmentProjectIdAndArchivedByManyToManyConnection { +type ProjectCifUsersByFundingParameterProjectIdAndArchivedByManyToManyConnection { """ - A list of edges which contains the `CifUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CifUser`, info from the `FundingParameter`, and the cursor to aid in pagination. """ - edges: [ProjectCifUsersByAttachmentProjectIdAndArchivedByManyToManyEdge!]! + edges: [ProjectCifUsersByFundingParameterProjectIdAndArchivedByManyToManyEdge!]! """A list of `CifUser` objects.""" nodes: [CifUser]! @@ -54763,10 +56743,13 @@ type ProjectCifUsersByAttachmentProjectIdAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CifUser` edge in the connection, with data from `Attachment`.""" -type ProjectCifUsersByAttachmentProjectIdAndArchivedByManyToManyEdge { - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByArchivedBy( +"""A `CifUser` edge in the connection, with data from `FundingParameter`.""" +type ProjectCifUsersByFundingParameterProjectIdAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """Reads and enables pagination through a set of `FundingParameter`.""" + fundingParametersByArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -54776,12 +56759,12 @@ type ProjectCifUsersByAttachmentProjectIdAndArchivedByManyToManyEdge { """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: FundingParameterCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter + filter: FundingParameterFilter """Only read the first `n` values of the set.""" first: Int @@ -54800,25 +56783,22 @@ type ProjectCifUsersByAttachmentProjectIdAndArchivedByManyToManyEdge { """ offset: Int - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - ): AttachmentsConnection! - - """A cursor for use in pagination.""" - cursor: Cursor + """The method to use when ordering `FundingParameter`.""" + orderBy: [FundingParametersOrderBy!] = [PRIMARY_KEY_ASC] + ): FundingParametersConnection! """The `CifUser` at the end of the edge.""" node: CifUser } """ -A connection to a list of `CifUser` values, with data from `Attachment`. +A connection to a list of `CifUser` values, with data from `FundingParameter`. """ -type ProjectCifUsersByAttachmentProjectIdAndCreatedByManyToManyConnection { +type ProjectCifUsersByFundingParameterProjectIdAndCreatedByManyToManyConnection { """ - A list of edges which contains the `CifUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CifUser`, info from the `FundingParameter`, and the cursor to aid in pagination. """ - edges: [ProjectCifUsersByAttachmentProjectIdAndCreatedByManyToManyEdge!]! + edges: [ProjectCifUsersByFundingParameterProjectIdAndCreatedByManyToManyEdge!]! """A list of `CifUser` objects.""" nodes: [CifUser]! @@ -54830,10 +56810,13 @@ type ProjectCifUsersByAttachmentProjectIdAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CifUser` edge in the connection, with data from `Attachment`.""" -type ProjectCifUsersByAttachmentProjectIdAndCreatedByManyToManyEdge { - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByCreatedBy( +"""A `CifUser` edge in the connection, with data from `FundingParameter`.""" +type ProjectCifUsersByFundingParameterProjectIdAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """Reads and enables pagination through a set of `FundingParameter`.""" + fundingParametersByCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -54843,12 +56826,12 @@ type ProjectCifUsersByAttachmentProjectIdAndCreatedByManyToManyEdge { """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: FundingParameterCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter + filter: FundingParameterFilter """Only read the first `n` values of the set.""" first: Int @@ -54867,25 +56850,22 @@ type ProjectCifUsersByAttachmentProjectIdAndCreatedByManyToManyEdge { """ offset: Int - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - ): AttachmentsConnection! - - """A cursor for use in pagination.""" - cursor: Cursor + """The method to use when ordering `FundingParameter`.""" + orderBy: [FundingParametersOrderBy!] = [PRIMARY_KEY_ASC] + ): FundingParametersConnection! """The `CifUser` at the end of the edge.""" node: CifUser } """ -A connection to a list of `CifUser` values, with data from `Attachment`. +A connection to a list of `CifUser` values, with data from `FundingParameter`. """ -type ProjectCifUsersByAttachmentProjectIdAndUpdatedByManyToManyConnection { +type ProjectCifUsersByFundingParameterProjectIdAndUpdatedByManyToManyConnection { """ - A list of edges which contains the `CifUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CifUser`, info from the `FundingParameter`, and the cursor to aid in pagination. """ - edges: [ProjectCifUsersByAttachmentProjectIdAndUpdatedByManyToManyEdge!]! + edges: [ProjectCifUsersByFundingParameterProjectIdAndUpdatedByManyToManyEdge!]! """A list of `CifUser` objects.""" nodes: [CifUser]! @@ -54897,10 +56877,13 @@ type ProjectCifUsersByAttachmentProjectIdAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CifUser` edge in the connection, with data from `Attachment`.""" -type ProjectCifUsersByAttachmentProjectIdAndUpdatedByManyToManyEdge { - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByUpdatedBy( +"""A `CifUser` edge in the connection, with data from `FundingParameter`.""" +type ProjectCifUsersByFundingParameterProjectIdAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """Reads and enables pagination through a set of `FundingParameter`.""" + fundingParametersByUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -54910,12 +56893,12 @@ type ProjectCifUsersByAttachmentProjectIdAndUpdatedByManyToManyEdge { """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: FundingParameterCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter + filter: FundingParameterFilter """Only read the first `n` values of the set.""" first: Int @@ -54934,25 +56917,22 @@ type ProjectCifUsersByAttachmentProjectIdAndUpdatedByManyToManyEdge { """ offset: Int - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - ): AttachmentsConnection! - - """A cursor for use in pagination.""" - cursor: Cursor + """The method to use when ordering `FundingParameter`.""" + orderBy: [FundingParametersOrderBy!] = [PRIMARY_KEY_ASC] + ): FundingParametersConnection! """The `CifUser` at the end of the edge.""" node: CifUser } """ -A connection to a list of `CifUser` values, with data from `FundingParameter`. +A connection to a list of `CifUser` values, with data from `ProjectAttachment`. """ -type ProjectCifUsersByFundingParameterProjectIdAndArchivedByManyToManyConnection { +type ProjectCifUsersByProjectAttachmentProjectIdAndArchivedByManyToManyConnection { """ - A list of edges which contains the `CifUser`, info from the `FundingParameter`, and the cursor to aid in pagination. + A list of edges which contains the `CifUser`, info from the `ProjectAttachment`, and the cursor to aid in pagination. """ - edges: [ProjectCifUsersByFundingParameterProjectIdAndArchivedByManyToManyEdge!]! + edges: [ProjectCifUsersByProjectAttachmentProjectIdAndArchivedByManyToManyEdge!]! """A list of `CifUser` objects.""" nodes: [CifUser]! @@ -54964,13 +56944,18 @@ type ProjectCifUsersByFundingParameterProjectIdAndArchivedByManyToManyConnection totalCount: Int! } -"""A `CifUser` edge in the connection, with data from `FundingParameter`.""" -type ProjectCifUsersByFundingParameterProjectIdAndArchivedByManyToManyEdge { +""" +A `CifUser` edge in the connection, with data from `ProjectAttachment`. +""" +type ProjectCifUsersByProjectAttachmentProjectIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """Reads and enables pagination through a set of `FundingParameter`.""" - fundingParametersByArchivedBy( + """The `CifUser` at the end of the edge.""" + node: CifUser + + """Reads and enables pagination through a set of `ProjectAttachment`.""" + projectAttachmentsByArchivedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -54980,12 +56965,12 @@ type ProjectCifUsersByFundingParameterProjectIdAndArchivedByManyToManyEdge { """ A condition to be used in determining which values should be returned by the collection. """ - condition: FundingParameterCondition + condition: ProjectAttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FundingParameterFilter + filter: ProjectAttachmentFilter """Only read the first `n` values of the set.""" first: Int @@ -55004,22 +56989,19 @@ type ProjectCifUsersByFundingParameterProjectIdAndArchivedByManyToManyEdge { """ offset: Int - """The method to use when ordering `FundingParameter`.""" - orderBy: [FundingParametersOrderBy!] = [PRIMARY_KEY_ASC] - ): FundingParametersConnection! - - """The `CifUser` at the end of the edge.""" - node: CifUser + """The method to use when ordering `ProjectAttachment`.""" + orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectAttachmentsConnection! } """ -A connection to a list of `CifUser` values, with data from `FundingParameter`. +A connection to a list of `CifUser` values, with data from `ProjectAttachment`. """ -type ProjectCifUsersByFundingParameterProjectIdAndCreatedByManyToManyConnection { +type ProjectCifUsersByProjectAttachmentProjectIdAndCreatedByManyToManyConnection { """ - A list of edges which contains the `CifUser`, info from the `FundingParameter`, and the cursor to aid in pagination. + A list of edges which contains the `CifUser`, info from the `ProjectAttachment`, and the cursor to aid in pagination. """ - edges: [ProjectCifUsersByFundingParameterProjectIdAndCreatedByManyToManyEdge!]! + edges: [ProjectCifUsersByProjectAttachmentProjectIdAndCreatedByManyToManyEdge!]! """A list of `CifUser` objects.""" nodes: [CifUser]! @@ -55031,13 +57013,18 @@ type ProjectCifUsersByFundingParameterProjectIdAndCreatedByManyToManyConnection totalCount: Int! } -"""A `CifUser` edge in the connection, with data from `FundingParameter`.""" -type ProjectCifUsersByFundingParameterProjectIdAndCreatedByManyToManyEdge { +""" +A `CifUser` edge in the connection, with data from `ProjectAttachment`. +""" +type ProjectCifUsersByProjectAttachmentProjectIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """Reads and enables pagination through a set of `FundingParameter`.""" - fundingParametersByCreatedBy( + """The `CifUser` at the end of the edge.""" + node: CifUser + + """Reads and enables pagination through a set of `ProjectAttachment`.""" + projectAttachmentsByCreatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -55047,12 +57034,12 @@ type ProjectCifUsersByFundingParameterProjectIdAndCreatedByManyToManyEdge { """ A condition to be used in determining which values should be returned by the collection. """ - condition: FundingParameterCondition + condition: ProjectAttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FundingParameterFilter + filter: ProjectAttachmentFilter """Only read the first `n` values of the set.""" first: Int @@ -55071,22 +57058,19 @@ type ProjectCifUsersByFundingParameterProjectIdAndCreatedByManyToManyEdge { """ offset: Int - """The method to use when ordering `FundingParameter`.""" - orderBy: [FundingParametersOrderBy!] = [PRIMARY_KEY_ASC] - ): FundingParametersConnection! - - """The `CifUser` at the end of the edge.""" - node: CifUser + """The method to use when ordering `ProjectAttachment`.""" + orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectAttachmentsConnection! } """ -A connection to a list of `CifUser` values, with data from `FundingParameter`. +A connection to a list of `CifUser` values, with data from `ProjectAttachment`. """ -type ProjectCifUsersByFundingParameterProjectIdAndUpdatedByManyToManyConnection { +type ProjectCifUsersByProjectAttachmentProjectIdAndUpdatedByManyToManyConnection { """ - A list of edges which contains the `CifUser`, info from the `FundingParameter`, and the cursor to aid in pagination. + A list of edges which contains the `CifUser`, info from the `ProjectAttachment`, and the cursor to aid in pagination. """ - edges: [ProjectCifUsersByFundingParameterProjectIdAndUpdatedByManyToManyEdge!]! + edges: [ProjectCifUsersByProjectAttachmentProjectIdAndUpdatedByManyToManyEdge!]! """A list of `CifUser` objects.""" nodes: [CifUser]! @@ -55098,13 +57082,18 @@ type ProjectCifUsersByFundingParameterProjectIdAndUpdatedByManyToManyConnection totalCount: Int! } -"""A `CifUser` edge in the connection, with data from `FundingParameter`.""" -type ProjectCifUsersByFundingParameterProjectIdAndUpdatedByManyToManyEdge { +""" +A `CifUser` edge in the connection, with data from `ProjectAttachment`. +""" +type ProjectCifUsersByProjectAttachmentProjectIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """Reads and enables pagination through a set of `FundingParameter`.""" - fundingParametersByUpdatedBy( + """The `CifUser` at the end of the edge.""" + node: CifUser + + """Reads and enables pagination through a set of `ProjectAttachment`.""" + projectAttachmentsByUpdatedBy( """Read all values in the set after (below) this cursor.""" after: Cursor @@ -55114,12 +57103,12 @@ type ProjectCifUsersByFundingParameterProjectIdAndUpdatedByManyToManyEdge { """ A condition to be used in determining which values should be returned by the collection. """ - condition: FundingParameterCondition + condition: ProjectAttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FundingParameterFilter + filter: ProjectAttachmentFilter """Only read the first `n` values of the set.""" first: Int @@ -55138,12 +57127,9 @@ type ProjectCifUsersByFundingParameterProjectIdAndUpdatedByManyToManyEdge { """ offset: Int - """The method to use when ordering `FundingParameter`.""" - orderBy: [FundingParametersOrderBy!] = [PRIMARY_KEY_ASC] - ): FundingParametersConnection! - - """The `CifUser` at the end of the edge.""" - node: CifUser + """The method to use when ordering `ProjectAttachment`.""" + orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectAttachmentsConnection! } """ @@ -56531,12 +58517,6 @@ input ProjectFilter { """Filter by the object’s `archivedBy` field.""" archivedBy: IntFilter - """Filter by the object’s `attachmentsByProjectId` relation.""" - attachmentsByProjectId: ProjectToManyAttachmentFilter - - """Some related `attachmentsByProjectId` exist.""" - attachmentsByProjectIdExist: Boolean - """Filter by the object’s `cifUserByArchivedBy` relation.""" cifUserByArchivedBy: CifUserFilter @@ -56581,6 +58561,9 @@ input ProjectFilter { """Filter by the object’s `fundingStreamRfpId` field.""" fundingStreamRfpId: IntFilter + """Filter by the object’s `milestoneStatus` field.""" + milestoneStatus: StringFilter + """Filter by the object’s `nextMilestoneDueDate` field.""" nextMilestoneDueDate: DatetimeFilter @@ -56599,6 +58582,12 @@ input ProjectFilter { """Filter by the object’s `primaryManagers` field.""" primaryManagers: StringFilter + """Filter by the object’s `projectAttachmentsByProjectId` relation.""" + projectAttachmentsByProjectId: ProjectToManyProjectAttachmentFilter + + """Some related `projectAttachmentsByProjectId` exist.""" + projectAttachmentsByProjectIdExist: Boolean + """Filter by the object’s `projectContactsByProjectId` relation.""" projectContactsByProjectId: ProjectToManyProjectContactFilter @@ -58108,73 +60097,6 @@ type ProjectProjectManagerLabelsByProjectManagerProjectIdAndProjectManagerLabelI ): ProjectManagersConnection! } -""" -A connection to a list of `ProjectStatus` values, with data from `Attachment`. -""" -type ProjectProjectStatusesByAttachmentProjectIdAndProjectStatusIdManyToManyConnection { - """ - A list of edges which contains the `ProjectStatus`, info from the `Attachment`, and the cursor to aid in pagination. - """ - edges: [ProjectProjectStatusesByAttachmentProjectIdAndProjectStatusIdManyToManyEdge!]! - - """A list of `ProjectStatus` objects.""" - nodes: [ProjectStatus]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `ProjectStatus` you could get from the connection.""" - totalCount: Int! -} - -"""A `ProjectStatus` edge in the connection, with data from `Attachment`.""" -type ProjectProjectStatusesByAttachmentProjectIdAndProjectStatusIdManyToManyEdge { - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByProjectStatusId( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - 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 - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = NO - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - ): AttachmentsConnection! - - """A cursor for use in pagination.""" - cursor: Cursor - - """The `ProjectStatus` at the end of the edge.""" - node: ProjectStatus -} - """ A connection to a list of `ReportType` values, with data from `ReportingRequirement`. """ @@ -58285,34 +60207,6 @@ type ProjectRevision implements Node { orderBy: [AmendmentTypesOrderBy!] = [PRIMARY_KEY_ASC] ): ProjectRevisionAmendmentTypesByProjectRevisionAmendmentTypeProjectRevisionIdAndAmendmentTypeManyToManyConnection! - """ - Computed column to calculate the anticipated amount of funding for a project by fiscal year - """ - anticipatedFundingAmountPerFiscalYear( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: SumByFiscalYearFilter - - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - ): SumByFiscalYearsConnection! - """Explanation of why the revision was made""" changeReason: String @@ -58647,7 +60541,7 @@ type ProjectRevision implements Node { ): FormChangesConnection! """ - Computed column to dynamically retrieve the form_change records relating to the project_revision from a given table + Computed column to dynamically retrieve the form_change record relating to the project_revision from a given table """ formChangesFor( """Read all values in the set after (below) this cursor.""" @@ -58729,6 +60623,34 @@ type ProjectRevision implements Node { """ isFirstRevision: Boolean + """Reads and enables pagination through a set of `FormChange`.""" + latestCommittedFormChangesFor( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormChangeFilter + + """Only read the first `n` values of the set.""" + first: Int + formDataTableName: String! + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + reportType: String + ): FormChangesConnection! + """ Computed column to return both form completion statuses and reporting requirement statuses for individual milestones """ @@ -58838,9 +60760,6 @@ type ProjectRevision implements Node { orderBy: [ProjectRevisionAmendmentTypesOrderBy!] = [PRIMARY_KEY_ASC] ): ProjectRevisionAmendmentTypesConnection! - """Computed column to determine the rank of a project""" - rank: Int - """The status of the revision of a project""" revisionStatus: String! @@ -58865,37 +60784,6 @@ type ProjectRevision implements Node { """ tasklistStatusFor(formDataTableName: String!, jsonMatcher: String): String - """ - Computed column to return the TEIMP payment amount, based on: - - X% being the TEIMP payment percentage calculated from the emissions performance (Schedule G) - - Gross and Net payment amounts to date - Formula: - TEIMP payment amount = X% * (Gross payment to date - Net payment to date) - - """ - teimpPaymentAmount: BigFloat - - """ - Computed column to return the TEIMP payment percentage, calculated as specified in the schedule G. - The calculation for determining emission intensity performance uses three metrics and a calculation: - Metrics: - - BEI: Baseline Emission Intensity - - PEI: Post-Project Emission Intensity - - TEI: Target Emission Intensity - Calculation: - - Emission Intensity Payment Percentage = (BEI - PEI) / (BEI - TEI) * 100 - - """ - teimpPaymentPercentage: BigFloat - - """ - Computed column to return the total project value. - Calculation: - - Total Project Value = Maximum Funding Amount + Proponent Cost + Additional Funding Amount(s) - - """ - totalProjectValue: BigFloat - """ Returns the row number of the project revision within the scope of a project and among all other revisions of the same type. """ @@ -59899,9 +61787,6 @@ input ProjectRevisionFilter { """Some related `projectRevisionAmendmentTypesByProjectRevisionId` exist.""" projectRevisionAmendmentTypesByProjectRevisionIdExist: Boolean - """Filter by the object’s `rank` field.""" - rank: IntFilter - """Filter by the object’s `revisionStatus` field.""" revisionStatus: StringFilter @@ -59917,15 +61802,6 @@ input ProjectRevisionFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter - """Filter by the object’s `teimpPaymentAmount` field.""" - teimpPaymentAmount: BigFloatFilter - - """Filter by the object’s `teimpPaymentPercentage` field.""" - teimpPaymentPercentage: BigFloatFilter - - """Filter by the object’s `totalProjectValue` field.""" - totalProjectValue: BigFloatFilter - """Filter by the object’s `typeRowNumber` field.""" typeRowNumber: IntFilter @@ -60453,6 +62329,8 @@ enum ProjectRevisionsOrderBy { REVISION_STATUS_BY_REVISION_STATUS__IS_AMENDMENT_SPECIFIC_DESC REVISION_STATUS_BY_REVISION_STATUS__NAME_ASC REVISION_STATUS_BY_REVISION_STATUS__NAME_DESC + REVISION_STATUS_BY_REVISION_STATUS__SORTING_ORDER_ASC + REVISION_STATUS_BY_REVISION_STATUS__SORTING_ORDER_DESC REVISION_STATUS_BY_REVISION_STATUS__UPDATED_AT_ASC REVISION_STATUS_BY_REVISION_STATUS__UPDATED_AT_DESC REVISION_STATUS_BY_REVISION_STATUS__UPDATED_BY_ASC @@ -60488,45 +62366,6 @@ type ProjectStatus implements Node { """archived by user id""" archivedBy: Int - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByProjectStatusId( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - 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 - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = INHERIT - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - ): AttachmentsConnection! - """Reads a single `CifUser` that is related to this `ProjectStatus`.""" cifUserByArchivedBy: CifUser @@ -60536,123 +62375,6 @@ type ProjectStatus implements Node { """Reads a single `CifUser` that is related to this `ProjectStatus`.""" cifUserByUpdatedBy: CifUser - """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByAttachmentProjectStatusIdAndArchivedBy( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CifUserCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CifUserFilter - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = NO - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `CifUser`.""" - orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectStatusCifUsersByAttachmentProjectStatusIdAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByAttachmentProjectStatusIdAndCreatedBy( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CifUserCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CifUserFilter - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = NO - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `CifUser`.""" - orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectStatusCifUsersByAttachmentProjectStatusIdAndCreatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CifUser`.""" - cifUsersByAttachmentProjectStatusIdAndUpdatedBy( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CifUserCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CifUserFilter - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = NO - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `CifUser`.""" - orderBy: [CifUsersOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectStatusCifUsersByAttachmentProjectStatusIdAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CifUser`.""" cifUsersByFundingStreamProjectStatusProjectStatusIdAndArchivedBy( """Read all values in the set after (below) this cursor.""" @@ -61101,45 +62823,6 @@ type ProjectStatus implements Node { orderBy: [ProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] ): ProjectStatusProjectTypesByProjectProjectStatusIdAndProjectTypeManyToManyConnection! - """Reads and enables pagination through a set of `Project`.""" - projectsByAttachmentProjectStatusIdAndProjectId( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ProjectCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ProjectFilter - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = NO - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `Project`.""" - orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectStatusProjectsByAttachmentProjectStatusIdAndProjectIdManyToManyConnection! - """Reads and enables pagination through a set of `Project`.""" projectsByProjectStatusId( """Read all values in the set after (below) this cursor.""" @@ -61228,207 +62911,6 @@ type ProjectStatus implements Node { updatedBy: Int } -""" -A connection to a list of `CifUser` values, with data from `Attachment`. -""" -type ProjectStatusCifUsersByAttachmentProjectStatusIdAndArchivedByManyToManyConnection { - """ - A list of edges which contains the `CifUser`, info from the `Attachment`, and the cursor to aid in pagination. - """ - edges: [ProjectStatusCifUsersByAttachmentProjectStatusIdAndArchivedByManyToManyEdge!]! - - """A list of `CifUser` objects.""" - nodes: [CifUser]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CifUser` you could get from the connection.""" - totalCount: Int! -} - -"""A `CifUser` edge in the connection, with data from `Attachment`.""" -type ProjectStatusCifUsersByAttachmentProjectStatusIdAndArchivedByManyToManyEdge { - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByArchivedBy( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - 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 - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = NO - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - ): AttachmentsConnection! - - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CifUser` at the end of the edge.""" - node: CifUser -} - -""" -A connection to a list of `CifUser` values, with data from `Attachment`. -""" -type ProjectStatusCifUsersByAttachmentProjectStatusIdAndCreatedByManyToManyConnection { - """ - A list of edges which contains the `CifUser`, info from the `Attachment`, and the cursor to aid in pagination. - """ - edges: [ProjectStatusCifUsersByAttachmentProjectStatusIdAndCreatedByManyToManyEdge!]! - - """A list of `CifUser` objects.""" - nodes: [CifUser]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CifUser` you could get from the connection.""" - totalCount: Int! -} - -"""A `CifUser` edge in the connection, with data from `Attachment`.""" -type ProjectStatusCifUsersByAttachmentProjectStatusIdAndCreatedByManyToManyEdge { - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByCreatedBy( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - 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 - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = NO - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - ): AttachmentsConnection! - - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CifUser` at the end of the edge.""" - node: CifUser -} - -""" -A connection to a list of `CifUser` values, with data from `Attachment`. -""" -type ProjectStatusCifUsersByAttachmentProjectStatusIdAndUpdatedByManyToManyConnection { - """ - A list of edges which contains the `CifUser`, info from the `Attachment`, and the cursor to aid in pagination. - """ - edges: [ProjectStatusCifUsersByAttachmentProjectStatusIdAndUpdatedByManyToManyEdge!]! - - """A list of `CifUser` objects.""" - nodes: [CifUser]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CifUser` you could get from the connection.""" - totalCount: Int! -} - -"""A `CifUser` edge in the connection, with data from `Attachment`.""" -type ProjectStatusCifUsersByAttachmentProjectStatusIdAndUpdatedByManyToManyEdge { - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByUpdatedBy( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - 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 - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = NO - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - ): AttachmentsConnection! - - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CifUser` at the end of the edge.""" - node: CifUser -} - """ A connection to a list of `CifUser` values, with data from `FundingStreamProjectStatus`. """ @@ -61883,12 +63365,6 @@ input ProjectStatusFilter { """Filter by the object’s `archivedBy` field.""" archivedBy: IntFilter - """Filter by the object’s `attachmentsByProjectStatusId` relation.""" - attachmentsByProjectStatusId: ProjectStatusToManyAttachmentFilter - - """Some related `attachmentsByProjectStatusId` exist.""" - attachmentsByProjectStatusIdExist: Boolean - """Filter by the object’s `cifUserByArchivedBy` relation.""" cifUserByArchivedBy: CifUserFilter @@ -62182,251 +63658,164 @@ type ProjectStatusOperatorsByProjectProjectStatusIdAndOperatorIdManyToManyEdge { } """ -Represents an update to a `ProjectStatus`. Fields that are set will be updated. -""" -input ProjectStatusPatch { - """archived at timestamp""" - archivedAt: Datetime - - """archived by user id""" - archivedBy: Int - - """created at timestamp""" - createdAt: Datetime - - """created by user id""" - createdBy: Int - - """Description of the project_status""" - description: String - - """Name of the project_status""" - name: String - - """updated at timestamp""" - updatedAt: Datetime - - """updated by user id""" - updatedBy: Int -} - -""" -A connection to a list of `ProjectType` values, with data from `Project`. -""" -type ProjectStatusProjectTypesByProjectProjectStatusIdAndProjectTypeManyToManyConnection { - """ - A list of edges which contains the `ProjectType`, info from the `Project`, and the cursor to aid in pagination. - """ - edges: [ProjectStatusProjectTypesByProjectProjectStatusIdAndProjectTypeManyToManyEdge!]! - - """A list of `ProjectType` objects.""" - nodes: [ProjectType]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `ProjectType` you could get from the connection.""" - totalCount: Int! -} - -"""A `ProjectType` edge in the connection, with data from `Project`.""" -type ProjectStatusProjectTypesByProjectProjectStatusIdAndProjectTypeManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `ProjectType` at the end of the edge.""" - node: ProjectType - - """Reads and enables pagination through a set of `Project`.""" - projectsByProjectType( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ProjectCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ProjectFilter - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = NO - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `Project`.""" - orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectsConnection! -} - -""" -A connection to a list of `Project` values, with data from `Attachment`. -""" -type ProjectStatusProjectsByAttachmentProjectStatusIdAndProjectIdManyToManyConnection { - """ - A list of edges which contains the `Project`, info from the `Attachment`, and the cursor to aid in pagination. - """ - edges: [ProjectStatusProjectsByAttachmentProjectStatusIdAndProjectIdManyToManyEdge!]! - - """A list of `Project` objects.""" - nodes: [Project]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `Project` you could get from the connection.""" - totalCount: Int! -} - -"""A `Project` edge in the connection, with data from `Attachment`.""" -type ProjectStatusProjectsByAttachmentProjectStatusIdAndProjectIdManyToManyEdge { - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByProjectId( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - 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 - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = NO - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - ): AttachmentsConnection! - - """A cursor for use in pagination.""" - cursor: Cursor - - """The `Project` at the end of the edge.""" - node: Project -} - -"""A connection to a list of `Sector` values, with data from `Project`.""" -type ProjectStatusSectorsByProjectProjectStatusIdAndSectorNameManyToManyConnection { - """ - A list of edges which contains the `Sector`, info from the `Project`, and the cursor to aid in pagination. - """ - edges: [ProjectStatusSectorsByProjectProjectStatusIdAndSectorNameManyToManyEdge!]! - - """A list of `Sector` objects.""" - nodes: [Sector]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `Sector` you could get from the connection.""" - totalCount: Int! -} - -"""A `Sector` edge in the connection, with data from `Project`.""" -type ProjectStatusSectorsByProjectProjectStatusIdAndSectorNameManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `Sector` at the end of the edge.""" - node: Sector - - """Reads and enables pagination through a set of `Project`.""" - projectsBySectorName( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ProjectCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ProjectFilter - - """Only read the first `n` values of the set.""" - first: Int - - """ - Indicates whether archived items should be included in the results or not. - """ - includeArchived: IncludeArchivedOption = NO - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `Project`.""" - orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProjectsConnection! -} - -""" -A filter to be used against many `Attachment` object types. All fields are combined with a logical ‘and.’ +Represents an update to a `ProjectStatus`. Fields that are set will be updated. """ -input ProjectStatusToManyAttachmentFilter { - """ - Every related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: AttachmentFilter +input ProjectStatusPatch { + """archived at timestamp""" + archivedAt: Datetime + """archived by user id""" + archivedBy: Int + + """created at timestamp""" + createdAt: Datetime + + """created by user id""" + createdBy: Int + + """Description of the project_status""" + description: String + + """Name of the project_status""" + name: String + + """updated at timestamp""" + updatedAt: Datetime + + """updated by user id""" + updatedBy: Int +} + +""" +A connection to a list of `ProjectType` values, with data from `Project`. +""" +type ProjectStatusProjectTypesByProjectProjectStatusIdAndProjectTypeManyToManyConnection { """ - No related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + A list of edges which contains the `ProjectType`, info from the `Project`, and the cursor to aid in pagination. """ - none: AttachmentFilter + edges: [ProjectStatusProjectTypesByProjectProjectStatusIdAndProjectTypeManyToManyEdge!]! + + """A list of `ProjectType` objects.""" + nodes: [ProjectType]! + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `ProjectType` you could get from the connection.""" + totalCount: Int! +} + +"""A `ProjectType` edge in the connection, with data from `Project`.""" +type ProjectStatusProjectTypesByProjectProjectStatusIdAndProjectTypeManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `ProjectType` at the end of the edge.""" + node: ProjectType + + """Reads and enables pagination through a set of `Project`.""" + projectsByProjectType( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ProjectCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ProjectFilter + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = NO + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `Project`.""" + orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectsConnection! +} + +"""A connection to a list of `Sector` values, with data from `Project`.""" +type ProjectStatusSectorsByProjectProjectStatusIdAndSectorNameManyToManyConnection { """ - Some related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + A list of edges which contains the `Sector`, info from the `Project`, and the cursor to aid in pagination. """ - some: AttachmentFilter + edges: [ProjectStatusSectorsByProjectProjectStatusIdAndSectorNameManyToManyEdge!]! + + """A list of `Sector` objects.""" + nodes: [Sector]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `Sector` you could get from the connection.""" + totalCount: Int! +} + +"""A `Sector` edge in the connection, with data from `Project`.""" +type ProjectStatusSectorsByProjectProjectStatusIdAndSectorNameManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Sector` at the end of the edge.""" + node: Sector + + """Reads and enables pagination through a set of `Project`.""" + projectsBySectorName( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ProjectCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ProjectFilter + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = NO + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `Project`.""" + orderBy: [ProjectsOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectsConnection! } """ @@ -62501,8 +63890,6 @@ enum ProjectStatusesOrderBy { ARCHIVED_AT_DESC ARCHIVED_BY_ASC ARCHIVED_BY_DESC - ATTACHMENTS_BY_PROJECT_STATUS_ID__COUNT_ASC - ATTACHMENTS_BY_PROJECT_STATUS_ID__COUNT_DESC CIF_USER_BY_ARCHIVED_BY__ALLOW_SUB_UPDATE_ASC CIF_USER_BY_ARCHIVED_BY__ALLOW_SUB_UPDATE_DESC CIF_USER_BY_ARCHIVED_BY__ARCHIVED_AT_ASC @@ -62625,43 +64012,43 @@ input ProjectToManyAdditionalFundingSourceFilter { } """ -A filter to be used against many `Attachment` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `FundingParameter` object types. All fields are combined with a logical ‘and.’ """ -input ProjectToManyAttachmentFilter { +input ProjectToManyFundingParameterFilter { """ - Every related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `FundingParameter` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: AttachmentFilter + every: FundingParameterFilter """ - No related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `FundingParameter` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: AttachmentFilter + none: FundingParameterFilter """ - Some related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `FundingParameter` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: AttachmentFilter + some: FundingParameterFilter } """ -A filter to be used against many `FundingParameter` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ProjectAttachment` object types. All fields are combined with a logical ‘and.’ """ -input ProjectToManyFundingParameterFilter { +input ProjectToManyProjectAttachmentFilter { """ - Every related `FundingParameter` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ProjectAttachment` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: FundingParameterFilter + every: ProjectAttachmentFilter """ - No related `FundingParameter` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ProjectAttachment` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: FundingParameterFilter + none: ProjectAttachmentFilter """ - Some related `FundingParameter` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ProjectAttachment` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: FundingParameterFilter + some: ProjectAttachmentFilter } """ @@ -63885,8 +65272,6 @@ enum ProjectsOrderBy { ARCHIVED_AT_DESC ARCHIVED_BY_ASC ARCHIVED_BY_DESC - ATTACHMENTS_BY_PROJECT_ID__COUNT_ASC - ATTACHMENTS_BY_PROJECT_ID__COUNT_DESC CIF_USER_BY_ARCHIVED_BY__ALLOW_SUB_UPDATE_ASC CIF_USER_BY_ARCHIVED_BY__ALLOW_SUB_UPDATE_DESC CIF_USER_BY_ARCHIVED_BY__ARCHIVED_AT_ASC @@ -64032,6 +65417,8 @@ enum ProjectsOrderBy { OPERATOR_ID_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC + PROJECT_ATTACHMENTS_BY_PROJECT_ID__COUNT_ASC + PROJECT_ATTACHMENTS_BY_PROJECT_ID__COUNT_DESC PROJECT_CONTACTS_BY_PROJECT_ID__COUNT_ASC PROJECT_CONTACTS_BY_PROJECT_ID__COUNT_DESC PROJECT_MANAGERS_BY_PROJECT_ID__COUNT_ASC @@ -64841,6 +66228,45 @@ type Query implements Node { orderBy: [PaymentsOrderBy!] = [PRIMARY_KEY_ASC] ): PaymentsConnection + """Reads and enables pagination through a set of `ProjectAttachment`.""" + allProjectAttachments( + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ProjectAttachmentCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ProjectAttachmentFilter + + """Only read the first `n` values of the set.""" + first: Int + + """ + Indicates whether archived items should be included in the results or not. + """ + includeArchived: IncludeArchivedOption = NO + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """The method to use when ordering `ProjectAttachment`.""" + orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectAttachmentsConnection + """Reads and enables pagination through a set of `ProjectContact`.""" allProjectContacts( """Read all values in the set after (below) this cursor.""" @@ -65551,6 +66977,15 @@ type Query implements Node { """The globally unique `ID` to be used in selecting a single `Project`.""" id: ID! ): Project + + """Reads a single `ProjectAttachment` using its globally unique `ID`.""" + projectAttachment( + """ + The globally unique `ID` to be used in selecting a single `ProjectAttachment`. + """ + id: ID! + ): ProjectAttachment + projectAttachmentByRowId(rowId: Int!): ProjectAttachment projectByProposalReference(proposalReference: String!): Project projectByRowId(rowId: Int!): Project @@ -68356,6 +69791,11 @@ type RevisionStatus implements Node { orderBy: [RevisionTypesOrderBy!] = [PRIMARY_KEY_ASC] ): RevisionStatusRevisionTypesByProjectRevisionRevisionStatusAndRevisionTypeManyToManyConnection! + """ + Integer value to indicate the order in which the revision status should be displayed + """ + sortingOrder: Int! + """updated at timestamp""" updatedAt: Datetime! @@ -68574,6 +70014,9 @@ input RevisionStatusCondition { """Checks for equality with the object’s `name` field.""" name: String + """Checks for equality with the object’s `sortingOrder` field.""" + sortingOrder: Int + """Checks for equality with the object’s `updatedAt` field.""" updatedAt: Datetime @@ -68636,6 +70079,9 @@ input RevisionStatusFilter { """Some related `projectRevisionsByRevisionStatus` exist.""" projectRevisionsByRevisionStatusExist: Boolean + """Filter by the object’s `sortingOrder` field.""" + sortingOrder: IntFilter + """Filter by the object’s `updatedAt` field.""" updatedAt: DatetimeFilter @@ -68665,6 +70111,11 @@ input RevisionStatusInput { """The name of the amendment status as the primary key""" name: String! + """ + Integer value to indicate the order in which the revision status should be displayed + """ + sortingOrder: Int + """updated at timestamp""" updatedAt: Datetime @@ -68696,6 +70147,11 @@ input RevisionStatusPatch { """The name of the amendment status as the primary key""" name: String + """ + Integer value to indicate the order in which the revision status should be displayed + """ + sortingOrder: Int + """updated at timestamp""" updatedAt: Datetime @@ -68972,6 +70428,8 @@ enum RevisionStatusesOrderBy { PRIMARY_KEY_DESC PROJECT_REVISIONS_BY_REVISION_STATUS__COUNT_ASC PROJECT_REVISIONS_BY_REVISION_STATUS__COUNT_DESC + SORTING_ORDER_ASC + SORTING_ORDER_DESC UPDATED_AT_ASC UPDATED_AT_DESC UPDATED_BY_ASC @@ -71654,12 +73112,6 @@ type UpdateAttachmentPayload { """ clientMutationId: String - """Reads a single `Project` that is related to this `Attachment`.""" - projectByProjectId: Project - - """Reads a single `ProjectStatus` that is related to this `Attachment`.""" - projectStatusByProjectStatusId: ProjectStatus - """ Our root query field type. Allows us to run any query from our mutation payload. """ @@ -72578,6 +74030,82 @@ type UpdateOrCreateUserFromSessionPayload { query: Query } +"""All input for the `updateProjectAttachmentByRowId` mutation.""" +input UpdateProjectAttachmentByRowIdInput { + """ + 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 `ProjectAttachment` being updated. + """ + projectAttachmentPatch: ProjectAttachmentPatch! + + """Unique ID for the project attachment record""" + rowId: Int! +} + +"""All input for the `updateProjectAttachment` mutation.""" +input UpdateProjectAttachmentInput { + """ + 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 `ProjectAttachment` to be updated. + """ + id: ID! + + """ + An object where the defined keys will be set on the `ProjectAttachment` being updated. + """ + projectAttachmentPatch: ProjectAttachmentPatch! +} + +"""The output of our update `ProjectAttachment` mutation.""" +type UpdateProjectAttachmentPayload { + """ + Reads a single `Attachment` that is related to this `ProjectAttachment`. + """ + attachmentByAttachmentId: Attachment + + """Reads a single `CifUser` that is related to this `ProjectAttachment`.""" + cifUserByArchivedBy: CifUser + + """Reads a single `CifUser` that is related to this `ProjectAttachment`.""" + cifUserByCreatedBy: CifUser + + """Reads a single `CifUser` that is related to this `ProjectAttachment`.""" + cifUserByUpdatedBy: CifUser + + """ + 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 `ProjectAttachment` that was updated by this mutation.""" + projectAttachment: ProjectAttachment + + """An edge for our `ProjectAttachment`. May be used by Relay 1.""" + projectAttachmentEdge( + """The method to use when ordering `ProjectAttachment`.""" + orderBy: [ProjectAttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + ): ProjectAttachmentsEdge + + """Reads a single `Project` that is related to this `ProjectAttachment`.""" + projectByProjectId: Project + + """ + Our root query field type. Allows us to run any query from our mutation payload. + """ + query: Query +} + """All input for the `updateProjectContactByRowId` mutation.""" input UpdateProjectContactByRowIdInput { """ diff --git a/app/schema/schema.json b/app/schema/schema.json index 170bc962b3..2fd0fd4180 100644 --- a/app/schema/schema.json +++ b/app/schema/schema.json @@ -11,8 +11,8 @@ "types": [ { "kind": "INPUT_OBJECT", - "name": "AddAdditionalFundingSourceToRevisionInput", - "description": "All input for the `addAdditionalFundingSourceToRevision` mutation.", + "name": "AddContactToRevisionInput", + "description": "All input for the `addContactToRevision` mutation.", "fields": null, "inputFields": [ { @@ -26,7 +26,17 @@ "defaultValue": null }, { - "name": "revisionId", + "name": "contactId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "contactIndex", "description": null, "type": { "kind": "NON_NULL", @@ -40,7 +50,7 @@ "defaultValue": null }, { - "name": "sourceIndex", + "name": "revisionId", "description": null, "type": { "kind": "NON_NULL", @@ -60,8 +70,8 @@ }, { "kind": "OBJECT", - "name": "AddAdditionalFundingSourceToRevisionPayload", - "description": "The output of our `addAdditionalFundingSourceToRevision` mutation.", + "name": "AddContactToRevisionPayload", + "description": "The output of our `addContactToRevision` mutation.", "fields": [ { "name": "changeStatusByChangeStatus", @@ -210,32 +220,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "AddContactToRevisionInput", - "description": "All input for the `addContactToRevision` mutation.", + "name": "AddProjectAttachmentToRevisionInput", + "description": "All input for the `addProjectAttachmentToRevision` mutation.", "fields": null, "inputFields": [ { - "name": "clientMutationId", - "description": "An arbitrary string value with no semantic meaning. Will be included in the\npayload verbatim. May be used to track mutations by the client.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contactId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contactIndex", + "name": "attachmentId", "description": null, "type": { "kind": "NON_NULL", @@ -248,6 +238,16 @@ }, "defaultValue": null }, + { + "name": "clientMutationId", + "description": "An arbitrary string value with no semantic meaning. Will be included in the\npayload verbatim. May be used to track mutations by the client.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, { "name": "revisionId", "description": null, @@ -269,8 +269,8 @@ }, { "kind": "OBJECT", - "name": "AddContactToRevisionPayload", - "description": "The output of our `addContactToRevision` mutation.", + "name": "AddProjectAttachmentToRevisionPayload", + "description": "The output of our `addProjectAttachmentToRevision` mutation.", "fields": [ { "name": "changeStatusByChangeStatus", @@ -417,92 +417,6 @@ "enumValues": null, "possibleTypes": null }, - { - "kind": "INPUT_OBJECT", - "name": "AddEmissionIntensityReportToRevisionInput", - "description": "All input for the `addEmissionIntensityReportToRevision` mutation.", - "fields": null, - "inputFields": [ - { - "name": "clientMutationId", - "description": "An arbitrary string value with no semantic meaning. Will be included in the\npayload verbatim. May be used to track mutations by the client.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "revisionId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AddEmissionIntensityReportToRevisionPayload", - "description": "The output of our `addEmissionIntensityReportToRevision` mutation.", - "fields": [ - { - "name": "clientMutationId", - "description": "The exact same `clientMutationId` that was provided in the mutation input,\nunchanged and unused. May be used by a client to track mutations.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "formChanges", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "FormChange", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "query", - "description": "Our root query field type. Allows us to run any query from our mutation payload.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Query", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, { "kind": "OBJECT", "name": "AdditionalFundingSource", @@ -8358,6 +8272,351 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "cifUsersByProjectAttachmentAttachmentIdAndArchivedBy", + "description": "Reads and enables pagination through a set of `CifUser`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CifUserCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CifUserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `CifUser`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CifUsersOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AttachmentCifUsersByProjectAttachmentAttachmentIdAndArchivedByManyToManyConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cifUsersByProjectAttachmentAttachmentIdAndCreatedBy", + "description": "Reads and enables pagination through a set of `CifUser`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CifUserCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CifUserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `CifUser`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CifUsersOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AttachmentCifUsersByProjectAttachmentAttachmentIdAndCreatedByManyToManyConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cifUsersByProjectAttachmentAttachmentIdAndUpdatedBy", + "description": "Reads and enables pagination through a set of `CifUser`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CifUserCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CifUserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `CifUser`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CifUsersOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AttachmentCifUsersByProjectAttachmentAttachmentIdAndUpdatedByManyToManyConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "createdAt", "description": "created at timestamp", @@ -8463,20 +8722,270 @@ "deprecationReason": null }, { - "name": "projectByProjectId", - "description": "Reads a single `Project` that is related to this `Attachment`.", + "name": "projectAttachmentsByAttachmentId", + "description": "Reads and enables pagination through a set of `ProjectAttachment`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectAttachmentCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectAttachmentFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "INHERIT" + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `ProjectAttachment`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectAttachmentsOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectAttachmentsConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectsByProjectAttachmentAttachmentIdAndProjectId", + "description": "Reads and enables pagination through a set of `Project`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `Project`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectsOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AttachmentProjectsByProjectAttachmentAttachmentIdAndProjectIdManyToManyConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "rowId", + "description": "Unique ID for the attachment", "args": [], "type": { - "kind": "OBJECT", - "name": "Project", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectId", - "description": null, + "name": "updatedAt", + "description": "updated at timestamp", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedBy", + "description": "updated by user id", "args": [], "type": { "kind": "SCALAR", @@ -8485,34 +8994,87 @@ }, "isDeprecated": false, "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AttachmentCifUsersByProjectAttachmentAttachmentIdAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectAttachment`.", + "fields": [ + { + "name": "edges", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectAttachment`, and the cursor to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AttachmentCifUsersByProjectAttachmentAttachmentIdAndArchivedByManyToManyEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "projectStatusByProjectStatusId", - "description": "Reads a single `ProjectStatus` that is related to this `Attachment`.", + "name": "nodes", + "description": "A list of `CifUser` objects.", "args": [], "type": { - "kind": "OBJECT", - "name": "ProjectStatus", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CifUser", + "ofType": null + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectStatusId", - "description": null, + "name": "pageInfo", + "description": "Information to aid in pagination.", "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "rowId", - "description": "Unique ID for the attachment", + "name": "totalCount", + "description": "The count of *all* `CifUser` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -8525,44 +9087,634 @@ }, "isDeprecated": false, "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AttachmentCifUsersByProjectAttachmentAttachmentIdAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectAttachment`.", + "fields": [ + { + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updatedAt", - "description": "updated at timestamp", + "name": "node", + "description": "The `CifUser` at the end of the edge.", "args": [], + "type": { + "kind": "OBJECT", + "name": "CifUser", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectAttachmentsByArchivedBy", + "description": "Reads and enables pagination through a set of `ProjectAttachment`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectAttachmentCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectAttachmentFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `ProjectAttachment`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectAttachmentsOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Datetime", + "kind": "OBJECT", + "name": "ProjectAttachmentsConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AttachmentCifUsersByProjectAttachmentAttachmentIdAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectAttachment`.", + "fields": [ + { + "name": "edges", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectAttachment`, and the cursor to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AttachmentCifUsersByProjectAttachmentAttachmentIdAndCreatedByManyToManyEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updatedBy", - "description": "updated by user id", + "name": "nodes", + "description": "A list of `CifUser` objects.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CifUser", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": "The count of *all* `CifUser` you could get from the connection.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AttachmentCifUsersByProjectAttachmentAttachmentIdAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectAttachment`.", + "fields": [ + { + "name": "cursor", + "description": "A cursor for use in pagination.", "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": "The `CifUser` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "CifUser", "ofType": null }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "projectAttachmentsByCreatedBy", + "description": "Reads and enables pagination through a set of `ProjectAttachment`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectAttachmentCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectAttachmentFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `ProjectAttachment`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectAttachmentsOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectAttachmentsConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, - "interfaces": [ + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AttachmentCifUsersByProjectAttachmentAttachmentIdAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectAttachment`.", + "fields": [ { - "kind": "INTERFACE", - "name": "Node", - "ofType": null + "name": "edges", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectAttachment`, and the cursor to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AttachmentCifUsersByProjectAttachmentAttachmentIdAndUpdatedByManyToManyEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": "A list of `CifUser` objects.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CifUser", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": "The count of *all* `CifUser` you could get from the connection.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AttachmentCifUsersByProjectAttachmentAttachmentIdAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectAttachment`.", + "fields": [ + { + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": "The `CifUser` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "CifUser", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectAttachmentsByUpdatedBy", + "description": "Reads and enables pagination through a set of `ProjectAttachment`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectAttachmentCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectAttachmentFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `ProjectAttachment`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectAttachmentsOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectAttachmentsConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null } ], + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, @@ -8662,26 +9814,6 @@ }, "defaultValue": null }, - { - "name": "projectId", - "description": "Checks for equality with the object’s `projectId` field.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "projectStatusId", - "description": "Checks for equality with the object’s `projectStatusId` field.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, { "name": "rowId", "description": "Checks for equality with the object’s `rowId` field.", @@ -8920,48 +10052,18 @@ "defaultValue": null }, { - "name": "projectByProjectId", - "description": "Filter by the object’s `projectByProjectId` relation.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "projectByProjectIdExists", - "description": "A related `projectByProjectId` exists.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "projectId", - "description": "Filter by the object’s `projectId` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IntFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "projectStatusByProjectStatusId", - "description": "Filter by the object’s `projectStatusByProjectStatusId` relation.", + "name": "projectAttachmentsByAttachmentId", + "description": "Filter by the object’s `projectAttachmentsByAttachmentId` relation.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusFilter", + "name": "AttachmentToManyProjectAttachmentFilter", "ofType": null }, "defaultValue": null }, { - "name": "projectStatusByProjectStatusIdExists", - "description": "A related `projectStatusByProjectStatusId` exists.", + "name": "projectAttachmentsByAttachmentIdExist", + "description": "Some related `projectAttachmentsByAttachmentId` exist.", "type": { "kind": "SCALAR", "name": "Boolean", @@ -8969,16 +10071,6 @@ }, "defaultValue": null }, - { - "name": "projectStatusId", - "description": "Filter by the object’s `projectStatusId` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IntFilter", - "ofType": null - }, - "defaultValue": null - }, { "name": "rowId", "description": "Filter by the object’s `rowId` field.", @@ -9110,26 +10202,6 @@ }, "defaultValue": null }, - { - "name": "projectId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "projectStatusId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, { "name": "updatedAt", "description": "updated at timestamp", @@ -9251,26 +10323,6 @@ }, "defaultValue": null }, - { - "name": "projectId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "projectStatusId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, { "name": "updatedAt", "description": "updated at timestamp", @@ -9298,12 +10350,12 @@ }, { "kind": "OBJECT", - "name": "AttachmentsConnection", - "description": "A connection to a list of `Attachment` values.", + "name": "AttachmentProjectsByProjectAttachmentAttachmentIdAndProjectIdManyToManyConnection", + "description": "A connection to a list of `Project` values, with data from `ProjectAttachment`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `Attachment` and cursor to aid in pagination.", + "description": "A list of edges which contains the `Project`, info from the `ProjectAttachment`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -9316,7 +10368,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AttachmentsEdge", + "name": "AttachmentProjectsByProjectAttachmentAttachmentIdAndProjectIdManyToManyEdge", "ofType": null } } @@ -9327,7 +10379,7 @@ }, { "name": "nodes", - "description": "A list of `Attachment` objects.", + "description": "A list of `Project` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -9337,7 +10389,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Attachment", + "name": "Project", "ofType": null } } @@ -9363,7 +10415,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `Attachment` you could get from the connection.", + "description": "The count of *all* `Project` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -9385,8 +10437,8 @@ }, { "kind": "OBJECT", - "name": "AttachmentsEdge", - "description": "A `Attachment` edge in the connection.", + "name": "AttachmentProjectsByProjectAttachmentAttachmentIdAndProjectIdManyToManyEdge", + "description": "A `Project` edge in the connection, with data from `ProjectAttachment`.", "fields": [ { "name": "cursor", @@ -9402,17 +10454,295 @@ }, { "name": "node", - "description": "The `Attachment` at the end of the edge.", + "description": "The `Project` at the end of the edge.", "args": [], "type": { "kind": "OBJECT", - "name": "Attachment", + "name": "Project", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], + }, + { + "name": "projectAttachmentsByProjectId", + "description": "Reads and enables pagination through a set of `ProjectAttachment`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectAttachmentCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectAttachmentFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `ProjectAttachment`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectAttachmentsOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectAttachmentsConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AttachmentToManyProjectAttachmentFilter", + "description": "A filter to be used against many `ProjectAttachment` object types. All fields are combined with a logical ‘and.’", + "fields": null, + "inputFields": [ + { + "name": "every", + "description": "Every related `ProjectAttachment` matches the filter criteria. All fields are combined with a logical ‘and.’", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectAttachmentFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "none", + "description": "No related `ProjectAttachment` matches the filter criteria. All fields are combined with a logical ‘and.’", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectAttachmentFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "some", + "description": "Some related `ProjectAttachment` matches the filter criteria. All fields are combined with a logical ‘and.’", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectAttachmentFilter", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AttachmentsConnection", + "description": "A connection to a list of `Attachment` values.", + "fields": [ + { + "name": "edges", + "description": "A list of edges which contains the `Attachment` and cursor to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AttachmentsEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": "A list of `Attachment` objects.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Attachment", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": "The count of *all* `Attachment` you could get from the connection.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AttachmentsEdge", + "description": "A `Attachment` edge in the connection.", + "fields": [ + { + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": "The `Attachment` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Attachment", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], "inputFields": null, "interfaces": [], "enumValues": null, @@ -10033,385 +11363,13 @@ "deprecationReason": null }, { - "name": "PROJECT_BY_PROJECT_ID__ADDITIONAL_SECTOR_INFORMATION_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__ADDITIONAL_SECTOR_INFORMATION_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__ARCHIVED_AT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__ARCHIVED_AT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__ARCHIVED_BY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__ARCHIVED_BY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__COMMENTS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__COMMENTS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__CONTRACT_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__CONTRACT_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__CREATED_AT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__CREATED_AT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__CREATED_BY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__CREATED_BY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__FUNDING_STREAM_RFP_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__FUNDING_STREAM_RFP_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__NEXT_MILESTONE_DUE_DATE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__NEXT_MILESTONE_DUE_DATE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__OPERATOR_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__OPERATOR_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__PROJECT_NAME_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__PROJECT_NAME_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__PROJECT_STATUS_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__PROJECT_STATUS_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__PROJECT_TYPE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__PROJECT_TYPE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__PROPOSAL_REFERENCE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__PROPOSAL_REFERENCE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__SCORE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__SCORE_DESC", + "name": "PROJECT_ATTACHMENTS_BY_ATTACHMENT_ID__COUNT_ASC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "PROJECT_BY_PROJECT_ID__SECTOR_NAME_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__SECTOR_NAME_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__SUMMARY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__SUMMARY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__TOTAL_FUNDING_REQUEST_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__TOTAL_FUNDING_REQUEST_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__UPDATED_AT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__UPDATED_AT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__UPDATED_BY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_BY_PROJECT_ID__UPDATED_BY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_STATUS_BY_PROJECT_STATUS_ID__ARCHIVED_AT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_STATUS_BY_PROJECT_STATUS_ID__ARCHIVED_AT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_STATUS_BY_PROJECT_STATUS_ID__ARCHIVED_BY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_STATUS_BY_PROJECT_STATUS_ID__ARCHIVED_BY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_STATUS_BY_PROJECT_STATUS_ID__CREATED_AT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_STATUS_BY_PROJECT_STATUS_ID__CREATED_AT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_STATUS_BY_PROJECT_STATUS_ID__CREATED_BY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_STATUS_BY_PROJECT_STATUS_ID__CREATED_BY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_STATUS_BY_PROJECT_STATUS_ID__DESCRIPTION_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_STATUS_BY_PROJECT_STATUS_ID__DESCRIPTION_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_STATUS_BY_PROJECT_STATUS_ID__ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_STATUS_BY_PROJECT_STATUS_ID__ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_STATUS_BY_PROJECT_STATUS_ID__NAME_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_STATUS_BY_PROJECT_STATUS_ID__NAME_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_STATUS_BY_PROJECT_STATUS_ID__UPDATED_AT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_STATUS_BY_PROJECT_STATUS_ID__UPDATED_AT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_STATUS_BY_PROJECT_STATUS_ID__UPDATED_BY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_STATUS_BY_PROJECT_STATUS_ID__UPDATED_BY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_STATUS_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROJECT_STATUS_ID_DESC", + "name": "PROJECT_ATTACHMENTS_BY_ATTACHMENT_ID__COUNT_DESC", "description": null, "isDeprecated": false, "deprecationReason": null @@ -17924,7 +18882,7 @@ "deprecationReason": null }, { - "name": "attachmentsByUpdatedBy", + "name": "attachmentsByProjectAttachmentArchivedByAndAttachmentId", "description": "Reads and enables pagination through a set of `Attachment`.", "args": [ { @@ -17985,7 +18943,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -18031,7 +18989,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AttachmentsConnection", + "name": "CifUserAttachmentsByProjectAttachmentArchivedByAndAttachmentIdManyToManyConnection", "ofType": null } }, @@ -18039,8 +18997,8 @@ "deprecationReason": null }, { - "name": "changeStatusesByArchivedBy", - "description": "Reads and enables pagination through a set of `ChangeStatus`.", + "name": "attachmentsByProjectAttachmentCreatedByAndAttachmentId", + "description": "Reads and enables pagination through a set of `Attachment`.", "args": [ { "name": "after", @@ -18067,7 +19025,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ChangeStatusCondition", + "name": "AttachmentCondition", "ofType": null }, "defaultValue": null @@ -18077,7 +19035,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ChangeStatusFilter", + "name": "AttachmentFilter", "ofType": null }, "defaultValue": null @@ -18100,7 +19058,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -18124,7 +19082,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ChangeStatus`.", + "description": "The method to use when ordering `Attachment`.", "type": { "kind": "LIST", "name": null, @@ -18133,7 +19091,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ChangeStatusesOrderBy", + "name": "AttachmentsOrderBy", "ofType": null } } @@ -18146,7 +19104,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ChangeStatusesConnection", + "name": "CifUserAttachmentsByProjectAttachmentCreatedByAndAttachmentIdManyToManyConnection", "ofType": null } }, @@ -18154,8 +19112,8 @@ "deprecationReason": null }, { - "name": "changeStatusesByCreatedBy", - "description": "Reads and enables pagination through a set of `ChangeStatus`.", + "name": "attachmentsByProjectAttachmentUpdatedByAndAttachmentId", + "description": "Reads and enables pagination through a set of `Attachment`.", "args": [ { "name": "after", @@ -18182,7 +19140,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ChangeStatusCondition", + "name": "AttachmentCondition", "ofType": null }, "defaultValue": null @@ -18192,7 +19150,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ChangeStatusFilter", + "name": "AttachmentFilter", "ofType": null }, "defaultValue": null @@ -18215,7 +19173,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -18239,7 +19197,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ChangeStatus`.", + "description": "The method to use when ordering `Attachment`.", "type": { "kind": "LIST", "name": null, @@ -18248,7 +19206,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ChangeStatusesOrderBy", + "name": "AttachmentsOrderBy", "ofType": null } } @@ -18261,7 +19219,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ChangeStatusesConnection", + "name": "CifUserAttachmentsByProjectAttachmentUpdatedByAndAttachmentIdManyToManyConnection", "ofType": null } }, @@ -18269,8 +19227,8 @@ "deprecationReason": null }, { - "name": "changeStatusesByFormChangeCreatedByAndChangeStatus", - "description": "Reads and enables pagination through a set of `ChangeStatus`.", + "name": "attachmentsByUpdatedBy", + "description": "Reads and enables pagination through a set of `Attachment`.", "args": [ { "name": "after", @@ -18297,7 +19255,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ChangeStatusCondition", + "name": "AttachmentCondition", "ofType": null }, "defaultValue": null @@ -18307,7 +19265,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ChangeStatusFilter", + "name": "AttachmentFilter", "ofType": null }, "defaultValue": null @@ -18330,7 +19288,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -18354,7 +19312,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ChangeStatus`.", + "description": "The method to use when ordering `Attachment`.", "type": { "kind": "LIST", "name": null, @@ -18363,7 +19321,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ChangeStatusesOrderBy", + "name": "AttachmentsOrderBy", "ofType": null } } @@ -18376,7 +19334,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserChangeStatusesByFormChangeCreatedByAndChangeStatusManyToManyConnection", + "name": "AttachmentsConnection", "ofType": null } }, @@ -18384,7 +19342,7 @@ "deprecationReason": null }, { - "name": "changeStatusesByFormChangeUpdatedByAndChangeStatus", + "name": "changeStatusesByArchivedBy", "description": "Reads and enables pagination through a set of `ChangeStatus`.", "args": [ { @@ -18445,7 +19403,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -18491,7 +19449,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserChangeStatusesByFormChangeUpdatedByAndChangeStatusManyToManyConnection", + "name": "ChangeStatusesConnection", "ofType": null } }, @@ -18499,7 +19457,7 @@ "deprecationReason": null }, { - "name": "changeStatusesByProjectRevisionCreatedByAndChangeStatus", + "name": "changeStatusesByCreatedBy", "description": "Reads and enables pagination through a set of `ChangeStatus`.", "args": [ { @@ -18560,7 +19518,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -18606,7 +19564,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserChangeStatusesByProjectRevisionCreatedByAndChangeStatusManyToManyConnection", + "name": "ChangeStatusesConnection", "ofType": null } }, @@ -18614,7 +19572,7 @@ "deprecationReason": null }, { - "name": "changeStatusesByProjectRevisionUpdatedByAndChangeStatus", + "name": "changeStatusesByFormChangeCreatedByAndChangeStatus", "description": "Reads and enables pagination through a set of `ChangeStatus`.", "args": [ { @@ -18721,7 +19679,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserChangeStatusesByProjectRevisionUpdatedByAndChangeStatusManyToManyConnection", + "name": "CifUserChangeStatusesByFormChangeCreatedByAndChangeStatusManyToManyConnection", "ofType": null } }, @@ -18729,7 +19687,7 @@ "deprecationReason": null }, { - "name": "changeStatusesByUpdatedBy", + "name": "changeStatusesByFormChangeUpdatedByAndChangeStatus", "description": "Reads and enables pagination through a set of `ChangeStatus`.", "args": [ { @@ -18790,7 +19748,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -18836,7 +19794,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ChangeStatusesConnection", + "name": "CifUserChangeStatusesByFormChangeUpdatedByAndChangeStatusManyToManyConnection", "ofType": null } }, @@ -18844,44 +19802,8 @@ "deprecationReason": null }, { - "name": "cifUserByArchivedBy", - "description": "Reads a single `CifUser` that is related to this `CifUser`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "CifUser", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cifUserByCreatedBy", - "description": "Reads a single `CifUser` that is related to this `CifUser`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "CifUser", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cifUserByUpdatedBy", - "description": "Reads a single `CifUser` that is related to this `CifUser`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "CifUser", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cifUsersByAdditionalFundingSourceArchivedByAndCreatedBy", - "description": "Reads and enables pagination through a set of `CifUser`.", + "name": "changeStatusesByProjectRevisionCreatedByAndChangeStatus", + "description": "Reads and enables pagination through a set of `ChangeStatus`.", "args": [ { "name": "after", @@ -18908,7 +19830,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserCondition", + "name": "ChangeStatusCondition", "ofType": null }, "defaultValue": null @@ -18918,7 +19840,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserFilter", + "name": "ChangeStatusFilter", "ofType": null }, "defaultValue": null @@ -18965,7 +19887,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `CifUser`.", + "description": "The method to use when ordering `ChangeStatus`.", "type": { "kind": "LIST", "name": null, @@ -18974,7 +19896,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "CifUsersOrderBy", + "name": "ChangeStatusesOrderBy", "ofType": null } } @@ -18987,7 +19909,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserChangeStatusesByProjectRevisionCreatedByAndChangeStatusManyToManyConnection", "ofType": null } }, @@ -18995,8 +19917,8 @@ "deprecationReason": null }, { - "name": "cifUsersByAdditionalFundingSourceArchivedByAndUpdatedBy", - "description": "Reads and enables pagination through a set of `CifUser`.", + "name": "changeStatusesByProjectRevisionUpdatedByAndChangeStatus", + "description": "Reads and enables pagination through a set of `ChangeStatus`.", "args": [ { "name": "after", @@ -19023,7 +19945,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserCondition", + "name": "ChangeStatusCondition", "ofType": null }, "defaultValue": null @@ -19033,7 +19955,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserFilter", + "name": "ChangeStatusFilter", "ofType": null }, "defaultValue": null @@ -19080,7 +20002,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `CifUser`.", + "description": "The method to use when ordering `ChangeStatus`.", "type": { "kind": "LIST", "name": null, @@ -19089,7 +20011,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "CifUsersOrderBy", + "name": "ChangeStatusesOrderBy", "ofType": null } } @@ -19102,7 +20024,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserChangeStatusesByProjectRevisionUpdatedByAndChangeStatusManyToManyConnection", "ofType": null } }, @@ -19110,8 +20032,8 @@ "deprecationReason": null }, { - "name": "cifUsersByAdditionalFundingSourceCreatedByAndArchivedBy", - "description": "Reads and enables pagination through a set of `CifUser`.", + "name": "changeStatusesByUpdatedBy", + "description": "Reads and enables pagination through a set of `ChangeStatus`.", "args": [ { "name": "after", @@ -19138,7 +20060,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserCondition", + "name": "ChangeStatusCondition", "ofType": null }, "defaultValue": null @@ -19148,7 +20070,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserFilter", + "name": "ChangeStatusFilter", "ofType": null }, "defaultValue": null @@ -19171,7 +20093,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -19195,7 +20117,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `CifUser`.", + "description": "The method to use when ordering `ChangeStatus`.", "type": { "kind": "LIST", "name": null, @@ -19204,7 +20126,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "CifUsersOrderBy", + "name": "ChangeStatusesOrderBy", "ofType": null } } @@ -19217,7 +20139,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceCreatedByAndArchivedByManyToManyConnection", + "name": "ChangeStatusesConnection", "ofType": null } }, @@ -19225,7 +20147,43 @@ "deprecationReason": null }, { - "name": "cifUsersByAdditionalFundingSourceCreatedByAndUpdatedBy", + "name": "cifUserByArchivedBy", + "description": "Reads a single `CifUser` that is related to this `CifUser`.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "CifUser", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cifUserByCreatedBy", + "description": "Reads a single `CifUser` that is related to this `CifUser`.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "CifUser", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cifUserByUpdatedBy", + "description": "Reads a single `CifUser` that is related to this `CifUser`.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "CifUser", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cifUsersByAdditionalFundingSourceArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -19332,7 +20290,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByAdditionalFundingSourceArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -19340,7 +20298,7 @@ "deprecationReason": null }, { - "name": "cifUsersByAdditionalFundingSourceStatusArchivedByAndCreatedBy", + "name": "cifUsersByAdditionalFundingSourceArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -19447,7 +20405,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceStatusArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByAdditionalFundingSourceArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -19455,7 +20413,7 @@ "deprecationReason": null }, { - "name": "cifUsersByAdditionalFundingSourceStatusArchivedByAndUpdatedBy", + "name": "cifUsersByAdditionalFundingSourceCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -19562,7 +20520,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceStatusArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByAdditionalFundingSourceCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -19570,7 +20528,7 @@ "deprecationReason": null }, { - "name": "cifUsersByAdditionalFundingSourceStatusCreatedByAndArchivedBy", + "name": "cifUsersByAdditionalFundingSourceCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -19677,7 +20635,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceStatusCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByAdditionalFundingSourceCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -19685,7 +20643,7 @@ "deprecationReason": null }, { - "name": "cifUsersByAdditionalFundingSourceStatusCreatedByAndUpdatedBy", + "name": "cifUsersByAdditionalFundingSourceStatusArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -19792,7 +20750,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceStatusCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByAdditionalFundingSourceStatusArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -19800,7 +20758,7 @@ "deprecationReason": null }, { - "name": "cifUsersByAdditionalFundingSourceStatusUpdatedByAndArchivedBy", + "name": "cifUsersByAdditionalFundingSourceStatusArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -19907,7 +20865,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceStatusUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByAdditionalFundingSourceStatusArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -19915,7 +20873,7 @@ "deprecationReason": null }, { - "name": "cifUsersByAdditionalFundingSourceStatusUpdatedByAndCreatedBy", + "name": "cifUsersByAdditionalFundingSourceStatusCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -20022,7 +20980,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceStatusUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByAdditionalFundingSourceStatusCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -20030,7 +20988,7 @@ "deprecationReason": null }, { - "name": "cifUsersByAdditionalFundingSourceUpdatedByAndArchivedBy", + "name": "cifUsersByAdditionalFundingSourceStatusCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -20137,7 +21095,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByAdditionalFundingSourceStatusCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -20145,7 +21103,7 @@ "deprecationReason": null }, { - "name": "cifUsersByAdditionalFundingSourceUpdatedByAndCreatedBy", + "name": "cifUsersByAdditionalFundingSourceStatusUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -20252,7 +21210,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByAdditionalFundingSourceStatusUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -20260,7 +21218,7 @@ "deprecationReason": null }, { - "name": "cifUsersByAmendmentTypeArchivedByAndCreatedBy", + "name": "cifUsersByAdditionalFundingSourceStatusUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -20367,7 +21325,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAmendmentTypeArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByAdditionalFundingSourceStatusUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -20375,7 +21333,7 @@ "deprecationReason": null }, { - "name": "cifUsersByAmendmentTypeArchivedByAndUpdatedBy", + "name": "cifUsersByAdditionalFundingSourceUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -20482,7 +21440,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAmendmentTypeArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByAdditionalFundingSourceUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -20490,7 +21448,7 @@ "deprecationReason": null }, { - "name": "cifUsersByAmendmentTypeCreatedByAndArchivedBy", + "name": "cifUsersByAdditionalFundingSourceUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -20597,7 +21555,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAmendmentTypeCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByAdditionalFundingSourceUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -20605,7 +21563,7 @@ "deprecationReason": null }, { - "name": "cifUsersByAmendmentTypeCreatedByAndUpdatedBy", + "name": "cifUsersByAmendmentTypeArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -20712,7 +21670,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAmendmentTypeCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByAmendmentTypeArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -20720,7 +21678,7 @@ "deprecationReason": null }, { - "name": "cifUsersByAmendmentTypeUpdatedByAndArchivedBy", + "name": "cifUsersByAmendmentTypeArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -20827,7 +21785,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAmendmentTypeUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByAmendmentTypeArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -20835,7 +21793,7 @@ "deprecationReason": null }, { - "name": "cifUsersByAmendmentTypeUpdatedByAndCreatedBy", + "name": "cifUsersByAmendmentTypeCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -20942,7 +21900,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAmendmentTypeUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByAmendmentTypeCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -20950,7 +21908,7 @@ "deprecationReason": null }, { - "name": "cifUsersByArchivedBy", + "name": "cifUsersByAmendmentTypeCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -21011,7 +21969,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -21057,7 +22015,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUsersConnection", + "name": "CifUserCifUsersByAmendmentTypeCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -21065,7 +22023,7 @@ "deprecationReason": null }, { - "name": "cifUsersByAttachmentArchivedByAndCreatedBy", + "name": "cifUsersByAmendmentTypeUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -21172,7 +22130,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAttachmentArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByAmendmentTypeUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -21180,7 +22138,7 @@ "deprecationReason": null }, { - "name": "cifUsersByAttachmentArchivedByAndUpdatedBy", + "name": "cifUsersByAmendmentTypeUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -21287,7 +22245,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAttachmentArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByAmendmentTypeUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -21295,7 +22253,7 @@ "deprecationReason": null }, { - "name": "cifUsersByAttachmentCreatedByAndArchivedBy", + "name": "cifUsersByArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -21356,7 +22314,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -21402,7 +22360,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAttachmentCreatedByAndArchivedByManyToManyConnection", + "name": "CifUsersConnection", "ofType": null } }, @@ -21410,7 +22368,7 @@ "deprecationReason": null }, { - "name": "cifUsersByAttachmentCreatedByAndUpdatedBy", + "name": "cifUsersByAttachmentArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -21517,7 +22475,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAttachmentCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByAttachmentArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -21525,7 +22483,7 @@ "deprecationReason": null }, { - "name": "cifUsersByAttachmentUpdatedByAndArchivedBy", + "name": "cifUsersByAttachmentArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -21632,7 +22590,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAttachmentUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByAttachmentArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -21640,7 +22598,7 @@ "deprecationReason": null }, { - "name": "cifUsersByAttachmentUpdatedByAndCreatedBy", + "name": "cifUsersByAttachmentCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -21747,7 +22705,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAttachmentUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByAttachmentCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -21755,7 +22713,7 @@ "deprecationReason": null }, { - "name": "cifUsersByChangeStatusArchivedByAndCreatedBy", + "name": "cifUsersByAttachmentCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -21862,7 +22820,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByChangeStatusArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByAttachmentCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -21870,7 +22828,7 @@ "deprecationReason": null }, { - "name": "cifUsersByChangeStatusArchivedByAndUpdatedBy", + "name": "cifUsersByAttachmentUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -21977,7 +22935,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByChangeStatusArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByAttachmentUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -21985,7 +22943,7 @@ "deprecationReason": null }, { - "name": "cifUsersByChangeStatusCreatedByAndArchivedBy", + "name": "cifUsersByAttachmentUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -22092,7 +23050,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByChangeStatusCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByAttachmentUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -22100,7 +23058,7 @@ "deprecationReason": null }, { - "name": "cifUsersByChangeStatusCreatedByAndUpdatedBy", + "name": "cifUsersByChangeStatusArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -22207,7 +23165,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByChangeStatusCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByChangeStatusArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -22215,7 +23173,7 @@ "deprecationReason": null }, { - "name": "cifUsersByChangeStatusUpdatedByAndArchivedBy", + "name": "cifUsersByChangeStatusArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -22322,7 +23280,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByChangeStatusUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByChangeStatusArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -22330,7 +23288,7 @@ "deprecationReason": null }, { - "name": "cifUsersByChangeStatusUpdatedByAndCreatedBy", + "name": "cifUsersByChangeStatusCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -22437,7 +23395,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByChangeStatusUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByChangeStatusCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -22445,7 +23403,7 @@ "deprecationReason": null }, { - "name": "cifUsersByCifUserArchivedByAndCreatedBy", + "name": "cifUsersByChangeStatusCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -22552,7 +23510,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByCifUserArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByChangeStatusCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -22560,7 +23518,7 @@ "deprecationReason": null }, { - "name": "cifUsersByCifUserArchivedByAndUpdatedBy", + "name": "cifUsersByChangeStatusUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -22667,7 +23625,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByCifUserArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByChangeStatusUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -22675,7 +23633,7 @@ "deprecationReason": null }, { - "name": "cifUsersByCifUserCreatedByAndArchivedBy", + "name": "cifUsersByChangeStatusUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -22782,7 +23740,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByCifUserCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByChangeStatusUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -22790,7 +23748,7 @@ "deprecationReason": null }, { - "name": "cifUsersByCifUserCreatedByAndUpdatedBy", + "name": "cifUsersByCifUserArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -22897,7 +23855,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByCifUserCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByCifUserArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -22905,7 +23863,7 @@ "deprecationReason": null }, { - "name": "cifUsersByCifUserUpdatedByAndArchivedBy", + "name": "cifUsersByCifUserArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -23012,7 +23970,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByCifUserUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByCifUserArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -23020,7 +23978,7 @@ "deprecationReason": null }, { - "name": "cifUsersByCifUserUpdatedByAndCreatedBy", + "name": "cifUsersByCifUserCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -23127,7 +24085,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByCifUserUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByCifUserCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -23135,7 +24093,7 @@ "deprecationReason": null }, { - "name": "cifUsersByContactArchivedByAndCreatedBy", + "name": "cifUsersByCifUserCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -23242,7 +24200,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByContactArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByCifUserCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -23250,7 +24208,7 @@ "deprecationReason": null }, { - "name": "cifUsersByContactArchivedByAndUpdatedBy", + "name": "cifUsersByCifUserUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -23357,7 +24315,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByContactArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByCifUserUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -23365,7 +24323,7 @@ "deprecationReason": null }, { - "name": "cifUsersByContactCreatedByAndArchivedBy", + "name": "cifUsersByCifUserUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -23472,7 +24430,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByContactCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByCifUserUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -23480,7 +24438,7 @@ "deprecationReason": null }, { - "name": "cifUsersByContactCreatedByAndUpdatedBy", + "name": "cifUsersByContactArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -23587,7 +24545,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByContactCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByContactArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -23595,7 +24553,7 @@ "deprecationReason": null }, { - "name": "cifUsersByContactUpdatedByAndArchivedBy", + "name": "cifUsersByContactArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -23702,7 +24660,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByContactUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByContactArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -23710,7 +24668,7 @@ "deprecationReason": null }, { - "name": "cifUsersByContactUpdatedByAndCreatedBy", + "name": "cifUsersByContactCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -23817,7 +24775,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByContactUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByContactCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -23825,7 +24783,7 @@ "deprecationReason": null }, { - "name": "cifUsersByCreatedBy", + "name": "cifUsersByContactCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -23886,7 +24844,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -23932,7 +24890,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUsersConnection", + "name": "CifUserCifUsersByContactCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -23940,7 +24898,7 @@ "deprecationReason": null }, { - "name": "cifUsersByEmissionIntensityPaymentPercentArchivedByAndCreatedBy", + "name": "cifUsersByContactUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -24047,7 +25005,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityPaymentPercentArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByContactUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -24055,7 +25013,7 @@ "deprecationReason": null }, { - "name": "cifUsersByEmissionIntensityPaymentPercentArchivedByAndUpdatedBy", + "name": "cifUsersByContactUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -24162,7 +25120,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityPaymentPercentArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByContactUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -24170,7 +25128,7 @@ "deprecationReason": null }, { - "name": "cifUsersByEmissionIntensityPaymentPercentCreatedByAndArchivedBy", + "name": "cifUsersByCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -24231,7 +25189,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -24277,7 +25235,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityPaymentPercentCreatedByAndArchivedByManyToManyConnection", + "name": "CifUsersConnection", "ofType": null } }, @@ -24285,7 +25243,7 @@ "deprecationReason": null }, { - "name": "cifUsersByEmissionIntensityPaymentPercentCreatedByAndUpdatedBy", + "name": "cifUsersByEmissionIntensityPaymentPercentArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -24392,7 +25350,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityPaymentPercentCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByEmissionIntensityPaymentPercentArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -24400,7 +25358,7 @@ "deprecationReason": null }, { - "name": "cifUsersByEmissionIntensityPaymentPercentUpdatedByAndArchivedBy", + "name": "cifUsersByEmissionIntensityPaymentPercentArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -24507,7 +25465,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityPaymentPercentUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByEmissionIntensityPaymentPercentArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -24515,7 +25473,7 @@ "deprecationReason": null }, { - "name": "cifUsersByEmissionIntensityPaymentPercentUpdatedByAndCreatedBy", + "name": "cifUsersByEmissionIntensityPaymentPercentCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -24622,7 +25580,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityPaymentPercentUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByEmissionIntensityPaymentPercentCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -24630,7 +25588,7 @@ "deprecationReason": null }, { - "name": "cifUsersByEmissionIntensityReportArchivedByAndCreatedBy", + "name": "cifUsersByEmissionIntensityPaymentPercentCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -24737,7 +25695,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityReportArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByEmissionIntensityPaymentPercentCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -24745,7 +25703,7 @@ "deprecationReason": null }, { - "name": "cifUsersByEmissionIntensityReportArchivedByAndUpdatedBy", + "name": "cifUsersByEmissionIntensityPaymentPercentUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -24852,7 +25810,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityReportArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByEmissionIntensityPaymentPercentUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -24860,7 +25818,7 @@ "deprecationReason": null }, { - "name": "cifUsersByEmissionIntensityReportCreatedByAndArchivedBy", + "name": "cifUsersByEmissionIntensityPaymentPercentUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -24967,7 +25925,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityReportCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByEmissionIntensityPaymentPercentUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -24975,7 +25933,7 @@ "deprecationReason": null }, { - "name": "cifUsersByEmissionIntensityReportCreatedByAndUpdatedBy", + "name": "cifUsersByEmissionIntensityReportArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -25082,7 +26040,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityReportCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByEmissionIntensityReportArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -25090,7 +26048,7 @@ "deprecationReason": null }, { - "name": "cifUsersByEmissionIntensityReportUpdatedByAndArchivedBy", + "name": "cifUsersByEmissionIntensityReportArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -25197,7 +26155,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityReportUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByEmissionIntensityReportArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -25205,7 +26163,7 @@ "deprecationReason": null }, { - "name": "cifUsersByEmissionIntensityReportUpdatedByAndCreatedBy", + "name": "cifUsersByEmissionIntensityReportCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -25312,7 +26270,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityReportUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByEmissionIntensityReportCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -25320,7 +26278,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFormArchivedByAndCreatedBy", + "name": "cifUsersByEmissionIntensityReportCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -25427,7 +26385,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFormArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByEmissionIntensityReportCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -25435,7 +26393,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFormArchivedByAndUpdatedBy", + "name": "cifUsersByEmissionIntensityReportUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -25542,7 +26500,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFormArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByEmissionIntensityReportUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -25550,7 +26508,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFormChangeCreatedByAndUpdatedBy", + "name": "cifUsersByEmissionIntensityReportUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -25657,7 +26615,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFormChangeCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByEmissionIntensityReportUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -25665,7 +26623,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFormChangeUpdatedByAndCreatedBy", + "name": "cifUsersByFormArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -25772,7 +26730,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFormChangeUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByFormArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -25780,7 +26738,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFormCreatedByAndArchivedBy", + "name": "cifUsersByFormArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -25887,7 +26845,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFormCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByFormArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -25895,7 +26853,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFormCreatedByAndUpdatedBy", + "name": "cifUsersByFormChangeCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -26002,7 +26960,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFormCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByFormChangeCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -26010,7 +26968,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFormUpdatedByAndArchivedBy", + "name": "cifUsersByFormChangeUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -26117,7 +27075,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFormUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByFormChangeUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -26125,7 +27083,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFormUpdatedByAndCreatedBy", + "name": "cifUsersByFormCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -26232,7 +27190,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFormUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByFormCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -26240,7 +27198,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFundingParameterArchivedByAndCreatedBy", + "name": "cifUsersByFormCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -26347,7 +27305,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingParameterArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByFormCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -26355,7 +27313,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFundingParameterArchivedByAndUpdatedBy", + "name": "cifUsersByFormUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -26462,7 +27420,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingParameterArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByFormUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -26470,7 +27428,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFundingParameterCreatedByAndArchivedBy", + "name": "cifUsersByFormUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -26577,7 +27535,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingParameterCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByFormUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -26585,7 +27543,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFundingParameterCreatedByAndUpdatedBy", + "name": "cifUsersByFundingParameterArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -26692,7 +27650,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingParameterCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByFundingParameterArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -26700,7 +27658,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFundingParameterUpdatedByAndArchivedBy", + "name": "cifUsersByFundingParameterArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -26807,7 +27765,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingParameterUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByFundingParameterArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -26815,7 +27773,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFundingParameterUpdatedByAndCreatedBy", + "name": "cifUsersByFundingParameterCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -26922,7 +27880,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingParameterUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByFundingParameterCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -26930,7 +27888,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFundingStreamArchivedByAndCreatedBy", + "name": "cifUsersByFundingParameterCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -27037,7 +27995,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByFundingParameterCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -27045,7 +28003,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFundingStreamArchivedByAndUpdatedBy", + "name": "cifUsersByFundingParameterUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -27152,7 +28110,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByFundingParameterUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -27160,7 +28118,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFundingStreamCreatedByAndArchivedBy", + "name": "cifUsersByFundingParameterUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -27267,7 +28225,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByFundingParameterUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -27275,7 +28233,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFundingStreamCreatedByAndUpdatedBy", + "name": "cifUsersByFundingStreamArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -27382,7 +28340,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByFundingStreamArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -27390,7 +28348,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFundingStreamProjectStatusArchivedByAndCreatedBy", + "name": "cifUsersByFundingStreamArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -27497,7 +28455,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamProjectStatusArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByFundingStreamArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -27505,7 +28463,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFundingStreamProjectStatusArchivedByAndUpdatedBy", + "name": "cifUsersByFundingStreamCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -27612,7 +28570,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamProjectStatusArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByFundingStreamCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -27620,7 +28578,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFundingStreamProjectStatusCreatedByAndArchivedBy", + "name": "cifUsersByFundingStreamCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -27727,7 +28685,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamProjectStatusCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByFundingStreamCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -27735,7 +28693,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFundingStreamProjectStatusCreatedByAndUpdatedBy", + "name": "cifUsersByFundingStreamProjectStatusArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -27842,7 +28800,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamProjectStatusCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByFundingStreamProjectStatusArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -27850,7 +28808,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFundingStreamProjectStatusUpdatedByAndArchivedBy", + "name": "cifUsersByFundingStreamProjectStatusArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -27957,7 +28915,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamProjectStatusUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByFundingStreamProjectStatusArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -27965,7 +28923,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFundingStreamProjectStatusUpdatedByAndCreatedBy", + "name": "cifUsersByFundingStreamProjectStatusCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -28072,7 +29030,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamProjectStatusUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByFundingStreamProjectStatusCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -28080,7 +29038,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFundingStreamRfpArchivedByAndCreatedBy", + "name": "cifUsersByFundingStreamProjectStatusCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -28187,7 +29145,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamRfpArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByFundingStreamProjectStatusCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -28195,7 +29153,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFundingStreamRfpArchivedByAndUpdatedBy", + "name": "cifUsersByFundingStreamProjectStatusUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -28302,7 +29260,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamRfpArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByFundingStreamProjectStatusUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -28310,7 +29268,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFundingStreamRfpCreatedByAndArchivedBy", + "name": "cifUsersByFundingStreamProjectStatusUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -28417,7 +29375,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamRfpCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByFundingStreamProjectStatusUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -28425,7 +29383,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFundingStreamRfpCreatedByAndUpdatedBy", + "name": "cifUsersByFundingStreamRfpArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -28532,7 +29490,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamRfpCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByFundingStreamRfpArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -28540,7 +29498,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFundingStreamRfpUpdatedByAndArchivedBy", + "name": "cifUsersByFundingStreamRfpArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -28647,7 +29605,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamRfpUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByFundingStreamRfpArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -28655,7 +29613,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFundingStreamRfpUpdatedByAndCreatedBy", + "name": "cifUsersByFundingStreamRfpCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -28762,7 +29720,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamRfpUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByFundingStreamRfpCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -28770,7 +29728,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFundingStreamUpdatedByAndArchivedBy", + "name": "cifUsersByFundingStreamRfpCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -28877,7 +29835,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByFundingStreamRfpCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -28885,7 +29843,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFundingStreamUpdatedByAndCreatedBy", + "name": "cifUsersByFundingStreamRfpUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -28992,7 +29950,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByFundingStreamRfpUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -29000,7 +29958,7 @@ "deprecationReason": null }, { - "name": "cifUsersByMilestoneReportArchivedByAndCreatedBy", + "name": "cifUsersByFundingStreamRfpUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -29107,7 +30065,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByMilestoneReportArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByFundingStreamRfpUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -29115,7 +30073,7 @@ "deprecationReason": null }, { - "name": "cifUsersByMilestoneReportArchivedByAndUpdatedBy", + "name": "cifUsersByFundingStreamUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -29222,7 +30180,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByMilestoneReportArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByFundingStreamUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -29230,7 +30188,7 @@ "deprecationReason": null }, { - "name": "cifUsersByMilestoneReportCreatedByAndArchivedBy", + "name": "cifUsersByFundingStreamUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -29337,7 +30295,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByMilestoneReportCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByFundingStreamUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -29345,7 +30303,7 @@ "deprecationReason": null }, { - "name": "cifUsersByMilestoneReportCreatedByAndUpdatedBy", + "name": "cifUsersByMilestoneReportArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -29452,7 +30410,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByMilestoneReportCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByMilestoneReportArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -29460,7 +30418,7 @@ "deprecationReason": null }, { - "name": "cifUsersByMilestoneReportUpdatedByAndArchivedBy", + "name": "cifUsersByMilestoneReportArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -29567,7 +30525,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByMilestoneReportUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByMilestoneReportArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -29575,7 +30533,7 @@ "deprecationReason": null }, { - "name": "cifUsersByMilestoneReportUpdatedByAndCreatedBy", + "name": "cifUsersByMilestoneReportCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -29682,7 +30640,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByMilestoneReportUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByMilestoneReportCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -29690,7 +30648,7 @@ "deprecationReason": null }, { - "name": "cifUsersByOperatorArchivedByAndCreatedBy", + "name": "cifUsersByMilestoneReportCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -29797,7 +30755,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByOperatorArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByMilestoneReportCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -29805,7 +30763,7 @@ "deprecationReason": null }, { - "name": "cifUsersByOperatorArchivedByAndUpdatedBy", + "name": "cifUsersByMilestoneReportUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -29912,7 +30870,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByOperatorArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByMilestoneReportUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -29920,7 +30878,7 @@ "deprecationReason": null }, { - "name": "cifUsersByOperatorCreatedByAndArchivedBy", + "name": "cifUsersByMilestoneReportUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -30027,7 +30985,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByOperatorCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByMilestoneReportUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -30035,7 +30993,7 @@ "deprecationReason": null }, { - "name": "cifUsersByOperatorCreatedByAndUpdatedBy", + "name": "cifUsersByOperatorArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -30142,7 +31100,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByOperatorCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByOperatorArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -30150,7 +31108,7 @@ "deprecationReason": null }, { - "name": "cifUsersByOperatorUpdatedByAndArchivedBy", + "name": "cifUsersByOperatorArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -30257,7 +31215,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByOperatorUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByOperatorArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -30265,7 +31223,7 @@ "deprecationReason": null }, { - "name": "cifUsersByOperatorUpdatedByAndCreatedBy", + "name": "cifUsersByOperatorCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -30372,7 +31330,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByOperatorUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByOperatorCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -30380,7 +31338,7 @@ "deprecationReason": null }, { - "name": "cifUsersByPaymentArchivedByAndCreatedBy", + "name": "cifUsersByOperatorCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -30487,7 +31445,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByPaymentArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByOperatorCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -30495,7 +31453,7 @@ "deprecationReason": null }, { - "name": "cifUsersByPaymentArchivedByAndUpdatedBy", + "name": "cifUsersByOperatorUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -30602,7 +31560,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByPaymentArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByOperatorUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -30610,7 +31568,7 @@ "deprecationReason": null }, { - "name": "cifUsersByPaymentCreatedByAndArchivedBy", + "name": "cifUsersByOperatorUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -30717,7 +31675,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByPaymentCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByOperatorUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -30725,7 +31683,7 @@ "deprecationReason": null }, { - "name": "cifUsersByPaymentCreatedByAndUpdatedBy", + "name": "cifUsersByPaymentArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -30832,7 +31790,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByPaymentCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByPaymentArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -30840,7 +31798,7 @@ "deprecationReason": null }, { - "name": "cifUsersByPaymentUpdatedByAndArchivedBy", + "name": "cifUsersByPaymentArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -30947,7 +31905,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByPaymentUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByPaymentArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -30955,7 +31913,7 @@ "deprecationReason": null }, { - "name": "cifUsersByPaymentUpdatedByAndCreatedBy", + "name": "cifUsersByPaymentCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -31062,7 +32020,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByPaymentUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByPaymentCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -31070,7 +32028,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectArchivedByAndCreatedBy", + "name": "cifUsersByPaymentCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -31177,7 +32135,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByPaymentCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -31185,7 +32143,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectArchivedByAndUpdatedBy", + "name": "cifUsersByPaymentUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -31292,7 +32250,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByPaymentUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -31300,7 +32258,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectContactArchivedByAndCreatedBy", + "name": "cifUsersByPaymentUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -31407,7 +32365,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectContactArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByPaymentUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -31415,7 +32373,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectContactArchivedByAndUpdatedBy", + "name": "cifUsersByProjectArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -31522,7 +32480,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectContactArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -31530,7 +32488,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectContactCreatedByAndArchivedBy", + "name": "cifUsersByProjectArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -31637,7 +32595,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectContactCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByProjectArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -31645,7 +32603,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectContactCreatedByAndUpdatedBy", + "name": "cifUsersByProjectAttachmentArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -31752,7 +32710,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectContactCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectAttachmentArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -31760,7 +32718,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectContactUpdatedByAndArchivedBy", + "name": "cifUsersByProjectAttachmentArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -31867,7 +32825,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectContactUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByProjectAttachmentArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -31875,7 +32833,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectContactUpdatedByAndCreatedBy", + "name": "cifUsersByProjectAttachmentCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -31982,7 +32940,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectContactUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectAttachmentCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -31990,7 +32948,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectCreatedByAndArchivedBy", + "name": "cifUsersByProjectAttachmentCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -32097,7 +33055,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByProjectAttachmentCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -32105,7 +33063,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectCreatedByAndUpdatedBy", + "name": "cifUsersByProjectAttachmentUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -32212,7 +33170,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectAttachmentUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -32220,7 +33178,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectManagerArchivedByAndCifUserId", + "name": "cifUsersByProjectAttachmentUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -32327,7 +33285,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerArchivedByAndCifUserIdManyToManyConnection", + "name": "CifUserCifUsersByProjectAttachmentUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -32335,7 +33293,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectManagerArchivedByAndCreatedBy", + "name": "cifUsersByProjectContactArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -32442,7 +33400,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectContactArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -32450,7 +33408,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectManagerArchivedByAndUpdatedBy", + "name": "cifUsersByProjectContactArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -32557,7 +33515,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectContactArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -32565,7 +33523,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectManagerCifUserIdAndArchivedBy", + "name": "cifUsersByProjectContactCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -32672,7 +33630,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerCifUserIdAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByProjectContactCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -32680,7 +33638,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectManagerCifUserIdAndCreatedBy", + "name": "cifUsersByProjectContactCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -32787,7 +33745,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerCifUserIdAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectContactCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -32795,7 +33753,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectManagerCifUserIdAndUpdatedBy", + "name": "cifUsersByProjectContactUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -32902,7 +33860,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerCifUserIdAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectContactUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -32910,7 +33868,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectManagerCreatedByAndArchivedBy", + "name": "cifUsersByProjectContactUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -33017,7 +33975,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByProjectContactUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -33025,7 +33983,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectManagerCreatedByAndCifUserId", + "name": "cifUsersByProjectCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -33132,7 +34090,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerCreatedByAndCifUserIdManyToManyConnection", + "name": "CifUserCifUsersByProjectCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -33140,7 +34098,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectManagerCreatedByAndUpdatedBy", + "name": "cifUsersByProjectCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -33247,7 +34205,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -33255,7 +34213,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectManagerLabelArchivedByAndCreatedBy", + "name": "cifUsersByProjectManagerArchivedByAndCifUserId", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -33362,7 +34320,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerLabelArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectManagerArchivedByAndCifUserIdManyToManyConnection", "ofType": null } }, @@ -33370,7 +34328,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectManagerLabelArchivedByAndUpdatedBy", + "name": "cifUsersByProjectManagerArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -33477,7 +34435,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerLabelArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectManagerArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -33485,7 +34443,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectManagerLabelCreatedByAndArchivedBy", + "name": "cifUsersByProjectManagerArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -33592,7 +34550,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerLabelCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByProjectManagerArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -33600,7 +34558,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectManagerLabelCreatedByAndUpdatedBy", + "name": "cifUsersByProjectManagerCifUserIdAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -33707,7 +34665,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerLabelCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectManagerCifUserIdAndArchivedByManyToManyConnection", "ofType": null } }, @@ -33715,7 +34673,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectManagerLabelUpdatedByAndArchivedBy", + "name": "cifUsersByProjectManagerCifUserIdAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -33822,7 +34780,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerLabelUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByProjectManagerCifUserIdAndCreatedByManyToManyConnection", "ofType": null } }, @@ -33830,7 +34788,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectManagerLabelUpdatedByAndCreatedBy", + "name": "cifUsersByProjectManagerCifUserIdAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -33937,7 +34895,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerLabelUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectManagerCifUserIdAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -33945,7 +34903,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectManagerUpdatedByAndArchivedBy", + "name": "cifUsersByProjectManagerCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -34052,7 +35010,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByProjectManagerCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -34060,7 +35018,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectManagerUpdatedByAndCifUserId", + "name": "cifUsersByProjectManagerCreatedByAndCifUserId", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -34167,7 +35125,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerUpdatedByAndCifUserIdManyToManyConnection", + "name": "CifUserCifUsersByProjectManagerCreatedByAndCifUserIdManyToManyConnection", "ofType": null } }, @@ -34175,7 +35133,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectManagerUpdatedByAndCreatedBy", + "name": "cifUsersByProjectManagerCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -34282,7 +35240,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectManagerCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -34290,7 +35248,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectRevisionAmendmentTypeArchivedByAndCreatedBy", + "name": "cifUsersByProjectManagerLabelArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -34397,7 +35355,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionAmendmentTypeArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectManagerLabelArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -34405,7 +35363,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectRevisionAmendmentTypeArchivedByAndUpdatedBy", + "name": "cifUsersByProjectManagerLabelArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -34512,7 +35470,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionAmendmentTypeArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectManagerLabelArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -34520,7 +35478,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectRevisionAmendmentTypeCreatedByAndArchivedBy", + "name": "cifUsersByProjectManagerLabelCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -34627,7 +35585,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionAmendmentTypeCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByProjectManagerLabelCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -34635,7 +35593,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectRevisionAmendmentTypeCreatedByAndUpdatedBy", + "name": "cifUsersByProjectManagerLabelCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -34742,7 +35700,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionAmendmentTypeCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectManagerLabelCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -34750,7 +35708,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectRevisionAmendmentTypeUpdatedByAndArchivedBy", + "name": "cifUsersByProjectManagerLabelUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -34857,7 +35815,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionAmendmentTypeUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByProjectManagerLabelUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -34865,7 +35823,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectRevisionAmendmentTypeUpdatedByAndCreatedBy", + "name": "cifUsersByProjectManagerLabelUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -34972,7 +35930,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionAmendmentTypeUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectManagerLabelUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -34980,7 +35938,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectRevisionCreatedByAndUpdatedBy", + "name": "cifUsersByProjectManagerUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -35087,7 +36045,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectManagerUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -35095,7 +36053,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectRevisionUpdatedByAndCreatedBy", + "name": "cifUsersByProjectManagerUpdatedByAndCifUserId", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -35202,7 +36160,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectManagerUpdatedByAndCifUserIdManyToManyConnection", "ofType": null } }, @@ -35210,7 +36168,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectStatusArchivedByAndCreatedBy", + "name": "cifUsersByProjectManagerUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -35317,7 +36275,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectStatusArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectManagerUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -35325,7 +36283,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectStatusArchivedByAndUpdatedBy", + "name": "cifUsersByProjectRevisionAmendmentTypeArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -35432,7 +36390,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectStatusArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectRevisionAmendmentTypeArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -35440,7 +36398,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectStatusCreatedByAndArchivedBy", + "name": "cifUsersByProjectRevisionAmendmentTypeArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -35547,7 +36505,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectStatusCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByProjectRevisionAmendmentTypeArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -35555,7 +36513,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectStatusCreatedByAndUpdatedBy", + "name": "cifUsersByProjectRevisionAmendmentTypeCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -35662,7 +36620,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectStatusCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectRevisionAmendmentTypeCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -35670,7 +36628,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectStatusUpdatedByAndArchivedBy", + "name": "cifUsersByProjectRevisionAmendmentTypeCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -35777,7 +36735,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectStatusUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByProjectRevisionAmendmentTypeCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -35785,7 +36743,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectStatusUpdatedByAndCreatedBy", + "name": "cifUsersByProjectRevisionAmendmentTypeUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -35892,7 +36850,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectStatusUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectRevisionAmendmentTypeUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -35900,7 +36858,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectTypeArchivedByAndCreatedBy", + "name": "cifUsersByProjectRevisionAmendmentTypeUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -36007,7 +36965,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectTypeArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectRevisionAmendmentTypeUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -36015,7 +36973,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectTypeArchivedByAndUpdatedBy", + "name": "cifUsersByProjectRevisionCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -36122,7 +37080,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectTypeArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectRevisionCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -36130,7 +37088,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectTypeCreatedByAndArchivedBy", + "name": "cifUsersByProjectRevisionUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -36237,7 +37195,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectTypeCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByProjectRevisionUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -36245,7 +37203,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectTypeCreatedByAndUpdatedBy", + "name": "cifUsersByProjectStatusArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -36352,7 +37310,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectTypeCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectStatusArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -36360,7 +37318,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectTypeUpdatedByAndArchivedBy", + "name": "cifUsersByProjectStatusArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -36467,7 +37425,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectTypeUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByProjectStatusArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -36475,7 +37433,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectTypeUpdatedByAndCreatedBy", + "name": "cifUsersByProjectStatusCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -36582,7 +37540,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectTypeUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectStatusCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -36590,7 +37548,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectUpdatedByAndArchivedBy", + "name": "cifUsersByProjectStatusCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -36697,7 +37655,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByProjectStatusCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -36705,7 +37663,7 @@ "deprecationReason": null }, { - "name": "cifUsersByProjectUpdatedByAndCreatedBy", + "name": "cifUsersByProjectStatusUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -36812,7 +37770,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectStatusUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -36820,7 +37778,7 @@ "deprecationReason": null }, { - "name": "cifUsersByReportTypeArchivedByAndCreatedBy", + "name": "cifUsersByProjectStatusUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -36927,7 +37885,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByReportTypeArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectStatusUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -36935,7 +37893,7 @@ "deprecationReason": null }, { - "name": "cifUsersByReportTypeArchivedByAndUpdatedBy", + "name": "cifUsersByProjectTypeArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -37042,7 +38000,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByReportTypeArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectTypeArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -37050,7 +38008,7 @@ "deprecationReason": null }, { - "name": "cifUsersByReportTypeCreatedByAndArchivedBy", + "name": "cifUsersByProjectTypeArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -37157,7 +38115,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByReportTypeCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByProjectTypeArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -37165,7 +38123,7 @@ "deprecationReason": null }, { - "name": "cifUsersByReportTypeCreatedByAndUpdatedBy", + "name": "cifUsersByProjectTypeCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -37272,7 +38230,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByReportTypeCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectTypeCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -37280,7 +38238,7 @@ "deprecationReason": null }, { - "name": "cifUsersByReportTypeUpdatedByAndArchivedBy", + "name": "cifUsersByProjectTypeCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -37387,7 +38345,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByReportTypeUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByProjectTypeCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -37395,7 +38353,7 @@ "deprecationReason": null }, { - "name": "cifUsersByReportTypeUpdatedByAndCreatedBy", + "name": "cifUsersByProjectTypeUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -37502,7 +38460,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByReportTypeUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectTypeUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -37510,7 +38468,7 @@ "deprecationReason": null }, { - "name": "cifUsersByReportingRequirementArchivedByAndCreatedBy", + "name": "cifUsersByProjectTypeUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -37617,7 +38575,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByReportingRequirementArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectTypeUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -37625,7 +38583,7 @@ "deprecationReason": null }, { - "name": "cifUsersByReportingRequirementArchivedByAndUpdatedBy", + "name": "cifUsersByProjectUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -37732,7 +38690,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByReportingRequirementArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -37740,7 +38698,7 @@ "deprecationReason": null }, { - "name": "cifUsersByReportingRequirementCreatedByAndArchivedBy", + "name": "cifUsersByProjectUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -37847,7 +38805,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByReportingRequirementCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByProjectUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -37855,7 +38813,7 @@ "deprecationReason": null }, { - "name": "cifUsersByReportingRequirementCreatedByAndUpdatedBy", + "name": "cifUsersByReportTypeArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -37962,7 +38920,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByReportingRequirementCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByReportTypeArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -37970,7 +38928,7 @@ "deprecationReason": null }, { - "name": "cifUsersByReportingRequirementUpdatedByAndArchivedBy", + "name": "cifUsersByReportTypeArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -38077,7 +39035,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByReportingRequirementUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByReportTypeArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -38085,7 +39043,7 @@ "deprecationReason": null }, { - "name": "cifUsersByReportingRequirementUpdatedByAndCreatedBy", + "name": "cifUsersByReportTypeCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -38192,7 +39150,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByReportingRequirementUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByReportTypeCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -38200,7 +39158,7 @@ "deprecationReason": null }, { - "name": "cifUsersByRevisionStatusArchivedByAndCreatedBy", + "name": "cifUsersByReportTypeCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -38307,7 +39265,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionStatusArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByReportTypeCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -38315,7 +39273,7 @@ "deprecationReason": null }, { - "name": "cifUsersByRevisionStatusArchivedByAndUpdatedBy", + "name": "cifUsersByReportTypeUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -38422,7 +39380,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionStatusArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByReportTypeUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -38430,7 +39388,7 @@ "deprecationReason": null }, { - "name": "cifUsersByRevisionStatusCreatedByAndArchivedBy", + "name": "cifUsersByReportTypeUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -38537,7 +39495,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionStatusCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByReportTypeUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -38545,7 +39503,7 @@ "deprecationReason": null }, { - "name": "cifUsersByRevisionStatusCreatedByAndUpdatedBy", + "name": "cifUsersByReportingRequirementArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -38652,7 +39610,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionStatusCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByReportingRequirementArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -38660,7 +39618,7 @@ "deprecationReason": null }, { - "name": "cifUsersByRevisionStatusUpdatedByAndArchivedBy", + "name": "cifUsersByReportingRequirementArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -38767,7 +39725,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionStatusUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByReportingRequirementArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -38775,7 +39733,7 @@ "deprecationReason": null }, { - "name": "cifUsersByRevisionStatusUpdatedByAndCreatedBy", + "name": "cifUsersByReportingRequirementCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -38882,7 +39840,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionStatusUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByReportingRequirementCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -38890,7 +39848,7 @@ "deprecationReason": null }, { - "name": "cifUsersByRevisionTypeArchivedByAndCreatedBy", + "name": "cifUsersByReportingRequirementCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -38997,7 +39955,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionTypeArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByReportingRequirementCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -39005,7 +39963,7 @@ "deprecationReason": null }, { - "name": "cifUsersByRevisionTypeArchivedByAndUpdatedBy", + "name": "cifUsersByReportingRequirementUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -39112,7 +40070,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionTypeArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByReportingRequirementUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -39120,7 +40078,7 @@ "deprecationReason": null }, { - "name": "cifUsersByRevisionTypeCreatedByAndArchivedBy", + "name": "cifUsersByReportingRequirementUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -39227,7 +40185,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionTypeCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByReportingRequirementUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -39235,7 +40193,7 @@ "deprecationReason": null }, { - "name": "cifUsersByRevisionTypeCreatedByAndUpdatedBy", + "name": "cifUsersByRevisionStatusArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -39342,7 +40300,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionTypeCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByRevisionStatusArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -39350,7 +40308,7 @@ "deprecationReason": null }, { - "name": "cifUsersByRevisionTypeUpdatedByAndArchivedBy", + "name": "cifUsersByRevisionStatusArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -39457,7 +40415,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionTypeUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByRevisionStatusArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -39465,7 +40423,7 @@ "deprecationReason": null }, { - "name": "cifUsersByRevisionTypeUpdatedByAndCreatedBy", + "name": "cifUsersByRevisionStatusCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -39572,7 +40530,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionTypeUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByRevisionStatusCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -39580,7 +40538,7 @@ "deprecationReason": null }, { - "name": "cifUsersBySectorArchivedByAndCreatedBy", + "name": "cifUsersByRevisionStatusCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -39687,7 +40645,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersBySectorArchivedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByRevisionStatusCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -39695,7 +40653,7 @@ "deprecationReason": null }, { - "name": "cifUsersBySectorArchivedByAndUpdatedBy", + "name": "cifUsersByRevisionStatusUpdatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -39802,7 +40760,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersBySectorArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByRevisionStatusUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -39810,7 +40768,7 @@ "deprecationReason": null }, { - "name": "cifUsersBySectorCreatedByAndArchivedBy", + "name": "cifUsersByRevisionStatusUpdatedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -39917,7 +40875,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersBySectorCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByRevisionStatusUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -39925,7 +40883,7 @@ "deprecationReason": null }, { - "name": "cifUsersBySectorCreatedByAndUpdatedBy", + "name": "cifUsersByRevisionTypeArchivedByAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -40032,7 +40990,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersBySectorCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByRevisionTypeArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -40040,7 +40998,7 @@ "deprecationReason": null }, { - "name": "cifUsersBySectorUpdatedByAndArchivedBy", + "name": "cifUsersByRevisionTypeArchivedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -40147,7 +41105,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersBySectorUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByRevisionTypeArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -40155,7 +41113,7 @@ "deprecationReason": null }, { - "name": "cifUsersBySectorUpdatedByAndCreatedBy", + "name": "cifUsersByRevisionTypeCreatedByAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -40262,7 +41220,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersBySectorUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByRevisionTypeCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -40270,7 +41228,7 @@ "deprecationReason": null }, { - "name": "cifUsersByUpdatedBy", + "name": "cifUsersByRevisionTypeCreatedByAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -40331,7 +41289,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -40377,7 +41335,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUsersConnection", + "name": "CifUserCifUsersByRevisionTypeCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -40385,8 +41343,8 @@ "deprecationReason": null }, { - "name": "contactsByArchivedBy", - "description": "Reads and enables pagination through a set of `Contact`.", + "name": "cifUsersByRevisionTypeUpdatedByAndArchivedBy", + "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { "name": "after", @@ -40413,7 +41371,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ContactCondition", + "name": "CifUserCondition", "ofType": null }, "defaultValue": null @@ -40423,7 +41381,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ContactFilter", + "name": "CifUserFilter", "ofType": null }, "defaultValue": null @@ -40446,7 +41404,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -40470,7 +41428,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Contact`.", + "description": "The method to use when ordering `CifUser`.", "type": { "kind": "LIST", "name": null, @@ -40479,7 +41437,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ContactsOrderBy", + "name": "CifUsersOrderBy", "ofType": null } } @@ -40492,7 +41450,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ContactsConnection", + "name": "CifUserCifUsersByRevisionTypeUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -40500,8 +41458,8 @@ "deprecationReason": null }, { - "name": "contactsByCreatedBy", - "description": "Reads and enables pagination through a set of `Contact`.", + "name": "cifUsersByRevisionTypeUpdatedByAndCreatedBy", + "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { "name": "after", @@ -40528,7 +41486,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ContactCondition", + "name": "CifUserCondition", "ofType": null }, "defaultValue": null @@ -40538,7 +41496,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ContactFilter", + "name": "CifUserFilter", "ofType": null }, "defaultValue": null @@ -40561,7 +41519,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -40585,7 +41543,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Contact`.", + "description": "The method to use when ordering `CifUser`.", "type": { "kind": "LIST", "name": null, @@ -40594,7 +41552,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ContactsOrderBy", + "name": "CifUsersOrderBy", "ofType": null } } @@ -40607,7 +41565,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ContactsConnection", + "name": "CifUserCifUsersByRevisionTypeUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -40615,8 +41573,8 @@ "deprecationReason": null }, { - "name": "contactsByProjectContactArchivedByAndContactId", - "description": "Reads and enables pagination through a set of `Contact`.", + "name": "cifUsersBySectorArchivedByAndCreatedBy", + "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { "name": "after", @@ -40643,7 +41601,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ContactCondition", + "name": "CifUserCondition", "ofType": null }, "defaultValue": null @@ -40653,7 +41611,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ContactFilter", + "name": "CifUserFilter", "ofType": null }, "defaultValue": null @@ -40700,7 +41658,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Contact`.", + "description": "The method to use when ordering `CifUser`.", "type": { "kind": "LIST", "name": null, @@ -40709,7 +41667,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ContactsOrderBy", + "name": "CifUsersOrderBy", "ofType": null } } @@ -40722,7 +41680,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserContactsByProjectContactArchivedByAndContactIdManyToManyConnection", + "name": "CifUserCifUsersBySectorArchivedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -40730,8 +41688,8 @@ "deprecationReason": null }, { - "name": "contactsByProjectContactCreatedByAndContactId", - "description": "Reads and enables pagination through a set of `Contact`.", + "name": "cifUsersBySectorArchivedByAndUpdatedBy", + "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { "name": "after", @@ -40758,7 +41716,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ContactCondition", + "name": "CifUserCondition", "ofType": null }, "defaultValue": null @@ -40768,7 +41726,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ContactFilter", + "name": "CifUserFilter", "ofType": null }, "defaultValue": null @@ -40815,7 +41773,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Contact`.", + "description": "The method to use when ordering `CifUser`.", "type": { "kind": "LIST", "name": null, @@ -40824,7 +41782,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ContactsOrderBy", + "name": "CifUsersOrderBy", "ofType": null } } @@ -40837,7 +41795,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserContactsByProjectContactCreatedByAndContactIdManyToManyConnection", + "name": "CifUserCifUsersBySectorArchivedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -40845,8 +41803,8 @@ "deprecationReason": null }, { - "name": "contactsByProjectContactUpdatedByAndContactId", - "description": "Reads and enables pagination through a set of `Contact`.", + "name": "cifUsersBySectorCreatedByAndArchivedBy", + "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { "name": "after", @@ -40873,7 +41831,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ContactCondition", + "name": "CifUserCondition", "ofType": null }, "defaultValue": null @@ -40883,7 +41841,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ContactFilter", + "name": "CifUserFilter", "ofType": null }, "defaultValue": null @@ -40930,7 +41888,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Contact`.", + "description": "The method to use when ordering `CifUser`.", "type": { "kind": "LIST", "name": null, @@ -40939,7 +41897,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ContactsOrderBy", + "name": "CifUsersOrderBy", "ofType": null } } @@ -40952,7 +41910,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserContactsByProjectContactUpdatedByAndContactIdManyToManyConnection", + "name": "CifUserCifUsersBySectorCreatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -40960,8 +41918,8 @@ "deprecationReason": null }, { - "name": "contactsByUpdatedBy", - "description": "Reads and enables pagination through a set of `Contact`.", + "name": "cifUsersBySectorCreatedByAndUpdatedBy", + "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { "name": "after", @@ -40988,7 +41946,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ContactCondition", + "name": "CifUserCondition", "ofType": null }, "defaultValue": null @@ -40998,7 +41956,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ContactFilter", + "name": "CifUserFilter", "ofType": null }, "defaultValue": null @@ -41021,7 +41979,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -41045,7 +42003,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Contact`.", + "description": "The method to use when ordering `CifUser`.", "type": { "kind": "LIST", "name": null, @@ -41054,7 +42012,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ContactsOrderBy", + "name": "CifUsersOrderBy", "ofType": null } } @@ -41067,23 +42025,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ContactsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": "created at timestamp", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Datetime", + "name": "CifUserCifUsersBySectorCreatedByAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -41091,32 +42033,8 @@ "deprecationReason": null }, { - "name": "createdBy", - "description": "created by user id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "emailAddress", - "description": "User's email address", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "emissionIntensityPaymentPercentsByArchivedBy", - "description": "Reads and enables pagination through a set of `EmissionIntensityPaymentPercent`.", + "name": "cifUsersBySectorUpdatedByAndArchivedBy", + "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { "name": "after", @@ -41143,7 +42061,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityPaymentPercentCondition", + "name": "CifUserCondition", "ofType": null }, "defaultValue": null @@ -41153,7 +42071,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityPaymentPercentFilter", + "name": "CifUserFilter", "ofType": null }, "defaultValue": null @@ -41176,7 +42094,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -41200,7 +42118,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `EmissionIntensityPaymentPercent`.", + "description": "The method to use when ordering `CifUser`.", "type": { "kind": "LIST", "name": null, @@ -41209,7 +42127,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "EmissionIntensityPaymentPercentsOrderBy", + "name": "CifUsersOrderBy", "ofType": null } } @@ -41222,7 +42140,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "EmissionIntensityPaymentPercentsConnection", + "name": "CifUserCifUsersBySectorUpdatedByAndArchivedByManyToManyConnection", "ofType": null } }, @@ -41230,8 +42148,8 @@ "deprecationReason": null }, { - "name": "emissionIntensityPaymentPercentsByCreatedBy", - "description": "Reads and enables pagination through a set of `EmissionIntensityPaymentPercent`.", + "name": "cifUsersBySectorUpdatedByAndCreatedBy", + "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { "name": "after", @@ -41258,7 +42176,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityPaymentPercentCondition", + "name": "CifUserCondition", "ofType": null }, "defaultValue": null @@ -41268,7 +42186,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityPaymentPercentFilter", + "name": "CifUserFilter", "ofType": null }, "defaultValue": null @@ -41291,7 +42209,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -41315,7 +42233,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `EmissionIntensityPaymentPercent`.", + "description": "The method to use when ordering `CifUser`.", "type": { "kind": "LIST", "name": null, @@ -41324,7 +42242,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "EmissionIntensityPaymentPercentsOrderBy", + "name": "CifUsersOrderBy", "ofType": null } } @@ -41337,7 +42255,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "EmissionIntensityPaymentPercentsConnection", + "name": "CifUserCifUsersBySectorUpdatedByAndCreatedByManyToManyConnection", "ofType": null } }, @@ -41345,8 +42263,8 @@ "deprecationReason": null }, { - "name": "emissionIntensityPaymentPercentsByUpdatedBy", - "description": "Reads and enables pagination through a set of `EmissionIntensityPaymentPercent`.", + "name": "cifUsersByUpdatedBy", + "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { "name": "after", @@ -41373,7 +42291,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityPaymentPercentCondition", + "name": "CifUserCondition", "ofType": null }, "defaultValue": null @@ -41383,7 +42301,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityPaymentPercentFilter", + "name": "CifUserFilter", "ofType": null }, "defaultValue": null @@ -41430,7 +42348,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `EmissionIntensityPaymentPercent`.", + "description": "The method to use when ordering `CifUser`.", "type": { "kind": "LIST", "name": null, @@ -41439,7 +42357,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "EmissionIntensityPaymentPercentsOrderBy", + "name": "CifUsersOrderBy", "ofType": null } } @@ -41452,7 +42370,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "EmissionIntensityPaymentPercentsConnection", + "name": "CifUsersConnection", "ofType": null } }, @@ -41460,8 +42378,8 @@ "deprecationReason": null }, { - "name": "emissionIntensityReportsByArchivedBy", - "description": "Reads and enables pagination through a set of `EmissionIntensityReport`.", + "name": "contactsByArchivedBy", + "description": "Reads and enables pagination through a set of `Contact`.", "args": [ { "name": "after", @@ -41488,7 +42406,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityReportCondition", + "name": "ContactCondition", "ofType": null }, "defaultValue": null @@ -41498,7 +42416,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityReportFilter", + "name": "ContactFilter", "ofType": null }, "defaultValue": null @@ -41545,7 +42463,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `EmissionIntensityReport`.", + "description": "The method to use when ordering `Contact`.", "type": { "kind": "LIST", "name": null, @@ -41554,7 +42472,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "EmissionIntensityReportsOrderBy", + "name": "ContactsOrderBy", "ofType": null } } @@ -41567,7 +42485,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "EmissionIntensityReportsConnection", + "name": "ContactsConnection", "ofType": null } }, @@ -41575,8 +42493,8 @@ "deprecationReason": null }, { - "name": "emissionIntensityReportsByCreatedBy", - "description": "Reads and enables pagination through a set of `EmissionIntensityReport`.", + "name": "contactsByCreatedBy", + "description": "Reads and enables pagination through a set of `Contact`.", "args": [ { "name": "after", @@ -41603,7 +42521,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityReportCondition", + "name": "ContactCondition", "ofType": null }, "defaultValue": null @@ -41613,7 +42531,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityReportFilter", + "name": "ContactFilter", "ofType": null }, "defaultValue": null @@ -41660,7 +42578,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `EmissionIntensityReport`.", + "description": "The method to use when ordering `Contact`.", "type": { "kind": "LIST", "name": null, @@ -41669,7 +42587,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "EmissionIntensityReportsOrderBy", + "name": "ContactsOrderBy", "ofType": null } } @@ -41682,7 +42600,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "EmissionIntensityReportsConnection", + "name": "ContactsConnection", "ofType": null } }, @@ -41690,8 +42608,8 @@ "deprecationReason": null }, { - "name": "emissionIntensityReportsByUpdatedBy", - "description": "Reads and enables pagination through a set of `EmissionIntensityReport`.", + "name": "contactsByProjectContactArchivedByAndContactId", + "description": "Reads and enables pagination through a set of `Contact`.", "args": [ { "name": "after", @@ -41718,7 +42636,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityReportCondition", + "name": "ContactCondition", "ofType": null }, "defaultValue": null @@ -41728,7 +42646,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityReportFilter", + "name": "ContactFilter", "ofType": null }, "defaultValue": null @@ -41751,7 +42669,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -41775,7 +42693,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `EmissionIntensityReport`.", + "description": "The method to use when ordering `Contact`.", "type": { "kind": "LIST", "name": null, @@ -41784,7 +42702,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "EmissionIntensityReportsOrderBy", + "name": "ContactsOrderBy", "ofType": null } } @@ -41797,7 +42715,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "EmissionIntensityReportsConnection", + "name": "CifUserContactsByProjectContactArchivedByAndContactIdManyToManyConnection", "ofType": null } }, @@ -41805,20 +42723,8 @@ "deprecationReason": null }, { - "name": "familyName", - "description": "User's last name", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "formChangesByCreatedBy", - "description": "Reads and enables pagination through a set of `FormChange`.", + "name": "contactsByProjectContactCreatedByAndContactId", + "description": "Reads and enables pagination through a set of `Contact`.", "args": [ { "name": "after", @@ -41845,7 +42751,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormChangeCondition", + "name": "ContactCondition", "ofType": null }, "defaultValue": null @@ -41855,7 +42761,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormChangeFilter", + "name": "ContactFilter", "ofType": null }, "defaultValue": null @@ -41871,109 +42777,14 @@ "defaultValue": null }, { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `FormChange`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "FormChangesOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "FormChangesConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "formChangesByFormChangeCreatedByAndPreviousFormChangeId", - "description": "Reads and enables pagination through a set of `FormChange`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "FormChangeCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "FormChangeFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": null + "defaultValue": "NO" }, { "name": "last", @@ -41997,7 +42808,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FormChange`.", + "description": "The method to use when ordering `Contact`.", "type": { "kind": "LIST", "name": null, @@ -42006,7 +42817,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FormChangesOrderBy", + "name": "ContactsOrderBy", "ofType": null } } @@ -42019,7 +42830,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserFormChangesByFormChangeCreatedByAndPreviousFormChangeIdManyToManyConnection", + "name": "CifUserContactsByProjectContactCreatedByAndContactIdManyToManyConnection", "ofType": null } }, @@ -42027,8 +42838,8 @@ "deprecationReason": null }, { - "name": "formChangesByFormChangeUpdatedByAndPreviousFormChangeId", - "description": "Reads and enables pagination through a set of `FormChange`.", + "name": "contactsByProjectContactUpdatedByAndContactId", + "description": "Reads and enables pagination through a set of `Contact`.", "args": [ { "name": "after", @@ -42055,7 +42866,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormChangeCondition", + "name": "ContactCondition", "ofType": null }, "defaultValue": null @@ -42065,7 +42876,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormChangeFilter", + "name": "ContactFilter", "ofType": null }, "defaultValue": null @@ -42080,6 +42891,16 @@ }, "defaultValue": null }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -42102,7 +42923,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FormChange`.", + "description": "The method to use when ordering `Contact`.", "type": { "kind": "LIST", "name": null, @@ -42111,7 +42932,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FormChangesOrderBy", + "name": "ContactsOrderBy", "ofType": null } } @@ -42124,7 +42945,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserFormChangesByFormChangeUpdatedByAndPreviousFormChangeIdManyToManyConnection", + "name": "CifUserContactsByProjectContactUpdatedByAndContactIdManyToManyConnection", "ofType": null } }, @@ -42132,8 +42953,8 @@ "deprecationReason": null }, { - "name": "formChangesByUpdatedBy", - "description": "Reads and enables pagination through a set of `FormChange`.", + "name": "contactsByUpdatedBy", + "description": "Reads and enables pagination through a set of `Contact`.", "args": [ { "name": "after", @@ -42160,7 +42981,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormChangeCondition", + "name": "ContactCondition", "ofType": null }, "defaultValue": null @@ -42170,7 +42991,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormChangeFilter", + "name": "ContactFilter", "ofType": null }, "defaultValue": null @@ -42185,6 +43006,16 @@ }, "defaultValue": null }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "INHERIT" + }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -42207,7 +43038,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FormChange`.", + "description": "The method to use when ordering `Contact`.", "type": { "kind": "LIST", "name": null, @@ -42216,7 +43047,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FormChangesOrderBy", + "name": "ContactsOrderBy", "ofType": null } } @@ -42229,7 +43060,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FormChangesConnection", + "name": "ContactsConnection", "ofType": null } }, @@ -42237,8 +43068,48 @@ "deprecationReason": null }, { - "name": "formsByArchivedBy", - "description": "Reads and enables pagination through a set of `Form`.", + "name": "createdAt", + "description": "created at timestamp", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdBy", + "description": "created by user id", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "emailAddress", + "description": "User's email address", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "emissionIntensityPaymentPercentsByArchivedBy", + "description": "Reads and enables pagination through a set of `EmissionIntensityPaymentPercent`.", "args": [ { "name": "after", @@ -42265,7 +43136,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormCondition", + "name": "EmissionIntensityPaymentPercentCondition", "ofType": null }, "defaultValue": null @@ -42275,7 +43146,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormFilter", + "name": "EmissionIntensityPaymentPercentFilter", "ofType": null }, "defaultValue": null @@ -42322,7 +43193,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Form`.", + "description": "The method to use when ordering `EmissionIntensityPaymentPercent`.", "type": { "kind": "LIST", "name": null, @@ -42331,7 +43202,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FormsOrderBy", + "name": "EmissionIntensityPaymentPercentsOrderBy", "ofType": null } } @@ -42344,7 +43215,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FormsConnection", + "name": "EmissionIntensityPaymentPercentsConnection", "ofType": null } }, @@ -42352,8 +43223,8 @@ "deprecationReason": null }, { - "name": "formsByCreatedBy", - "description": "Reads and enables pagination through a set of `Form`.", + "name": "emissionIntensityPaymentPercentsByCreatedBy", + "description": "Reads and enables pagination through a set of `EmissionIntensityPaymentPercent`.", "args": [ { "name": "after", @@ -42380,7 +43251,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormCondition", + "name": "EmissionIntensityPaymentPercentCondition", "ofType": null }, "defaultValue": null @@ -42390,7 +43261,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormFilter", + "name": "EmissionIntensityPaymentPercentFilter", "ofType": null }, "defaultValue": null @@ -42437,7 +43308,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Form`.", + "description": "The method to use when ordering `EmissionIntensityPaymentPercent`.", "type": { "kind": "LIST", "name": null, @@ -42446,7 +43317,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FormsOrderBy", + "name": "EmissionIntensityPaymentPercentsOrderBy", "ofType": null } } @@ -42459,7 +43330,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FormsConnection", + "name": "EmissionIntensityPaymentPercentsConnection", "ofType": null } }, @@ -42467,8 +43338,8 @@ "deprecationReason": null }, { - "name": "formsByFormChangeCreatedByAndJsonSchemaName", - "description": "Reads and enables pagination through a set of `Form`.", + "name": "emissionIntensityPaymentPercentsByUpdatedBy", + "description": "Reads and enables pagination through a set of `EmissionIntensityPaymentPercent`.", "args": [ { "name": "after", @@ -42495,7 +43366,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormCondition", + "name": "EmissionIntensityPaymentPercentCondition", "ofType": null }, "defaultValue": null @@ -42505,7 +43376,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormFilter", + "name": "EmissionIntensityPaymentPercentFilter", "ofType": null }, "defaultValue": null @@ -42528,7 +43399,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -42552,7 +43423,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Form`.", + "description": "The method to use when ordering `EmissionIntensityPaymentPercent`.", "type": { "kind": "LIST", "name": null, @@ -42561,7 +43432,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FormsOrderBy", + "name": "EmissionIntensityPaymentPercentsOrderBy", "ofType": null } } @@ -42574,7 +43445,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserFormsByFormChangeCreatedByAndJsonSchemaNameManyToManyConnection", + "name": "EmissionIntensityPaymentPercentsConnection", "ofType": null } }, @@ -42582,8 +43453,8 @@ "deprecationReason": null }, { - "name": "formsByFormChangeUpdatedByAndJsonSchemaName", - "description": "Reads and enables pagination through a set of `Form`.", + "name": "emissionIntensityReportsByArchivedBy", + "description": "Reads and enables pagination through a set of `EmissionIntensityReport`.", "args": [ { "name": "after", @@ -42610,7 +43481,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormCondition", + "name": "EmissionIntensityReportCondition", "ofType": null }, "defaultValue": null @@ -42620,7 +43491,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormFilter", + "name": "EmissionIntensityReportFilter", "ofType": null }, "defaultValue": null @@ -42643,7 +43514,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -42667,7 +43538,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Form`.", + "description": "The method to use when ordering `EmissionIntensityReport`.", "type": { "kind": "LIST", "name": null, @@ -42676,7 +43547,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FormsOrderBy", + "name": "EmissionIntensityReportsOrderBy", "ofType": null } } @@ -42689,7 +43560,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserFormsByFormChangeUpdatedByAndJsonSchemaNameManyToManyConnection", + "name": "EmissionIntensityReportsConnection", "ofType": null } }, @@ -42697,8 +43568,8 @@ "deprecationReason": null }, { - "name": "formsByUpdatedBy", - "description": "Reads and enables pagination through a set of `Form`.", + "name": "emissionIntensityReportsByCreatedBy", + "description": "Reads and enables pagination through a set of `EmissionIntensityReport`.", "args": [ { "name": "after", @@ -42725,7 +43596,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormCondition", + "name": "EmissionIntensityReportCondition", "ofType": null }, "defaultValue": null @@ -42735,7 +43606,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormFilter", + "name": "EmissionIntensityReportFilter", "ofType": null }, "defaultValue": null @@ -42782,7 +43653,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Form`.", + "description": "The method to use when ordering `EmissionIntensityReport`.", "type": { "kind": "LIST", "name": null, @@ -42791,7 +43662,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FormsOrderBy", + "name": "EmissionIntensityReportsOrderBy", "ofType": null } } @@ -42804,7 +43675,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FormsConnection", + "name": "EmissionIntensityReportsConnection", "ofType": null } }, @@ -42812,20 +43683,8 @@ "deprecationReason": null }, { - "name": "fullName", - "description": "Displays a cif_user as: given_name family_name", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fundingParametersByArchivedBy", - "description": "Reads and enables pagination through a set of `FundingParameter`.", + "name": "emissionIntensityReportsByUpdatedBy", + "description": "Reads and enables pagination through a set of `EmissionIntensityReport`.", "args": [ { "name": "after", @@ -42852,7 +43711,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingParameterCondition", + "name": "EmissionIntensityReportCondition", "ofType": null }, "defaultValue": null @@ -42862,7 +43721,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingParameterFilter", + "name": "EmissionIntensityReportFilter", "ofType": null }, "defaultValue": null @@ -42909,7 +43768,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingParameter`.", + "description": "The method to use when ordering `EmissionIntensityReport`.", "type": { "kind": "LIST", "name": null, @@ -42918,7 +43777,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingParametersOrderBy", + "name": "EmissionIntensityReportsOrderBy", "ofType": null } } @@ -42931,7 +43790,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingParametersConnection", + "name": "EmissionIntensityReportsConnection", "ofType": null } }, @@ -42939,8 +43798,20 @@ "deprecationReason": null }, { - "name": "fundingParametersByCreatedBy", - "description": "Reads and enables pagination through a set of `FundingParameter`.", + "name": "familyName", + "description": "User's last name", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "formChangesByCreatedBy", + "description": "Reads and enables pagination through a set of `FormChange`.", "args": [ { "name": "after", @@ -42967,7 +43838,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingParameterCondition", + "name": "FormChangeCondition", "ofType": null }, "defaultValue": null @@ -42977,7 +43848,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingParameterFilter", + "name": "FormChangeFilter", "ofType": null }, "defaultValue": null @@ -42992,16 +43863,6 @@ }, "defaultValue": null }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "INHERIT" - }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -43024,7 +43885,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingParameter`.", + "description": "The method to use when ordering `FormChange`.", "type": { "kind": "LIST", "name": null, @@ -43033,7 +43894,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingParametersOrderBy", + "name": "FormChangesOrderBy", "ofType": null } } @@ -43046,7 +43907,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingParametersConnection", + "name": "FormChangesConnection", "ofType": null } }, @@ -43054,8 +43915,8 @@ "deprecationReason": null }, { - "name": "fundingParametersByUpdatedBy", - "description": "Reads and enables pagination through a set of `FundingParameter`.", + "name": "formChangesByFormChangeCreatedByAndPreviousFormChangeId", + "description": "Reads and enables pagination through a set of `FormChange`.", "args": [ { "name": "after", @@ -43082,7 +43943,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingParameterCondition", + "name": "FormChangeCondition", "ofType": null }, "defaultValue": null @@ -43092,7 +43953,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingParameterFilter", + "name": "FormChangeFilter", "ofType": null }, "defaultValue": null @@ -43107,16 +43968,6 @@ }, "defaultValue": null }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "INHERIT" - }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -43139,7 +43990,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingParameter`.", + "description": "The method to use when ordering `FormChange`.", "type": { "kind": "LIST", "name": null, @@ -43148,7 +43999,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingParametersOrderBy", + "name": "FormChangesOrderBy", "ofType": null } } @@ -43161,7 +44012,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingParametersConnection", + "name": "CifUserFormChangesByFormChangeCreatedByAndPreviousFormChangeIdManyToManyConnection", "ofType": null } }, @@ -43169,8 +44020,8 @@ "deprecationReason": null }, { - "name": "fundingStreamProjectStatusesByArchivedBy", - "description": "Reads and enables pagination through a set of `FundingStreamProjectStatus`.", + "name": "formChangesByFormChangeUpdatedByAndPreviousFormChangeId", + "description": "Reads and enables pagination through a set of `FormChange`.", "args": [ { "name": "after", @@ -43197,7 +44048,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamProjectStatusCondition", + "name": "FormChangeCondition", "ofType": null }, "defaultValue": null @@ -43207,7 +44058,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamProjectStatusFilter", + "name": "FormChangeFilter", "ofType": null }, "defaultValue": null @@ -43222,16 +44073,6 @@ }, "defaultValue": null }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "INHERIT" - }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -43254,7 +44095,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStreamProjectStatus`.", + "description": "The method to use when ordering `FormChange`.", "type": { "kind": "LIST", "name": null, @@ -43263,7 +44104,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamProjectStatusesOrderBy", + "name": "FormChangesOrderBy", "ofType": null } } @@ -43276,7 +44117,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingStreamProjectStatusesConnection", + "name": "CifUserFormChangesByFormChangeUpdatedByAndPreviousFormChangeIdManyToManyConnection", "ofType": null } }, @@ -43284,8 +44125,8 @@ "deprecationReason": null }, { - "name": "fundingStreamProjectStatusesByCreatedBy", - "description": "Reads and enables pagination through a set of `FundingStreamProjectStatus`.", + "name": "formChangesByUpdatedBy", + "description": "Reads and enables pagination through a set of `FormChange`.", "args": [ { "name": "after", @@ -43312,7 +44153,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamProjectStatusCondition", + "name": "FormChangeCondition", "ofType": null }, "defaultValue": null @@ -43322,7 +44163,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamProjectStatusFilter", + "name": "FormChangeFilter", "ofType": null }, "defaultValue": null @@ -43337,16 +44178,6 @@ }, "defaultValue": null }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "INHERIT" - }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -43369,7 +44200,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStreamProjectStatus`.", + "description": "The method to use when ordering `FormChange`.", "type": { "kind": "LIST", "name": null, @@ -43378,7 +44209,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamProjectStatusesOrderBy", + "name": "FormChangesOrderBy", "ofType": null } } @@ -43391,7 +44222,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingStreamProjectStatusesConnection", + "name": "FormChangesConnection", "ofType": null } }, @@ -43399,8 +44230,8 @@ "deprecationReason": null }, { - "name": "fundingStreamProjectStatusesByUpdatedBy", - "description": "Reads and enables pagination through a set of `FundingStreamProjectStatus`.", + "name": "formsByArchivedBy", + "description": "Reads and enables pagination through a set of `Form`.", "args": [ { "name": "after", @@ -43427,7 +44258,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamProjectStatusCondition", + "name": "FormCondition", "ofType": null }, "defaultValue": null @@ -43437,7 +44268,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamProjectStatusFilter", + "name": "FormFilter", "ofType": null }, "defaultValue": null @@ -43484,7 +44315,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStreamProjectStatus`.", + "description": "The method to use when ordering `Form`.", "type": { "kind": "LIST", "name": null, @@ -43493,7 +44324,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamProjectStatusesOrderBy", + "name": "FormsOrderBy", "ofType": null } } @@ -43506,7 +44337,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingStreamProjectStatusesConnection", + "name": "FormsConnection", "ofType": null } }, @@ -43514,8 +44345,8 @@ "deprecationReason": null }, { - "name": "fundingStreamRfpsByArchivedBy", - "description": "Reads and enables pagination through a set of `FundingStreamRfp`.", + "name": "formsByCreatedBy", + "description": "Reads and enables pagination through a set of `Form`.", "args": [ { "name": "after", @@ -43542,7 +44373,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamRfpCondition", + "name": "FormCondition", "ofType": null }, "defaultValue": null @@ -43552,7 +44383,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamRfpFilter", + "name": "FormFilter", "ofType": null }, "defaultValue": null @@ -43599,7 +44430,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStreamRfp`.", + "description": "The method to use when ordering `Form`.", "type": { "kind": "LIST", "name": null, @@ -43608,7 +44439,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamRfpsOrderBy", + "name": "FormsOrderBy", "ofType": null } } @@ -43621,7 +44452,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingStreamRfpsConnection", + "name": "FormsConnection", "ofType": null } }, @@ -43629,8 +44460,8 @@ "deprecationReason": null }, { - "name": "fundingStreamRfpsByCreatedBy", - "description": "Reads and enables pagination through a set of `FundingStreamRfp`.", + "name": "formsByFormChangeCreatedByAndJsonSchemaName", + "description": "Reads and enables pagination through a set of `Form`.", "args": [ { "name": "after", @@ -43657,7 +44488,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamRfpCondition", + "name": "FormCondition", "ofType": null }, "defaultValue": null @@ -43667,7 +44498,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamRfpFilter", + "name": "FormFilter", "ofType": null }, "defaultValue": null @@ -43690,7 +44521,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -43714,7 +44545,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStreamRfp`.", + "description": "The method to use when ordering `Form`.", "type": { "kind": "LIST", "name": null, @@ -43723,7 +44554,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamRfpsOrderBy", + "name": "FormsOrderBy", "ofType": null } } @@ -43736,7 +44567,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingStreamRfpsConnection", + "name": "CifUserFormsByFormChangeCreatedByAndJsonSchemaNameManyToManyConnection", "ofType": null } }, @@ -43744,8 +44575,8 @@ "deprecationReason": null }, { - "name": "fundingStreamRfpsByProjectArchivedByAndFundingStreamRfpId", - "description": "Reads and enables pagination through a set of `FundingStreamRfp`.", + "name": "formsByFormChangeUpdatedByAndJsonSchemaName", + "description": "Reads and enables pagination through a set of `Form`.", "args": [ { "name": "after", @@ -43772,7 +44603,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamRfpCondition", + "name": "FormCondition", "ofType": null }, "defaultValue": null @@ -43782,7 +44613,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamRfpFilter", + "name": "FormFilter", "ofType": null }, "defaultValue": null @@ -43829,7 +44660,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStreamRfp`.", + "description": "The method to use when ordering `Form`.", "type": { "kind": "LIST", "name": null, @@ -43838,7 +44669,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamRfpsOrderBy", + "name": "FormsOrderBy", "ofType": null } } @@ -43851,7 +44682,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserFundingStreamRfpsByProjectArchivedByAndFundingStreamRfpIdManyToManyConnection", + "name": "CifUserFormsByFormChangeUpdatedByAndJsonSchemaNameManyToManyConnection", "ofType": null } }, @@ -43859,8 +44690,8 @@ "deprecationReason": null }, { - "name": "fundingStreamRfpsByProjectCreatedByAndFundingStreamRfpId", - "description": "Reads and enables pagination through a set of `FundingStreamRfp`.", + "name": "formsByUpdatedBy", + "description": "Reads and enables pagination through a set of `Form`.", "args": [ { "name": "after", @@ -43887,7 +44718,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamRfpCondition", + "name": "FormCondition", "ofType": null }, "defaultValue": null @@ -43897,7 +44728,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamRfpFilter", + "name": "FormFilter", "ofType": null }, "defaultValue": null @@ -43920,7 +44751,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -43944,7 +44775,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStreamRfp`.", + "description": "The method to use when ordering `Form`.", "type": { "kind": "LIST", "name": null, @@ -43953,7 +44784,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamRfpsOrderBy", + "name": "FormsOrderBy", "ofType": null } } @@ -43966,7 +44797,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserFundingStreamRfpsByProjectCreatedByAndFundingStreamRfpIdManyToManyConnection", + "name": "FormsConnection", "ofType": null } }, @@ -43974,123 +44805,20 @@ "deprecationReason": null }, { - "name": "fundingStreamRfpsByProjectUpdatedByAndFundingStreamRfpId", - "description": "Reads and enables pagination through a set of `FundingStreamRfp`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "FundingStreamRfpCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "FundingStreamRfpFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `FundingStreamRfp`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "FundingStreamRfpsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], + "name": "fullName", + "description": "Displays a cif_user as: given_name family_name", + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CifUserFundingStreamRfpsByProjectUpdatedByAndFundingStreamRfpIdManyToManyConnection", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "fundingStreamRfpsByUpdatedBy", - "description": "Reads and enables pagination through a set of `FundingStreamRfp`.", + "name": "fundingParametersByArchivedBy", + "description": "Reads and enables pagination through a set of `FundingParameter`.", "args": [ { "name": "after", @@ -44117,7 +44845,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamRfpCondition", + "name": "FundingParameterCondition", "ofType": null }, "defaultValue": null @@ -44127,7 +44855,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamRfpFilter", + "name": "FundingParameterFilter", "ofType": null }, "defaultValue": null @@ -44174,7 +44902,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStreamRfp`.", + "description": "The method to use when ordering `FundingParameter`.", "type": { "kind": "LIST", "name": null, @@ -44183,7 +44911,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamRfpsOrderBy", + "name": "FundingParametersOrderBy", "ofType": null } } @@ -44196,7 +44924,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingStreamRfpsConnection", + "name": "FundingParametersConnection", "ofType": null } }, @@ -44204,8 +44932,8 @@ "deprecationReason": null }, { - "name": "fundingStreamsByArchivedBy", - "description": "Reads and enables pagination through a set of `FundingStream`.", + "name": "fundingParametersByCreatedBy", + "description": "Reads and enables pagination through a set of `FundingParameter`.", "args": [ { "name": "after", @@ -44232,7 +44960,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamCondition", + "name": "FundingParameterCondition", "ofType": null }, "defaultValue": null @@ -44242,7 +44970,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamFilter", + "name": "FundingParameterFilter", "ofType": null }, "defaultValue": null @@ -44289,7 +45017,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStream`.", + "description": "The method to use when ordering `FundingParameter`.", "type": { "kind": "LIST", "name": null, @@ -44298,7 +45026,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamsOrderBy", + "name": "FundingParametersOrderBy", "ofType": null } } @@ -44311,7 +45039,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingStreamsConnection", + "name": "FundingParametersConnection", "ofType": null } }, @@ -44319,8 +45047,8 @@ "deprecationReason": null }, { - "name": "fundingStreamsByCreatedBy", - "description": "Reads and enables pagination through a set of `FundingStream`.", + "name": "fundingParametersByUpdatedBy", + "description": "Reads and enables pagination through a set of `FundingParameter`.", "args": [ { "name": "after", @@ -44347,7 +45075,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamCondition", + "name": "FundingParameterCondition", "ofType": null }, "defaultValue": null @@ -44357,7 +45085,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamFilter", + "name": "FundingParameterFilter", "ofType": null }, "defaultValue": null @@ -44404,7 +45132,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStream`.", + "description": "The method to use when ordering `FundingParameter`.", "type": { "kind": "LIST", "name": null, @@ -44413,7 +45141,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamsOrderBy", + "name": "FundingParametersOrderBy", "ofType": null } } @@ -44426,7 +45154,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingStreamsConnection", + "name": "FundingParametersConnection", "ofType": null } }, @@ -44434,8 +45162,8 @@ "deprecationReason": null }, { - "name": "fundingStreamsByFundingStreamProjectStatusArchivedByAndFundingStreamId", - "description": "Reads and enables pagination through a set of `FundingStream`.", + "name": "fundingStreamProjectStatusesByArchivedBy", + "description": "Reads and enables pagination through a set of `FundingStreamProjectStatus`.", "args": [ { "name": "after", @@ -44462,7 +45190,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamCondition", + "name": "FundingStreamProjectStatusCondition", "ofType": null }, "defaultValue": null @@ -44472,7 +45200,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamFilter", + "name": "FundingStreamProjectStatusFilter", "ofType": null }, "defaultValue": null @@ -44495,7 +45223,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -44519,7 +45247,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStream`.", + "description": "The method to use when ordering `FundingStreamProjectStatus`.", "type": { "kind": "LIST", "name": null, @@ -44528,7 +45256,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamsOrderBy", + "name": "FundingStreamProjectStatusesOrderBy", "ofType": null } } @@ -44541,7 +45269,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserFundingStreamsByFundingStreamProjectStatusArchivedByAndFundingStreamIdManyToManyConnection", + "name": "FundingStreamProjectStatusesConnection", "ofType": null } }, @@ -44549,8 +45277,8 @@ "deprecationReason": null }, { - "name": "fundingStreamsByFundingStreamProjectStatusCreatedByAndFundingStreamId", - "description": "Reads and enables pagination through a set of `FundingStream`.", + "name": "fundingStreamProjectStatusesByCreatedBy", + "description": "Reads and enables pagination through a set of `FundingStreamProjectStatus`.", "args": [ { "name": "after", @@ -44577,7 +45305,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamCondition", + "name": "FundingStreamProjectStatusCondition", "ofType": null }, "defaultValue": null @@ -44587,7 +45315,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamFilter", + "name": "FundingStreamProjectStatusFilter", "ofType": null }, "defaultValue": null @@ -44610,7 +45338,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -44634,7 +45362,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStream`.", + "description": "The method to use when ordering `FundingStreamProjectStatus`.", "type": { "kind": "LIST", "name": null, @@ -44643,7 +45371,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamsOrderBy", + "name": "FundingStreamProjectStatusesOrderBy", "ofType": null } } @@ -44656,7 +45384,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserFundingStreamsByFundingStreamProjectStatusCreatedByAndFundingStreamIdManyToManyConnection", + "name": "FundingStreamProjectStatusesConnection", "ofType": null } }, @@ -44664,8 +45392,8 @@ "deprecationReason": null }, { - "name": "fundingStreamsByFundingStreamProjectStatusUpdatedByAndFundingStreamId", - "description": "Reads and enables pagination through a set of `FundingStream`.", + "name": "fundingStreamProjectStatusesByUpdatedBy", + "description": "Reads and enables pagination through a set of `FundingStreamProjectStatus`.", "args": [ { "name": "after", @@ -44692,7 +45420,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamCondition", + "name": "FundingStreamProjectStatusCondition", "ofType": null }, "defaultValue": null @@ -44702,7 +45430,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamFilter", + "name": "FundingStreamProjectStatusFilter", "ofType": null }, "defaultValue": null @@ -44725,7 +45453,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -44749,7 +45477,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStream`.", + "description": "The method to use when ordering `FundingStreamProjectStatus`.", "type": { "kind": "LIST", "name": null, @@ -44758,7 +45486,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamsOrderBy", + "name": "FundingStreamProjectStatusesOrderBy", "ofType": null } } @@ -44771,7 +45499,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserFundingStreamsByFundingStreamProjectStatusUpdatedByAndFundingStreamIdManyToManyConnection", + "name": "FundingStreamProjectStatusesConnection", "ofType": null } }, @@ -44779,8 +45507,8 @@ "deprecationReason": null }, { - "name": "fundingStreamsByFundingStreamRfpArchivedByAndFundingStreamId", - "description": "Reads and enables pagination through a set of `FundingStream`.", + "name": "fundingStreamRfpsByArchivedBy", + "description": "Reads and enables pagination through a set of `FundingStreamRfp`.", "args": [ { "name": "after", @@ -44807,7 +45535,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamCondition", + "name": "FundingStreamRfpCondition", "ofType": null }, "defaultValue": null @@ -44817,7 +45545,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamFilter", + "name": "FundingStreamRfpFilter", "ofType": null }, "defaultValue": null @@ -44840,7 +45568,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -44864,7 +45592,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStream`.", + "description": "The method to use when ordering `FundingStreamRfp`.", "type": { "kind": "LIST", "name": null, @@ -44873,7 +45601,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamsOrderBy", + "name": "FundingStreamRfpsOrderBy", "ofType": null } } @@ -44886,7 +45614,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserFundingStreamsByFundingStreamRfpArchivedByAndFundingStreamIdManyToManyConnection", + "name": "FundingStreamRfpsConnection", "ofType": null } }, @@ -44894,8 +45622,8 @@ "deprecationReason": null }, { - "name": "fundingStreamsByFundingStreamRfpCreatedByAndFundingStreamId", - "description": "Reads and enables pagination through a set of `FundingStream`.", + "name": "fundingStreamRfpsByCreatedBy", + "description": "Reads and enables pagination through a set of `FundingStreamRfp`.", "args": [ { "name": "after", @@ -44922,7 +45650,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamCondition", + "name": "FundingStreamRfpCondition", "ofType": null }, "defaultValue": null @@ -44932,7 +45660,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamFilter", + "name": "FundingStreamRfpFilter", "ofType": null }, "defaultValue": null @@ -44955,7 +45683,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -44979,7 +45707,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStream`.", + "description": "The method to use when ordering `FundingStreamRfp`.", "type": { "kind": "LIST", "name": null, @@ -44988,7 +45716,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamsOrderBy", + "name": "FundingStreamRfpsOrderBy", "ofType": null } } @@ -45001,7 +45729,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserFundingStreamsByFundingStreamRfpCreatedByAndFundingStreamIdManyToManyConnection", + "name": "FundingStreamRfpsConnection", "ofType": null } }, @@ -45009,8 +45737,8 @@ "deprecationReason": null }, { - "name": "fundingStreamsByFundingStreamRfpUpdatedByAndFundingStreamId", - "description": "Reads and enables pagination through a set of `FundingStream`.", + "name": "fundingStreamRfpsByProjectArchivedByAndFundingStreamRfpId", + "description": "Reads and enables pagination through a set of `FundingStreamRfp`.", "args": [ { "name": "after", @@ -45037,7 +45765,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamCondition", + "name": "FundingStreamRfpCondition", "ofType": null }, "defaultValue": null @@ -45047,7 +45775,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamFilter", + "name": "FundingStreamRfpFilter", "ofType": null }, "defaultValue": null @@ -45094,7 +45822,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStream`.", + "description": "The method to use when ordering `FundingStreamRfp`.", "type": { "kind": "LIST", "name": null, @@ -45103,7 +45831,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamsOrderBy", + "name": "FundingStreamRfpsOrderBy", "ofType": null } } @@ -45116,7 +45844,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserFundingStreamsByFundingStreamRfpUpdatedByAndFundingStreamIdManyToManyConnection", + "name": "CifUserFundingStreamRfpsByProjectArchivedByAndFundingStreamRfpIdManyToManyConnection", "ofType": null } }, @@ -45124,8 +45852,8 @@ "deprecationReason": null }, { - "name": "fundingStreamsByUpdatedBy", - "description": "Reads and enables pagination through a set of `FundingStream`.", + "name": "fundingStreamRfpsByProjectCreatedByAndFundingStreamRfpId", + "description": "Reads and enables pagination through a set of `FundingStreamRfp`.", "args": [ { "name": "after", @@ -45152,7 +45880,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamCondition", + "name": "FundingStreamRfpCondition", "ofType": null }, "defaultValue": null @@ -45162,7 +45890,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamFilter", + "name": "FundingStreamRfpFilter", "ofType": null }, "defaultValue": null @@ -45185,7 +45913,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -45209,7 +45937,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStream`.", + "description": "The method to use when ordering `FundingStreamRfp`.", "type": { "kind": "LIST", "name": null, @@ -45218,7 +45946,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamsOrderBy", + "name": "FundingStreamRfpsOrderBy", "ofType": null } } @@ -45231,7 +45959,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingStreamsConnection", + "name": "CifUserFundingStreamRfpsByProjectCreatedByAndFundingStreamRfpIdManyToManyConnection", "ofType": null } }, @@ -45239,27 +45967,114 @@ "deprecationReason": null }, { - "name": "givenName", - "description": "User's first name", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "A globally unique identifier. Can be used in various places throughout the system to identify this single value.", - "args": [], + "name": "fundingStreamRfpsByProjectUpdatedByAndFundingStreamRfpId", + "description": "Reads and enables pagination through a set of `FundingStreamRfp`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "FundingStreamRfpCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "FundingStreamRfpFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `FundingStreamRfp`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FundingStreamRfpsOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", + "kind": "OBJECT", + "name": "CifUserFundingStreamRfpsByProjectUpdatedByAndFundingStreamRfpIdManyToManyConnection", "ofType": null } }, @@ -45267,8 +46082,8 @@ "deprecationReason": null }, { - "name": "milestoneReportsByArchivedBy", - "description": "Reads and enables pagination through a set of `MilestoneReport`.", + "name": "fundingStreamRfpsByUpdatedBy", + "description": "Reads and enables pagination through a set of `FundingStreamRfp`.", "args": [ { "name": "after", @@ -45295,7 +46110,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "MilestoneReportCondition", + "name": "FundingStreamRfpCondition", "ofType": null }, "defaultValue": null @@ -45305,7 +46120,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "MilestoneReportFilter", + "name": "FundingStreamRfpFilter", "ofType": null }, "defaultValue": null @@ -45352,7 +46167,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `MilestoneReport`.", + "description": "The method to use when ordering `FundingStreamRfp`.", "type": { "kind": "LIST", "name": null, @@ -45361,7 +46176,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "MilestoneReportsOrderBy", + "name": "FundingStreamRfpsOrderBy", "ofType": null } } @@ -45374,7 +46189,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "MilestoneReportsConnection", + "name": "FundingStreamRfpsConnection", "ofType": null } }, @@ -45382,8 +46197,8 @@ "deprecationReason": null }, { - "name": "milestoneReportsByCreatedBy", - "description": "Reads and enables pagination through a set of `MilestoneReport`.", + "name": "fundingStreamsByArchivedBy", + "description": "Reads and enables pagination through a set of `FundingStream`.", "args": [ { "name": "after", @@ -45410,7 +46225,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "MilestoneReportCondition", + "name": "FundingStreamCondition", "ofType": null }, "defaultValue": null @@ -45420,7 +46235,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "MilestoneReportFilter", + "name": "FundingStreamFilter", "ofType": null }, "defaultValue": null @@ -45467,7 +46282,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `MilestoneReport`.", + "description": "The method to use when ordering `FundingStream`.", "type": { "kind": "LIST", "name": null, @@ -45476,7 +46291,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "MilestoneReportsOrderBy", + "name": "FundingStreamsOrderBy", "ofType": null } } @@ -45489,7 +46304,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "MilestoneReportsConnection", + "name": "FundingStreamsConnection", "ofType": null } }, @@ -45497,8 +46312,8 @@ "deprecationReason": null }, { - "name": "milestoneReportsByUpdatedBy", - "description": "Reads and enables pagination through a set of `MilestoneReport`.", + "name": "fundingStreamsByCreatedBy", + "description": "Reads and enables pagination through a set of `FundingStream`.", "args": [ { "name": "after", @@ -45525,7 +46340,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "MilestoneReportCondition", + "name": "FundingStreamCondition", "ofType": null }, "defaultValue": null @@ -45535,7 +46350,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "MilestoneReportFilter", + "name": "FundingStreamFilter", "ofType": null }, "defaultValue": null @@ -45582,7 +46397,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `MilestoneReport`.", + "description": "The method to use when ordering `FundingStream`.", "type": { "kind": "LIST", "name": null, @@ -45591,7 +46406,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "MilestoneReportsOrderBy", + "name": "FundingStreamsOrderBy", "ofType": null } } @@ -45604,7 +46419,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "MilestoneReportsConnection", + "name": "FundingStreamsConnection", "ofType": null } }, @@ -45612,8 +46427,8 @@ "deprecationReason": null }, { - "name": "operatorsByArchivedBy", - "description": "Reads and enables pagination through a set of `Operator`.", + "name": "fundingStreamsByFundingStreamProjectStatusArchivedByAndFundingStreamId", + "description": "Reads and enables pagination through a set of `FundingStream`.", "args": [ { "name": "after", @@ -45640,7 +46455,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "OperatorCondition", + "name": "FundingStreamCondition", "ofType": null }, "defaultValue": null @@ -45650,7 +46465,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "OperatorFilter", + "name": "FundingStreamFilter", "ofType": null }, "defaultValue": null @@ -45673,7 +46488,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -45697,7 +46512,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Operator`.", + "description": "The method to use when ordering `FundingStream`.", "type": { "kind": "LIST", "name": null, @@ -45706,7 +46521,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "OperatorsOrderBy", + "name": "FundingStreamsOrderBy", "ofType": null } } @@ -45719,7 +46534,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "OperatorsConnection", + "name": "CifUserFundingStreamsByFundingStreamProjectStatusArchivedByAndFundingStreamIdManyToManyConnection", "ofType": null } }, @@ -45727,8 +46542,8 @@ "deprecationReason": null }, { - "name": "operatorsByCreatedBy", - "description": "Reads and enables pagination through a set of `Operator`.", + "name": "fundingStreamsByFundingStreamProjectStatusCreatedByAndFundingStreamId", + "description": "Reads and enables pagination through a set of `FundingStream`.", "args": [ { "name": "after", @@ -45755,7 +46570,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "OperatorCondition", + "name": "FundingStreamCondition", "ofType": null }, "defaultValue": null @@ -45765,7 +46580,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "OperatorFilter", + "name": "FundingStreamFilter", "ofType": null }, "defaultValue": null @@ -45788,7 +46603,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -45812,7 +46627,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Operator`.", + "description": "The method to use when ordering `FundingStream`.", "type": { "kind": "LIST", "name": null, @@ -45821,7 +46636,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "OperatorsOrderBy", + "name": "FundingStreamsOrderBy", "ofType": null } } @@ -45834,7 +46649,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "OperatorsConnection", + "name": "CifUserFundingStreamsByFundingStreamProjectStatusCreatedByAndFundingStreamIdManyToManyConnection", "ofType": null } }, @@ -45842,8 +46657,8 @@ "deprecationReason": null }, { - "name": "operatorsByProjectArchivedByAndOperatorId", - "description": "Reads and enables pagination through a set of `Operator`.", + "name": "fundingStreamsByFundingStreamProjectStatusUpdatedByAndFundingStreamId", + "description": "Reads and enables pagination through a set of `FundingStream`.", "args": [ { "name": "after", @@ -45870,7 +46685,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "OperatorCondition", + "name": "FundingStreamCondition", "ofType": null }, "defaultValue": null @@ -45880,7 +46695,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "OperatorFilter", + "name": "FundingStreamFilter", "ofType": null }, "defaultValue": null @@ -45927,7 +46742,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Operator`.", + "description": "The method to use when ordering `FundingStream`.", "type": { "kind": "LIST", "name": null, @@ -45936,7 +46751,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "OperatorsOrderBy", + "name": "FundingStreamsOrderBy", "ofType": null } } @@ -45949,7 +46764,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserOperatorsByProjectArchivedByAndOperatorIdManyToManyConnection", + "name": "CifUserFundingStreamsByFundingStreamProjectStatusUpdatedByAndFundingStreamIdManyToManyConnection", "ofType": null } }, @@ -45957,8 +46772,8 @@ "deprecationReason": null }, { - "name": "operatorsByProjectCreatedByAndOperatorId", - "description": "Reads and enables pagination through a set of `Operator`.", + "name": "fundingStreamsByFundingStreamRfpArchivedByAndFundingStreamId", + "description": "Reads and enables pagination through a set of `FundingStream`.", "args": [ { "name": "after", @@ -45985,7 +46800,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "OperatorCondition", + "name": "FundingStreamCondition", "ofType": null }, "defaultValue": null @@ -45995,7 +46810,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "OperatorFilter", + "name": "FundingStreamFilter", "ofType": null }, "defaultValue": null @@ -46042,7 +46857,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Operator`.", + "description": "The method to use when ordering `FundingStream`.", "type": { "kind": "LIST", "name": null, @@ -46051,7 +46866,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "OperatorsOrderBy", + "name": "FundingStreamsOrderBy", "ofType": null } } @@ -46064,7 +46879,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserOperatorsByProjectCreatedByAndOperatorIdManyToManyConnection", + "name": "CifUserFundingStreamsByFundingStreamRfpArchivedByAndFundingStreamIdManyToManyConnection", "ofType": null } }, @@ -46072,8 +46887,8 @@ "deprecationReason": null }, { - "name": "operatorsByProjectUpdatedByAndOperatorId", - "description": "Reads and enables pagination through a set of `Operator`.", + "name": "fundingStreamsByFundingStreamRfpCreatedByAndFundingStreamId", + "description": "Reads and enables pagination through a set of `FundingStream`.", "args": [ { "name": "after", @@ -46100,7 +46915,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "OperatorCondition", + "name": "FundingStreamCondition", "ofType": null }, "defaultValue": null @@ -46110,7 +46925,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "OperatorFilter", + "name": "FundingStreamFilter", "ofType": null }, "defaultValue": null @@ -46157,7 +46972,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Operator`.", + "description": "The method to use when ordering `FundingStream`.", "type": { "kind": "LIST", "name": null, @@ -46166,7 +46981,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "OperatorsOrderBy", + "name": "FundingStreamsOrderBy", "ofType": null } } @@ -46179,7 +46994,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserOperatorsByProjectUpdatedByAndOperatorIdManyToManyConnection", + "name": "CifUserFundingStreamsByFundingStreamRfpCreatedByAndFundingStreamIdManyToManyConnection", "ofType": null } }, @@ -46187,8 +47002,8 @@ "deprecationReason": null }, { - "name": "operatorsByUpdatedBy", - "description": "Reads and enables pagination through a set of `Operator`.", + "name": "fundingStreamsByFundingStreamRfpUpdatedByAndFundingStreamId", + "description": "Reads and enables pagination through a set of `FundingStream`.", "args": [ { "name": "after", @@ -46215,7 +47030,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "OperatorCondition", + "name": "FundingStreamCondition", "ofType": null }, "defaultValue": null @@ -46225,7 +47040,122 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "OperatorFilter", + "name": "FundingStreamFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `FundingStream`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FundingStreamsOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CifUserFundingStreamsByFundingStreamRfpUpdatedByAndFundingStreamIdManyToManyConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fundingStreamsByUpdatedBy", + "description": "Reads and enables pagination through a set of `FundingStream`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "FundingStreamCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "FundingStreamFilter", "ofType": null }, "defaultValue": null @@ -46272,7 +47202,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Operator`.", + "description": "The method to use when ordering `FundingStream`.", "type": { "kind": "LIST", "name": null, @@ -46281,7 +47211,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "OperatorsOrderBy", + "name": "FundingStreamsOrderBy", "ofType": null } } @@ -46294,7 +47224,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "OperatorsConnection", + "name": "FundingStreamsConnection", "ofType": null } }, @@ -46302,8 +47232,36 @@ "deprecationReason": null }, { - "name": "paymentsByArchivedBy", - "description": "Reads and enables pagination through a set of `Payment`.", + "name": "givenName", + "description": "User's first name", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "A globally unique identifier. Can be used in various places throughout the system to identify this single value.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "milestoneReportsByArchivedBy", + "description": "Reads and enables pagination through a set of `MilestoneReport`.", "args": [ { "name": "after", @@ -46330,7 +47288,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "PaymentCondition", + "name": "MilestoneReportCondition", "ofType": null }, "defaultValue": null @@ -46340,7 +47298,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "PaymentFilter", + "name": "MilestoneReportFilter", "ofType": null }, "defaultValue": null @@ -46387,7 +47345,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Payment`.", + "description": "The method to use when ordering `MilestoneReport`.", "type": { "kind": "LIST", "name": null, @@ -46396,7 +47354,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "PaymentsOrderBy", + "name": "MilestoneReportsOrderBy", "ofType": null } } @@ -46409,7 +47367,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PaymentsConnection", + "name": "MilestoneReportsConnection", "ofType": null } }, @@ -46417,8 +47375,8 @@ "deprecationReason": null }, { - "name": "paymentsByCreatedBy", - "description": "Reads and enables pagination through a set of `Payment`.", + "name": "milestoneReportsByCreatedBy", + "description": "Reads and enables pagination through a set of `MilestoneReport`.", "args": [ { "name": "after", @@ -46445,7 +47403,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "PaymentCondition", + "name": "MilestoneReportCondition", "ofType": null }, "defaultValue": null @@ -46455,7 +47413,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "PaymentFilter", + "name": "MilestoneReportFilter", "ofType": null }, "defaultValue": null @@ -46502,7 +47460,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Payment`.", + "description": "The method to use when ordering `MilestoneReport`.", "type": { "kind": "LIST", "name": null, @@ -46511,7 +47469,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "PaymentsOrderBy", + "name": "MilestoneReportsOrderBy", "ofType": null } } @@ -46524,7 +47482,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PaymentsConnection", + "name": "MilestoneReportsConnection", "ofType": null } }, @@ -46532,8 +47490,8 @@ "deprecationReason": null }, { - "name": "paymentsByUpdatedBy", - "description": "Reads and enables pagination through a set of `Payment`.", + "name": "milestoneReportsByUpdatedBy", + "description": "Reads and enables pagination through a set of `MilestoneReport`.", "args": [ { "name": "after", @@ -46560,7 +47518,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "PaymentCondition", + "name": "MilestoneReportCondition", "ofType": null }, "defaultValue": null @@ -46570,7 +47528,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "PaymentFilter", + "name": "MilestoneReportFilter", "ofType": null }, "defaultValue": null @@ -46617,7 +47575,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Payment`.", + "description": "The method to use when ordering `MilestoneReport`.", "type": { "kind": "LIST", "name": null, @@ -46626,7 +47584,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "PaymentsOrderBy", + "name": "MilestoneReportsOrderBy", "ofType": null } } @@ -46639,7 +47597,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PaymentsConnection", + "name": "MilestoneReportsConnection", "ofType": null } }, @@ -46647,8 +47605,8 @@ "deprecationReason": null }, { - "name": "projectContactsByArchivedBy", - "description": "Reads and enables pagination through a set of `ProjectContact`.", + "name": "operatorsByArchivedBy", + "description": "Reads and enables pagination through a set of `Operator`.", "args": [ { "name": "after", @@ -46675,122 +47633,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectContactFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "INHERIT" - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `ProjectContact`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProjectContactsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectContactsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectContactsByCreatedBy", - "description": "Reads and enables pagination through a set of `ProjectContact`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectContactCondition", + "name": "OperatorCondition", "ofType": null }, "defaultValue": null @@ -46800,7 +47643,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactFilter", + "name": "OperatorFilter", "ofType": null }, "defaultValue": null @@ -46847,7 +47690,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectContact`.", + "description": "The method to use when ordering `Operator`.", "type": { "kind": "LIST", "name": null, @@ -46856,7 +47699,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectContactsOrderBy", + "name": "OperatorsOrderBy", "ofType": null } } @@ -46869,7 +47712,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectContactsConnection", + "name": "OperatorsConnection", "ofType": null } }, @@ -46877,8 +47720,8 @@ "deprecationReason": null }, { - "name": "projectContactsByUpdatedBy", - "description": "Reads and enables pagination through a set of `ProjectContact`.", + "name": "operatorsByCreatedBy", + "description": "Reads and enables pagination through a set of `Operator`.", "args": [ { "name": "after", @@ -46905,7 +47748,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactCondition", + "name": "OperatorCondition", "ofType": null }, "defaultValue": null @@ -46915,7 +47758,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactFilter", + "name": "OperatorFilter", "ofType": null }, "defaultValue": null @@ -46962,7 +47805,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectContact`.", + "description": "The method to use when ordering `Operator`.", "type": { "kind": "LIST", "name": null, @@ -46971,7 +47814,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectContactsOrderBy", + "name": "OperatorsOrderBy", "ofType": null } } @@ -46984,7 +47827,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectContactsConnection", + "name": "OperatorsConnection", "ofType": null } }, @@ -46992,8 +47835,8 @@ "deprecationReason": null }, { - "name": "projectManagerLabelsByArchivedBy", - "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", + "name": "operatorsByProjectArchivedByAndOperatorId", + "description": "Reads and enables pagination through a set of `Operator`.", "args": [ { "name": "after", @@ -47020,7 +47863,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelCondition", + "name": "OperatorCondition", "ofType": null }, "defaultValue": null @@ -47030,7 +47873,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelFilter", + "name": "OperatorFilter", "ofType": null }, "defaultValue": null @@ -47053,7 +47896,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -47077,7 +47920,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManagerLabel`.", + "description": "The method to use when ordering `Operator`.", "type": { "kind": "LIST", "name": null, @@ -47086,7 +47929,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagerLabelsOrderBy", + "name": "OperatorsOrderBy", "ofType": null } } @@ -47099,7 +47942,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectManagerLabelsConnection", + "name": "CifUserOperatorsByProjectArchivedByAndOperatorIdManyToManyConnection", "ofType": null } }, @@ -47107,8 +47950,8 @@ "deprecationReason": null }, { - "name": "projectManagerLabelsByCreatedBy", - "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", + "name": "operatorsByProjectCreatedByAndOperatorId", + "description": "Reads and enables pagination through a set of `Operator`.", "args": [ { "name": "after", @@ -47135,7 +47978,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelCondition", + "name": "OperatorCondition", "ofType": null }, "defaultValue": null @@ -47145,7 +47988,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelFilter", + "name": "OperatorFilter", "ofType": null }, "defaultValue": null @@ -47168,7 +48011,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -47192,7 +48035,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManagerLabel`.", + "description": "The method to use when ordering `Operator`.", "type": { "kind": "LIST", "name": null, @@ -47201,7 +48044,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagerLabelsOrderBy", + "name": "OperatorsOrderBy", "ofType": null } } @@ -47214,7 +48057,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectManagerLabelsConnection", + "name": "CifUserOperatorsByProjectCreatedByAndOperatorIdManyToManyConnection", "ofType": null } }, @@ -47222,8 +48065,8 @@ "deprecationReason": null }, { - "name": "projectManagerLabelsByProjectManagerArchivedByAndProjectManagerLabelId", - "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", + "name": "operatorsByProjectUpdatedByAndOperatorId", + "description": "Reads and enables pagination through a set of `Operator`.", "args": [ { "name": "after", @@ -47250,7 +48093,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelCondition", + "name": "OperatorCondition", "ofType": null }, "defaultValue": null @@ -47260,7 +48103,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelFilter", + "name": "OperatorFilter", "ofType": null }, "defaultValue": null @@ -47307,7 +48150,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManagerLabel`.", + "description": "The method to use when ordering `Operator`.", "type": { "kind": "LIST", "name": null, @@ -47316,7 +48159,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagerLabelsOrderBy", + "name": "OperatorsOrderBy", "ofType": null } } @@ -47329,7 +48172,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectManagerLabelsByProjectManagerArchivedByAndProjectManagerLabelIdManyToManyConnection", + "name": "CifUserOperatorsByProjectUpdatedByAndOperatorIdManyToManyConnection", "ofType": null } }, @@ -47337,8 +48180,8 @@ "deprecationReason": null }, { - "name": "projectManagerLabelsByProjectManagerCifUserIdAndProjectManagerLabelId", - "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", + "name": "operatorsByUpdatedBy", + "description": "Reads and enables pagination through a set of `Operator`.", "args": [ { "name": "after", @@ -47365,7 +48208,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelCondition", + "name": "OperatorCondition", "ofType": null }, "defaultValue": null @@ -47375,7 +48218,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelFilter", + "name": "OperatorFilter", "ofType": null }, "defaultValue": null @@ -47398,7 +48241,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -47422,7 +48265,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManagerLabel`.", + "description": "The method to use when ordering `Operator`.", "type": { "kind": "LIST", "name": null, @@ -47431,7 +48274,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagerLabelsOrderBy", + "name": "OperatorsOrderBy", "ofType": null } } @@ -47444,7 +48287,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectManagerLabelsByProjectManagerCifUserIdAndProjectManagerLabelIdManyToManyConnection", + "name": "OperatorsConnection", "ofType": null } }, @@ -47452,8 +48295,8 @@ "deprecationReason": null }, { - "name": "projectManagerLabelsByProjectManagerCreatedByAndProjectManagerLabelId", - "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", + "name": "paymentsByArchivedBy", + "description": "Reads and enables pagination through a set of `Payment`.", "args": [ { "name": "after", @@ -47480,7 +48323,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelCondition", + "name": "PaymentCondition", "ofType": null }, "defaultValue": null @@ -47490,7 +48333,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelFilter", + "name": "PaymentFilter", "ofType": null }, "defaultValue": null @@ -47513,7 +48356,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -47537,7 +48380,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManagerLabel`.", + "description": "The method to use when ordering `Payment`.", "type": { "kind": "LIST", "name": null, @@ -47546,7 +48389,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagerLabelsOrderBy", + "name": "PaymentsOrderBy", "ofType": null } } @@ -47559,7 +48402,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectManagerLabelsByProjectManagerCreatedByAndProjectManagerLabelIdManyToManyConnection", + "name": "PaymentsConnection", "ofType": null } }, @@ -47567,8 +48410,8 @@ "deprecationReason": null }, { - "name": "projectManagerLabelsByProjectManagerUpdatedByAndProjectManagerLabelId", - "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", + "name": "paymentsByCreatedBy", + "description": "Reads and enables pagination through a set of `Payment`.", "args": [ { "name": "after", @@ -47595,7 +48438,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelCondition", + "name": "PaymentCondition", "ofType": null }, "defaultValue": null @@ -47605,7 +48448,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelFilter", + "name": "PaymentFilter", "ofType": null }, "defaultValue": null @@ -47628,7 +48471,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -47652,7 +48495,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManagerLabel`.", + "description": "The method to use when ordering `Payment`.", "type": { "kind": "LIST", "name": null, @@ -47661,7 +48504,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagerLabelsOrderBy", + "name": "PaymentsOrderBy", "ofType": null } } @@ -47674,7 +48517,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectManagerLabelsByProjectManagerUpdatedByAndProjectManagerLabelIdManyToManyConnection", + "name": "PaymentsConnection", "ofType": null } }, @@ -47682,8 +48525,8 @@ "deprecationReason": null }, { - "name": "projectManagerLabelsByUpdatedBy", - "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", + "name": "paymentsByUpdatedBy", + "description": "Reads and enables pagination through a set of `Payment`.", "args": [ { "name": "after", @@ -47710,7 +48553,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelCondition", + "name": "PaymentCondition", "ofType": null }, "defaultValue": null @@ -47720,7 +48563,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelFilter", + "name": "PaymentFilter", "ofType": null }, "defaultValue": null @@ -47767,7 +48610,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManagerLabel`.", + "description": "The method to use when ordering `Payment`.", "type": { "kind": "LIST", "name": null, @@ -47776,7 +48619,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagerLabelsOrderBy", + "name": "PaymentsOrderBy", "ofType": null } } @@ -47789,7 +48632,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectManagerLabelsConnection", + "name": "PaymentsConnection", "ofType": null } }, @@ -47797,8 +48640,8 @@ "deprecationReason": null }, { - "name": "projectManagersByArchivedBy", - "description": "Reads and enables pagination through a set of `ProjectManager`.", + "name": "projectAttachmentsByArchivedBy", + "description": "Reads and enables pagination through a set of `ProjectAttachment`.", "args": [ { "name": "after", @@ -47825,7 +48668,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerCondition", + "name": "ProjectAttachmentCondition", "ofType": null }, "defaultValue": null @@ -47835,7 +48678,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerFilter", + "name": "ProjectAttachmentFilter", "ofType": null }, "defaultValue": null @@ -47882,7 +48725,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManager`.", + "description": "The method to use when ordering `ProjectAttachment`.", "type": { "kind": "LIST", "name": null, @@ -47891,7 +48734,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagersOrderBy", + "name": "ProjectAttachmentsOrderBy", "ofType": null } } @@ -47904,7 +48747,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectManagersConnection", + "name": "ProjectAttachmentsConnection", "ofType": null } }, @@ -47912,8 +48755,8 @@ "deprecationReason": null }, { - "name": "projectManagersByCifUserId", - "description": "Reads and enables pagination through a set of `ProjectManager`.", + "name": "projectAttachmentsByCreatedBy", + "description": "Reads and enables pagination through a set of `ProjectAttachment`.", "args": [ { "name": "after", @@ -47940,7 +48783,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerCondition", + "name": "ProjectAttachmentCondition", "ofType": null }, "defaultValue": null @@ -47950,7 +48793,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerFilter", + "name": "ProjectAttachmentFilter", "ofType": null }, "defaultValue": null @@ -47997,7 +48840,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManager`.", + "description": "The method to use when ordering `ProjectAttachment`.", "type": { "kind": "LIST", "name": null, @@ -48006,7 +48849,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagersOrderBy", + "name": "ProjectAttachmentsOrderBy", "ofType": null } } @@ -48019,7 +48862,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectManagersConnection", + "name": "ProjectAttachmentsConnection", "ofType": null } }, @@ -48027,8 +48870,8 @@ "deprecationReason": null }, { - "name": "projectManagersByCreatedBy", - "description": "Reads and enables pagination through a set of `ProjectManager`.", + "name": "projectAttachmentsByUpdatedBy", + "description": "Reads and enables pagination through a set of `ProjectAttachment`.", "args": [ { "name": "after", @@ -48055,7 +48898,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerCondition", + "name": "ProjectAttachmentCondition", "ofType": null }, "defaultValue": null @@ -48065,7 +48908,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerFilter", + "name": "ProjectAttachmentFilter", "ofType": null }, "defaultValue": null @@ -48112,7 +48955,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManager`.", + "description": "The method to use when ordering `ProjectAttachment`.", "type": { "kind": "LIST", "name": null, @@ -48121,7 +48964,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagersOrderBy", + "name": "ProjectAttachmentsOrderBy", "ofType": null } } @@ -48134,7 +48977,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectManagersConnection", + "name": "ProjectAttachmentsConnection", "ofType": null } }, @@ -48142,8 +48985,8 @@ "deprecationReason": null }, { - "name": "projectManagersByUpdatedBy", - "description": "Reads and enables pagination through a set of `ProjectManager`.", + "name": "projectContactsByArchivedBy", + "description": "Reads and enables pagination through a set of `ProjectContact`.", "args": [ { "name": "after", @@ -48170,7 +49013,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerCondition", + "name": "ProjectContactCondition", "ofType": null }, "defaultValue": null @@ -48180,7 +49023,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerFilter", + "name": "ProjectContactFilter", "ofType": null }, "defaultValue": null @@ -48227,7 +49070,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManager`.", + "description": "The method to use when ordering `ProjectContact`.", "type": { "kind": "LIST", "name": null, @@ -48236,7 +49079,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagersOrderBy", + "name": "ProjectContactsOrderBy", "ofType": null } } @@ -48249,7 +49092,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectManagersConnection", + "name": "ProjectContactsConnection", "ofType": null } }, @@ -48257,8 +49100,8 @@ "deprecationReason": null }, { - "name": "projectRevisionAmendmentTypesByArchivedBy", - "description": "Reads and enables pagination through a set of `ProjectRevisionAmendmentType`.", + "name": "projectContactsByCreatedBy", + "description": "Reads and enables pagination through a set of `ProjectContact`.", "args": [ { "name": "after", @@ -48285,7 +49128,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionAmendmentTypeCondition", + "name": "ProjectContactCondition", "ofType": null }, "defaultValue": null @@ -48295,7 +49138,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionAmendmentTypeFilter", + "name": "ProjectContactFilter", "ofType": null }, "defaultValue": null @@ -48342,7 +49185,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectRevisionAmendmentType`.", + "description": "The method to use when ordering `ProjectContact`.", "type": { "kind": "LIST", "name": null, @@ -48351,7 +49194,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectRevisionAmendmentTypesOrderBy", + "name": "ProjectContactsOrderBy", "ofType": null } } @@ -48364,7 +49207,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectRevisionAmendmentTypesConnection", + "name": "ProjectContactsConnection", "ofType": null } }, @@ -48372,8 +49215,8 @@ "deprecationReason": null }, { - "name": "projectRevisionAmendmentTypesByCreatedBy", - "description": "Reads and enables pagination through a set of `ProjectRevisionAmendmentType`.", + "name": "projectContactsByUpdatedBy", + "description": "Reads and enables pagination through a set of `ProjectContact`.", "args": [ { "name": "after", @@ -48400,7 +49243,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionAmendmentTypeCondition", + "name": "ProjectContactCondition", "ofType": null }, "defaultValue": null @@ -48410,7 +49253,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionAmendmentTypeFilter", + "name": "ProjectContactFilter", "ofType": null }, "defaultValue": null @@ -48457,7 +49300,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectRevisionAmendmentType`.", + "description": "The method to use when ordering `ProjectContact`.", "type": { "kind": "LIST", "name": null, @@ -48466,7 +49309,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectRevisionAmendmentTypesOrderBy", + "name": "ProjectContactsOrderBy", "ofType": null } } @@ -48479,7 +49322,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectRevisionAmendmentTypesConnection", + "name": "ProjectContactsConnection", "ofType": null } }, @@ -48487,8 +49330,8 @@ "deprecationReason": null }, { - "name": "projectRevisionAmendmentTypesByUpdatedBy", - "description": "Reads and enables pagination through a set of `ProjectRevisionAmendmentType`.", + "name": "projectManagerLabelsByArchivedBy", + "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", "args": [ { "name": "after", @@ -48515,7 +49358,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionAmendmentTypeCondition", + "name": "ProjectManagerLabelCondition", "ofType": null }, "defaultValue": null @@ -48525,7 +49368,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionAmendmentTypeFilter", + "name": "ProjectManagerLabelFilter", "ofType": null }, "defaultValue": null @@ -48572,7 +49415,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectRevisionAmendmentType`.", + "description": "The method to use when ordering `ProjectManagerLabel`.", "type": { "kind": "LIST", "name": null, @@ -48581,7 +49424,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectRevisionAmendmentTypesOrderBy", + "name": "ProjectManagerLabelsOrderBy", "ofType": null } } @@ -48594,7 +49437,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectRevisionAmendmentTypesConnection", + "name": "ProjectManagerLabelsConnection", "ofType": null } }, @@ -48602,8 +49445,8 @@ "deprecationReason": null }, { - "name": "projectRevisionsByCreatedBy", - "description": "Reads and enables pagination through a set of `ProjectRevision`.", + "name": "projectManagerLabelsByCreatedBy", + "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", "args": [ { "name": "after", @@ -48630,7 +49473,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionCondition", + "name": "ProjectManagerLabelCondition", "ofType": null }, "defaultValue": null @@ -48640,7 +49483,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionFilter", + "name": "ProjectManagerLabelFilter", "ofType": null }, "defaultValue": null @@ -48655,6 +49498,16 @@ }, "defaultValue": null }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "INHERIT" + }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -48677,7 +49530,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectRevision`.", + "description": "The method to use when ordering `ProjectManagerLabel`.", "type": { "kind": "LIST", "name": null, @@ -48686,7 +49539,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectRevisionsOrderBy", + "name": "ProjectManagerLabelsOrderBy", "ofType": null } } @@ -48699,7 +49552,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectRevisionsConnection", + "name": "ProjectManagerLabelsConnection", "ofType": null } }, @@ -48707,8 +49560,8 @@ "deprecationReason": null }, { - "name": "projectRevisionsByFormChangeCreatedByAndProjectRevisionId", - "description": "Reads and enables pagination through a set of `ProjectRevision`.", + "name": "projectManagerLabelsByProjectManagerArchivedByAndProjectManagerLabelId", + "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", "args": [ { "name": "after", @@ -48735,7 +49588,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionCondition", + "name": "ProjectManagerLabelCondition", "ofType": null }, "defaultValue": null @@ -48745,7 +49598,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionFilter", + "name": "ProjectManagerLabelFilter", "ofType": null }, "defaultValue": null @@ -48760,6 +49613,16 @@ }, "defaultValue": null }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -48782,7 +49645,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectRevision`.", + "description": "The method to use when ordering `ProjectManagerLabel`.", "type": { "kind": "LIST", "name": null, @@ -48791,7 +49654,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectRevisionsOrderBy", + "name": "ProjectManagerLabelsOrderBy", "ofType": null } } @@ -48804,7 +49667,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectRevisionsByFormChangeCreatedByAndProjectRevisionIdManyToManyConnection", + "name": "CifUserProjectManagerLabelsByProjectManagerArchivedByAndProjectManagerLabelIdManyToManyConnection", "ofType": null } }, @@ -48812,8 +49675,8 @@ "deprecationReason": null }, { - "name": "projectRevisionsByFormChangeUpdatedByAndProjectRevisionId", - "description": "Reads and enables pagination through a set of `ProjectRevision`.", + "name": "projectManagerLabelsByProjectManagerCifUserIdAndProjectManagerLabelId", + "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", "args": [ { "name": "after", @@ -48840,7 +49703,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionCondition", + "name": "ProjectManagerLabelCondition", "ofType": null }, "defaultValue": null @@ -48850,7 +49713,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionFilter", + "name": "ProjectManagerLabelFilter", "ofType": null }, "defaultValue": null @@ -48865,6 +49728,16 @@ }, "defaultValue": null }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -48887,7 +49760,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectRevision`.", + "description": "The method to use when ordering `ProjectManagerLabel`.", "type": { "kind": "LIST", "name": null, @@ -48896,7 +49769,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectRevisionsOrderBy", + "name": "ProjectManagerLabelsOrderBy", "ofType": null } } @@ -48909,7 +49782,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectRevisionsByFormChangeUpdatedByAndProjectRevisionIdManyToManyConnection", + "name": "CifUserProjectManagerLabelsByProjectManagerCifUserIdAndProjectManagerLabelIdManyToManyConnection", "ofType": null } }, @@ -48917,8 +49790,8 @@ "deprecationReason": null }, { - "name": "projectRevisionsByProjectRevisionAmendmentTypeArchivedByAndProjectRevisionId", - "description": "Reads and enables pagination through a set of `ProjectRevision`.", + "name": "projectManagerLabelsByProjectManagerCreatedByAndProjectManagerLabelId", + "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", "args": [ { "name": "after", @@ -48945,7 +49818,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionCondition", + "name": "ProjectManagerLabelCondition", "ofType": null }, "defaultValue": null @@ -48955,7 +49828,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionFilter", + "name": "ProjectManagerLabelFilter", "ofType": null }, "defaultValue": null @@ -48970,6 +49843,16 @@ }, "defaultValue": null }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -48992,7 +49875,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectRevision`.", + "description": "The method to use when ordering `ProjectManagerLabel`.", "type": { "kind": "LIST", "name": null, @@ -49001,7 +49884,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectRevisionsOrderBy", + "name": "ProjectManagerLabelsOrderBy", "ofType": null } } @@ -49014,7 +49897,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectRevisionsByProjectRevisionAmendmentTypeArchivedByAndProjectRevisionIdManyToManyConnection", + "name": "CifUserProjectManagerLabelsByProjectManagerCreatedByAndProjectManagerLabelIdManyToManyConnection", "ofType": null } }, @@ -49022,8 +49905,8 @@ "deprecationReason": null }, { - "name": "projectRevisionsByProjectRevisionAmendmentTypeCreatedByAndProjectRevisionId", - "description": "Reads and enables pagination through a set of `ProjectRevision`.", + "name": "projectManagerLabelsByProjectManagerUpdatedByAndProjectManagerLabelId", + "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", "args": [ { "name": "after", @@ -49050,7 +49933,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionCondition", + "name": "ProjectManagerLabelCondition", "ofType": null }, "defaultValue": null @@ -49060,7 +49943,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionFilter", + "name": "ProjectManagerLabelFilter", "ofType": null }, "defaultValue": null @@ -49075,6 +49958,16 @@ }, "defaultValue": null }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -49097,7 +49990,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectRevision`.", + "description": "The method to use when ordering `ProjectManagerLabel`.", "type": { "kind": "LIST", "name": null, @@ -49106,7 +49999,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectRevisionsOrderBy", + "name": "ProjectManagerLabelsOrderBy", "ofType": null } } @@ -49119,7 +50012,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectRevisionsByProjectRevisionAmendmentTypeCreatedByAndProjectRevisionIdManyToManyConnection", + "name": "CifUserProjectManagerLabelsByProjectManagerUpdatedByAndProjectManagerLabelIdManyToManyConnection", "ofType": null } }, @@ -49127,8 +50020,8 @@ "deprecationReason": null }, { - "name": "projectRevisionsByProjectRevisionAmendmentTypeUpdatedByAndProjectRevisionId", - "description": "Reads and enables pagination through a set of `ProjectRevision`.", + "name": "projectManagerLabelsByUpdatedBy", + "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", "args": [ { "name": "after", @@ -49155,7 +50048,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionCondition", + "name": "ProjectManagerLabelCondition", "ofType": null }, "defaultValue": null @@ -49165,7 +50058,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionFilter", + "name": "ProjectManagerLabelFilter", "ofType": null }, "defaultValue": null @@ -49180,6 +50073,16 @@ }, "defaultValue": null }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "INHERIT" + }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -49202,7 +50105,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectRevision`.", + "description": "The method to use when ordering `ProjectManagerLabel`.", "type": { "kind": "LIST", "name": null, @@ -49211,7 +50114,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectRevisionsOrderBy", + "name": "ProjectManagerLabelsOrderBy", "ofType": null } } @@ -49224,7 +50127,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectRevisionsByProjectRevisionAmendmentTypeUpdatedByAndProjectRevisionIdManyToManyConnection", + "name": "ProjectManagerLabelsConnection", "ofType": null } }, @@ -49232,8 +50135,8 @@ "deprecationReason": null }, { - "name": "projectRevisionsByUpdatedBy", - "description": "Reads and enables pagination through a set of `ProjectRevision`.", + "name": "projectManagersByArchivedBy", + "description": "Reads and enables pagination through a set of `ProjectManager`.", "args": [ { "name": "after", @@ -49260,7 +50163,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionCondition", + "name": "ProjectManagerCondition", "ofType": null }, "defaultValue": null @@ -49270,7 +50173,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionFilter", + "name": "ProjectManagerFilter", "ofType": null }, "defaultValue": null @@ -49285,6 +50188,16 @@ }, "defaultValue": null }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "INHERIT" + }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -49307,7 +50220,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectRevision`.", + "description": "The method to use when ordering `ProjectManager`.", "type": { "kind": "LIST", "name": null, @@ -49316,7 +50229,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectRevisionsOrderBy", + "name": "ProjectManagersOrderBy", "ofType": null } } @@ -49329,7 +50242,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectRevisionsConnection", + "name": "ProjectManagersConnection", "ofType": null } }, @@ -49337,8 +50250,8 @@ "deprecationReason": null }, { - "name": "projectStatusesByArchivedBy", - "description": "Reads and enables pagination through a set of `ProjectStatus`.", + "name": "projectManagersByCifUserId", + "description": "Reads and enables pagination through a set of `ProjectManager`.", "args": [ { "name": "after", @@ -49365,7 +50278,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusCondition", + "name": "ProjectManagerCondition", "ofType": null }, "defaultValue": null @@ -49375,7 +50288,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusFilter", + "name": "ProjectManagerFilter", "ofType": null }, "defaultValue": null @@ -49422,7 +50335,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectStatus`.", + "description": "The method to use when ordering `ProjectManager`.", "type": { "kind": "LIST", "name": null, @@ -49431,7 +50344,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectStatusesOrderBy", + "name": "ProjectManagersOrderBy", "ofType": null } } @@ -49444,7 +50357,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectStatusesConnection", + "name": "ProjectManagersConnection", "ofType": null } }, @@ -49452,8 +50365,8 @@ "deprecationReason": null }, { - "name": "projectStatusesByAttachmentArchivedByAndProjectStatusId", - "description": "Reads and enables pagination through a set of `ProjectStatus`.", + "name": "projectManagersByCreatedBy", + "description": "Reads and enables pagination through a set of `ProjectManager`.", "args": [ { "name": "after", @@ -49480,7 +50393,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusCondition", + "name": "ProjectManagerCondition", "ofType": null }, "defaultValue": null @@ -49490,7 +50403,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusFilter", + "name": "ProjectManagerFilter", "ofType": null }, "defaultValue": null @@ -49513,7 +50426,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -49537,7 +50450,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectStatus`.", + "description": "The method to use when ordering `ProjectManager`.", "type": { "kind": "LIST", "name": null, @@ -49546,7 +50459,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectStatusesOrderBy", + "name": "ProjectManagersOrderBy", "ofType": null } } @@ -49559,7 +50472,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectStatusesByAttachmentArchivedByAndProjectStatusIdManyToManyConnection", + "name": "ProjectManagersConnection", "ofType": null } }, @@ -49567,8 +50480,8 @@ "deprecationReason": null }, { - "name": "projectStatusesByAttachmentCreatedByAndProjectStatusId", - "description": "Reads and enables pagination through a set of `ProjectStatus`.", + "name": "projectManagersByUpdatedBy", + "description": "Reads and enables pagination through a set of `ProjectManager`.", "args": [ { "name": "after", @@ -49595,7 +50508,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusCondition", + "name": "ProjectManagerCondition", "ofType": null }, "defaultValue": null @@ -49605,7 +50518,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusFilter", + "name": "ProjectManagerFilter", "ofType": null }, "defaultValue": null @@ -49628,7 +50541,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -49652,7 +50565,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectStatus`.", + "description": "The method to use when ordering `ProjectManager`.", "type": { "kind": "LIST", "name": null, @@ -49661,7 +50574,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectStatusesOrderBy", + "name": "ProjectManagersOrderBy", "ofType": null } } @@ -49674,7 +50587,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectStatusesByAttachmentCreatedByAndProjectStatusIdManyToManyConnection", + "name": "ProjectManagersConnection", "ofType": null } }, @@ -49682,8 +50595,8 @@ "deprecationReason": null }, { - "name": "projectStatusesByAttachmentUpdatedByAndProjectStatusId", - "description": "Reads and enables pagination through a set of `ProjectStatus`.", + "name": "projectRevisionAmendmentTypesByArchivedBy", + "description": "Reads and enables pagination through a set of `ProjectRevisionAmendmentType`.", "args": [ { "name": "after", @@ -49710,7 +50623,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusCondition", + "name": "ProjectRevisionAmendmentTypeCondition", "ofType": null }, "defaultValue": null @@ -49720,7 +50633,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusFilter", + "name": "ProjectRevisionAmendmentTypeFilter", "ofType": null }, "defaultValue": null @@ -49743,7 +50656,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -49767,7 +50680,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectStatus`.", + "description": "The method to use when ordering `ProjectRevisionAmendmentType`.", "type": { "kind": "LIST", "name": null, @@ -49776,7 +50689,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectStatusesOrderBy", + "name": "ProjectRevisionAmendmentTypesOrderBy", "ofType": null } } @@ -49789,7 +50702,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectStatusesByAttachmentUpdatedByAndProjectStatusIdManyToManyConnection", + "name": "ProjectRevisionAmendmentTypesConnection", "ofType": null } }, @@ -49797,8 +50710,8 @@ "deprecationReason": null }, { - "name": "projectStatusesByCreatedBy", - "description": "Reads and enables pagination through a set of `ProjectStatus`.", + "name": "projectRevisionAmendmentTypesByCreatedBy", + "description": "Reads and enables pagination through a set of `ProjectRevisionAmendmentType`.", "args": [ { "name": "after", @@ -49825,7 +50738,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusCondition", + "name": "ProjectRevisionAmendmentTypeCondition", "ofType": null }, "defaultValue": null @@ -49835,7 +50748,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusFilter", + "name": "ProjectRevisionAmendmentTypeFilter", "ofType": null }, "defaultValue": null @@ -49882,7 +50795,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectStatus`.", + "description": "The method to use when ordering `ProjectRevisionAmendmentType`.", "type": { "kind": "LIST", "name": null, @@ -49891,7 +50804,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectStatusesOrderBy", + "name": "ProjectRevisionAmendmentTypesOrderBy", "ofType": null } } @@ -49904,7 +50817,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectStatusesConnection", + "name": "ProjectRevisionAmendmentTypesConnection", "ofType": null } }, @@ -49912,8 +50825,8 @@ "deprecationReason": null }, { - "name": "projectStatusesByFundingStreamProjectStatusArchivedByAndProjectStatusId", - "description": "Reads and enables pagination through a set of `ProjectStatus`.", + "name": "projectRevisionAmendmentTypesByUpdatedBy", + "description": "Reads and enables pagination through a set of `ProjectRevisionAmendmentType`.", "args": [ { "name": "after", @@ -49940,7 +50853,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusCondition", + "name": "ProjectRevisionAmendmentTypeCondition", "ofType": null }, "defaultValue": null @@ -49950,7 +50863,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusFilter", + "name": "ProjectRevisionAmendmentTypeFilter", "ofType": null }, "defaultValue": null @@ -49973,7 +50886,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -49997,7 +50910,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectStatus`.", + "description": "The method to use when ordering `ProjectRevisionAmendmentType`.", "type": { "kind": "LIST", "name": null, @@ -50006,7 +50919,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectStatusesOrderBy", + "name": "ProjectRevisionAmendmentTypesOrderBy", "ofType": null } } @@ -50019,7 +50932,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectStatusesByFundingStreamProjectStatusArchivedByAndProjectStatusIdManyToManyConnection", + "name": "ProjectRevisionAmendmentTypesConnection", "ofType": null } }, @@ -50027,8 +50940,8 @@ "deprecationReason": null }, { - "name": "projectStatusesByFundingStreamProjectStatusCreatedByAndProjectStatusId", - "description": "Reads and enables pagination through a set of `ProjectStatus`.", + "name": "projectRevisionsByCreatedBy", + "description": "Reads and enables pagination through a set of `ProjectRevision`.", "args": [ { "name": "after", @@ -50055,7 +50968,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusCondition", + "name": "ProjectRevisionCondition", "ofType": null }, "defaultValue": null @@ -50065,7 +50978,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusFilter", + "name": "ProjectRevisionFilter", "ofType": null }, "defaultValue": null @@ -50080,16 +50993,6 @@ }, "defaultValue": null }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -50112,7 +51015,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectStatus`.", + "description": "The method to use when ordering `ProjectRevision`.", "type": { "kind": "LIST", "name": null, @@ -50121,7 +51024,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectStatusesOrderBy", + "name": "ProjectRevisionsOrderBy", "ofType": null } } @@ -50134,7 +51037,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectStatusesByFundingStreamProjectStatusCreatedByAndProjectStatusIdManyToManyConnection", + "name": "ProjectRevisionsConnection", "ofType": null } }, @@ -50142,8 +51045,8 @@ "deprecationReason": null }, { - "name": "projectStatusesByFundingStreamProjectStatusUpdatedByAndProjectStatusId", - "description": "Reads and enables pagination through a set of `ProjectStatus`.", + "name": "projectRevisionsByFormChangeCreatedByAndProjectRevisionId", + "description": "Reads and enables pagination through a set of `ProjectRevision`.", "args": [ { "name": "after", @@ -50170,7 +51073,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusCondition", + "name": "ProjectRevisionCondition", "ofType": null }, "defaultValue": null @@ -50180,7 +51083,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusFilter", + "name": "ProjectRevisionFilter", "ofType": null }, "defaultValue": null @@ -50195,16 +51098,6 @@ }, "defaultValue": null }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -50227,7 +51120,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectStatus`.", + "description": "The method to use when ordering `ProjectRevision`.", "type": { "kind": "LIST", "name": null, @@ -50236,7 +51129,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectStatusesOrderBy", + "name": "ProjectRevisionsOrderBy", "ofType": null } } @@ -50249,7 +51142,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectStatusesByFundingStreamProjectStatusUpdatedByAndProjectStatusIdManyToManyConnection", + "name": "CifUserProjectRevisionsByFormChangeCreatedByAndProjectRevisionIdManyToManyConnection", "ofType": null } }, @@ -50257,8 +51150,8 @@ "deprecationReason": null }, { - "name": "projectStatusesByProjectArchivedByAndProjectStatusId", - "description": "Reads and enables pagination through a set of `ProjectStatus`.", + "name": "projectRevisionsByFormChangeUpdatedByAndProjectRevisionId", + "description": "Reads and enables pagination through a set of `ProjectRevision`.", "args": [ { "name": "after", @@ -50285,7 +51178,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusCondition", + "name": "ProjectRevisionCondition", "ofType": null }, "defaultValue": null @@ -50295,7 +51188,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusFilter", + "name": "ProjectRevisionFilter", "ofType": null }, "defaultValue": null @@ -50310,16 +51203,6 @@ }, "defaultValue": null }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -50342,7 +51225,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectStatus`.", + "description": "The method to use when ordering `ProjectRevision`.", "type": { "kind": "LIST", "name": null, @@ -50351,7 +51234,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectStatusesOrderBy", + "name": "ProjectRevisionsOrderBy", "ofType": null } } @@ -50364,7 +51247,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectStatusesByProjectArchivedByAndProjectStatusIdManyToManyConnection", + "name": "CifUserProjectRevisionsByFormChangeUpdatedByAndProjectRevisionIdManyToManyConnection", "ofType": null } }, @@ -50372,8 +51255,8 @@ "deprecationReason": null }, { - "name": "projectStatusesByProjectCreatedByAndProjectStatusId", - "description": "Reads and enables pagination through a set of `ProjectStatus`.", + "name": "projectRevisionsByProjectRevisionAmendmentTypeArchivedByAndProjectRevisionId", + "description": "Reads and enables pagination through a set of `ProjectRevision`.", "args": [ { "name": "after", @@ -50400,7 +51283,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusCondition", + "name": "ProjectRevisionCondition", "ofType": null }, "defaultValue": null @@ -50410,7 +51293,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusFilter", + "name": "ProjectRevisionFilter", "ofType": null }, "defaultValue": null @@ -50426,14 +51309,109 @@ "defaultValue": null }, { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", + "name": "last", + "description": "Only read the last `n` values of the set.", "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "defaultValue": "NO" + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `ProjectRevision`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectRevisionsOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CifUserProjectRevisionsByProjectRevisionAmendmentTypeArchivedByAndProjectRevisionIdManyToManyConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectRevisionsByProjectRevisionAmendmentTypeCreatedByAndProjectRevisionId", + "description": "Reads and enables pagination through a set of `ProjectRevision`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectRevisionCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectRevisionFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { "name": "last", @@ -50457,7 +51435,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectStatus`.", + "description": "The method to use when ordering `ProjectRevision`.", "type": { "kind": "LIST", "name": null, @@ -50466,7 +51444,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectStatusesOrderBy", + "name": "ProjectRevisionsOrderBy", "ofType": null } } @@ -50479,7 +51457,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectStatusesByProjectCreatedByAndProjectStatusIdManyToManyConnection", + "name": "CifUserProjectRevisionsByProjectRevisionAmendmentTypeCreatedByAndProjectRevisionIdManyToManyConnection", "ofType": null } }, @@ -50487,8 +51465,8 @@ "deprecationReason": null }, { - "name": "projectStatusesByProjectUpdatedByAndProjectStatusId", - "description": "Reads and enables pagination through a set of `ProjectStatus`.", + "name": "projectRevisionsByProjectRevisionAmendmentTypeUpdatedByAndProjectRevisionId", + "description": "Reads and enables pagination through a set of `ProjectRevision`.", "args": [ { "name": "after", @@ -50515,7 +51493,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusCondition", + "name": "ProjectRevisionCondition", "ofType": null }, "defaultValue": null @@ -50525,7 +51503,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusFilter", + "name": "ProjectRevisionFilter", "ofType": null }, "defaultValue": null @@ -50541,14 +51519,109 @@ "defaultValue": null }, { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", + "name": "last", + "description": "Only read the last `n` values of the set.", "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "defaultValue": "NO" + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `ProjectRevision`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectRevisionsOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CifUserProjectRevisionsByProjectRevisionAmendmentTypeUpdatedByAndProjectRevisionIdManyToManyConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectRevisionsByUpdatedBy", + "description": "Reads and enables pagination through a set of `ProjectRevision`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectRevisionCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectRevisionFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { "name": "last", @@ -50572,7 +51645,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectStatus`.", + "description": "The method to use when ordering `ProjectRevision`.", "type": { "kind": "LIST", "name": null, @@ -50581,7 +51654,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectStatusesOrderBy", + "name": "ProjectRevisionsOrderBy", "ofType": null } } @@ -50594,7 +51667,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectStatusesByProjectUpdatedByAndProjectStatusIdManyToManyConnection", + "name": "ProjectRevisionsConnection", "ofType": null } }, @@ -50602,7 +51675,7 @@ "deprecationReason": null }, { - "name": "projectStatusesByUpdatedBy", + "name": "projectStatusesByArchivedBy", "description": "Reads and enables pagination through a set of `ProjectStatus`.", "args": [ { @@ -50717,8 +51790,8 @@ "deprecationReason": null }, { - "name": "projectTypesByArchivedBy", - "description": "Reads and enables pagination through a set of `ProjectType`.", + "name": "projectStatusesByCreatedBy", + "description": "Reads and enables pagination through a set of `ProjectStatus`.", "args": [ { "name": "after", @@ -50745,7 +51818,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTypeCondition", + "name": "ProjectStatusCondition", "ofType": null }, "defaultValue": null @@ -50755,7 +51828,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTypeFilter", + "name": "ProjectStatusFilter", "ofType": null }, "defaultValue": null @@ -50802,7 +51875,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectType`.", + "description": "The method to use when ordering `ProjectStatus`.", "type": { "kind": "LIST", "name": null, @@ -50811,7 +51884,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectTypesOrderBy", + "name": "ProjectStatusesOrderBy", "ofType": null } } @@ -50824,7 +51897,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectTypesConnection", + "name": "ProjectStatusesConnection", "ofType": null } }, @@ -50832,8 +51905,8 @@ "deprecationReason": null }, { - "name": "projectTypesByCreatedBy", - "description": "Reads and enables pagination through a set of `ProjectType`.", + "name": "projectStatusesByFundingStreamProjectStatusArchivedByAndProjectStatusId", + "description": "Reads and enables pagination through a set of `ProjectStatus`.", "args": [ { "name": "after", @@ -50860,7 +51933,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTypeCondition", + "name": "ProjectStatusCondition", "ofType": null }, "defaultValue": null @@ -50870,7 +51943,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTypeFilter", + "name": "ProjectStatusFilter", "ofType": null }, "defaultValue": null @@ -50893,7 +51966,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -50917,7 +51990,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectType`.", + "description": "The method to use when ordering `ProjectStatus`.", "type": { "kind": "LIST", "name": null, @@ -50926,7 +51999,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectTypesOrderBy", + "name": "ProjectStatusesOrderBy", "ofType": null } } @@ -50939,7 +52012,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectTypesConnection", + "name": "CifUserProjectStatusesByFundingStreamProjectStatusArchivedByAndProjectStatusIdManyToManyConnection", "ofType": null } }, @@ -50947,8 +52020,8 @@ "deprecationReason": null }, { - "name": "projectTypesByProjectArchivedByAndProjectType", - "description": "Reads and enables pagination through a set of `ProjectType`.", + "name": "projectStatusesByFundingStreamProjectStatusCreatedByAndProjectStatusId", + "description": "Reads and enables pagination through a set of `ProjectStatus`.", "args": [ { "name": "after", @@ -50975,7 +52048,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTypeCondition", + "name": "ProjectStatusCondition", "ofType": null }, "defaultValue": null @@ -50985,7 +52058,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTypeFilter", + "name": "ProjectStatusFilter", "ofType": null }, "defaultValue": null @@ -51032,7 +52105,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectType`.", + "description": "The method to use when ordering `ProjectStatus`.", "type": { "kind": "LIST", "name": null, @@ -51041,7 +52114,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectTypesOrderBy", + "name": "ProjectStatusesOrderBy", "ofType": null } } @@ -51054,7 +52127,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectTypesByProjectArchivedByAndProjectTypeManyToManyConnection", + "name": "CifUserProjectStatusesByFundingStreamProjectStatusCreatedByAndProjectStatusIdManyToManyConnection", "ofType": null } }, @@ -51062,8 +52135,8 @@ "deprecationReason": null }, { - "name": "projectTypesByProjectCreatedByAndProjectType", - "description": "Reads and enables pagination through a set of `ProjectType`.", + "name": "projectStatusesByFundingStreamProjectStatusUpdatedByAndProjectStatusId", + "description": "Reads and enables pagination through a set of `ProjectStatus`.", "args": [ { "name": "after", @@ -51090,7 +52163,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTypeCondition", + "name": "ProjectStatusCondition", "ofType": null }, "defaultValue": null @@ -51100,7 +52173,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTypeFilter", + "name": "ProjectStatusFilter", "ofType": null }, "defaultValue": null @@ -51147,7 +52220,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectType`.", + "description": "The method to use when ordering `ProjectStatus`.", "type": { "kind": "LIST", "name": null, @@ -51156,7 +52229,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectTypesOrderBy", + "name": "ProjectStatusesOrderBy", "ofType": null } } @@ -51169,7 +52242,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectTypesByProjectCreatedByAndProjectTypeManyToManyConnection", + "name": "CifUserProjectStatusesByFundingStreamProjectStatusUpdatedByAndProjectStatusIdManyToManyConnection", "ofType": null } }, @@ -51177,8 +52250,8 @@ "deprecationReason": null }, { - "name": "projectTypesByProjectUpdatedByAndProjectType", - "description": "Reads and enables pagination through a set of `ProjectType`.", + "name": "projectStatusesByProjectArchivedByAndProjectStatusId", + "description": "Reads and enables pagination through a set of `ProjectStatus`.", "args": [ { "name": "after", @@ -51205,7 +52278,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTypeCondition", + "name": "ProjectStatusCondition", "ofType": null }, "defaultValue": null @@ -51215,7 +52288,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTypeFilter", + "name": "ProjectStatusFilter", "ofType": null }, "defaultValue": null @@ -51262,7 +52335,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectType`.", + "description": "The method to use when ordering `ProjectStatus`.", "type": { "kind": "LIST", "name": null, @@ -51271,7 +52344,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectTypesOrderBy", + "name": "ProjectStatusesOrderBy", "ofType": null } } @@ -51284,7 +52357,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectTypesByProjectUpdatedByAndProjectTypeManyToManyConnection", + "name": "CifUserProjectStatusesByProjectArchivedByAndProjectStatusIdManyToManyConnection", "ofType": null } }, @@ -51292,8 +52365,8 @@ "deprecationReason": null }, { - "name": "projectTypesByUpdatedBy", - "description": "Reads and enables pagination through a set of `ProjectType`.", + "name": "projectStatusesByProjectCreatedByAndProjectStatusId", + "description": "Reads and enables pagination through a set of `ProjectStatus`.", "args": [ { "name": "after", @@ -51320,7 +52393,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTypeCondition", + "name": "ProjectStatusCondition", "ofType": null }, "defaultValue": null @@ -51330,7 +52403,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTypeFilter", + "name": "ProjectStatusFilter", "ofType": null }, "defaultValue": null @@ -51353,7 +52426,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -51377,7 +52450,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectType`.", + "description": "The method to use when ordering `ProjectStatus`.", "type": { "kind": "LIST", "name": null, @@ -51386,7 +52459,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectTypesOrderBy", + "name": "ProjectStatusesOrderBy", "ofType": null } } @@ -51399,7 +52472,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectTypesConnection", + "name": "CifUserProjectStatusesByProjectCreatedByAndProjectStatusIdManyToManyConnection", "ofType": null } }, @@ -51407,8 +52480,8 @@ "deprecationReason": null }, { - "name": "projectsByAdditionalFundingSourceArchivedByAndProjectId", - "description": "Reads and enables pagination through a set of `Project`.", + "name": "projectStatusesByProjectUpdatedByAndProjectStatusId", + "description": "Reads and enables pagination through a set of `ProjectStatus`.", "args": [ { "name": "after", @@ -51435,7 +52508,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCondition", + "name": "ProjectStatusCondition", "ofType": null }, "defaultValue": null @@ -51445,7 +52518,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectFilter", + "name": "ProjectStatusFilter", "ofType": null }, "defaultValue": null @@ -51492,7 +52565,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Project`.", + "description": "The method to use when ordering `ProjectStatus`.", "type": { "kind": "LIST", "name": null, @@ -51501,7 +52574,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectsOrderBy", + "name": "ProjectStatusesOrderBy", "ofType": null } } @@ -51514,7 +52587,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByAdditionalFundingSourceArchivedByAndProjectIdManyToManyConnection", + "name": "CifUserProjectStatusesByProjectUpdatedByAndProjectStatusIdManyToManyConnection", "ofType": null } }, @@ -51522,8 +52595,8 @@ "deprecationReason": null }, { - "name": "projectsByAdditionalFundingSourceCreatedByAndProjectId", - "description": "Reads and enables pagination through a set of `Project`.", + "name": "projectStatusesByUpdatedBy", + "description": "Reads and enables pagination through a set of `ProjectStatus`.", "args": [ { "name": "after", @@ -51550,7 +52623,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCondition", + "name": "ProjectStatusCondition", "ofType": null }, "defaultValue": null @@ -51560,7 +52633,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectFilter", + "name": "ProjectStatusFilter", "ofType": null }, "defaultValue": null @@ -51583,7 +52656,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -51607,7 +52680,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Project`.", + "description": "The method to use when ordering `ProjectStatus`.", "type": { "kind": "LIST", "name": null, @@ -51616,7 +52689,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectsOrderBy", + "name": "ProjectStatusesOrderBy", "ofType": null } } @@ -51629,7 +52702,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByAdditionalFundingSourceCreatedByAndProjectIdManyToManyConnection", + "name": "ProjectStatusesConnection", "ofType": null } }, @@ -51637,8 +52710,8 @@ "deprecationReason": null }, { - "name": "projectsByAdditionalFundingSourceUpdatedByAndProjectId", - "description": "Reads and enables pagination through a set of `Project`.", + "name": "projectTypesByArchivedBy", + "description": "Reads and enables pagination through a set of `ProjectType`.", "args": [ { "name": "after", @@ -51665,7 +52738,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCondition", + "name": "ProjectTypeCondition", "ofType": null }, "defaultValue": null @@ -51675,7 +52748,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectFilter", + "name": "ProjectTypeFilter", "ofType": null }, "defaultValue": null @@ -51698,7 +52771,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -51722,7 +52795,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Project`.", + "description": "The method to use when ordering `ProjectType`.", "type": { "kind": "LIST", "name": null, @@ -51731,7 +52804,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectsOrderBy", + "name": "ProjectTypesOrderBy", "ofType": null } } @@ -51744,7 +52817,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByAdditionalFundingSourceUpdatedByAndProjectIdManyToManyConnection", + "name": "ProjectTypesConnection", "ofType": null } }, @@ -51752,8 +52825,8 @@ "deprecationReason": null }, { - "name": "projectsByArchivedBy", - "description": "Reads and enables pagination through a set of `Project`.", + "name": "projectTypesByCreatedBy", + "description": "Reads and enables pagination through a set of `ProjectType`.", "args": [ { "name": "after", @@ -51780,7 +52853,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCondition", + "name": "ProjectTypeCondition", "ofType": null }, "defaultValue": null @@ -51790,7 +52863,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectFilter", + "name": "ProjectTypeFilter", "ofType": null }, "defaultValue": null @@ -51837,7 +52910,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Project`.", + "description": "The method to use when ordering `ProjectType`.", "type": { "kind": "LIST", "name": null, @@ -51846,7 +52919,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectsOrderBy", + "name": "ProjectTypesOrderBy", "ofType": null } } @@ -51859,7 +52932,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectsConnection", + "name": "ProjectTypesConnection", "ofType": null } }, @@ -51867,8 +52940,8 @@ "deprecationReason": null }, { - "name": "projectsByAttachmentArchivedByAndProjectId", - "description": "Reads and enables pagination through a set of `Project`.", + "name": "projectTypesByProjectArchivedByAndProjectType", + "description": "Reads and enables pagination through a set of `ProjectType`.", "args": [ { "name": "after", @@ -51895,7 +52968,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCondition", + "name": "ProjectTypeCondition", "ofType": null }, "defaultValue": null @@ -51905,7 +52978,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectFilter", + "name": "ProjectTypeFilter", "ofType": null }, "defaultValue": null @@ -51952,7 +53025,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Project`.", + "description": "The method to use when ordering `ProjectType`.", "type": { "kind": "LIST", "name": null, @@ -51961,7 +53034,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectsOrderBy", + "name": "ProjectTypesOrderBy", "ofType": null } } @@ -51974,7 +53047,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByAttachmentArchivedByAndProjectIdManyToManyConnection", + "name": "CifUserProjectTypesByProjectArchivedByAndProjectTypeManyToManyConnection", "ofType": null } }, @@ -51982,8 +53055,8 @@ "deprecationReason": null }, { - "name": "projectsByAttachmentCreatedByAndProjectId", - "description": "Reads and enables pagination through a set of `Project`.", + "name": "projectTypesByProjectCreatedByAndProjectType", + "description": "Reads and enables pagination through a set of `ProjectType`.", "args": [ { "name": "after", @@ -52010,7 +53083,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCondition", + "name": "ProjectTypeCondition", "ofType": null }, "defaultValue": null @@ -52020,7 +53093,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectFilter", + "name": "ProjectTypeFilter", "ofType": null }, "defaultValue": null @@ -52067,7 +53140,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Project`.", + "description": "The method to use when ordering `ProjectType`.", "type": { "kind": "LIST", "name": null, @@ -52076,7 +53149,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectsOrderBy", + "name": "ProjectTypesOrderBy", "ofType": null } } @@ -52089,7 +53162,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByAttachmentCreatedByAndProjectIdManyToManyConnection", + "name": "CifUserProjectTypesByProjectCreatedByAndProjectTypeManyToManyConnection", "ofType": null } }, @@ -52097,8 +53170,8 @@ "deprecationReason": null }, { - "name": "projectsByAttachmentUpdatedByAndProjectId", - "description": "Reads and enables pagination through a set of `Project`.", + "name": "projectTypesByProjectUpdatedByAndProjectType", + "description": "Reads and enables pagination through a set of `ProjectType`.", "args": [ { "name": "after", @@ -52125,7 +53198,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCondition", + "name": "ProjectTypeCondition", "ofType": null }, "defaultValue": null @@ -52135,7 +53208,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectFilter", + "name": "ProjectTypeFilter", "ofType": null }, "defaultValue": null @@ -52182,7 +53255,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Project`.", + "description": "The method to use when ordering `ProjectType`.", "type": { "kind": "LIST", "name": null, @@ -52191,7 +53264,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectsOrderBy", + "name": "ProjectTypesOrderBy", "ofType": null } } @@ -52204,7 +53277,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByAttachmentUpdatedByAndProjectIdManyToManyConnection", + "name": "CifUserProjectTypesByProjectUpdatedByAndProjectTypeManyToManyConnection", "ofType": null } }, @@ -52212,8 +53285,8 @@ "deprecationReason": null }, { - "name": "projectsByCreatedBy", - "description": "Reads and enables pagination through a set of `Project`.", + "name": "projectTypesByUpdatedBy", + "description": "Reads and enables pagination through a set of `ProjectType`.", "args": [ { "name": "after", @@ -52240,7 +53313,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCondition", + "name": "ProjectTypeCondition", "ofType": null }, "defaultValue": null @@ -52250,7 +53323,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectFilter", + "name": "ProjectTypeFilter", "ofType": null }, "defaultValue": null @@ -52297,7 +53370,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Project`.", + "description": "The method to use when ordering `ProjectType`.", "type": { "kind": "LIST", "name": null, @@ -52306,7 +53379,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectsOrderBy", + "name": "ProjectTypesOrderBy", "ofType": null } } @@ -52319,7 +53392,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectsConnection", + "name": "ProjectTypesConnection", "ofType": null } }, @@ -52327,7 +53400,7 @@ "deprecationReason": null }, { - "name": "projectsByFundingParameterArchivedByAndProjectId", + "name": "projectsByAdditionalFundingSourceArchivedByAndProjectId", "description": "Reads and enables pagination through a set of `Project`.", "args": [ { @@ -52434,7 +53507,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByFundingParameterArchivedByAndProjectIdManyToManyConnection", + "name": "CifUserProjectsByAdditionalFundingSourceArchivedByAndProjectIdManyToManyConnection", "ofType": null } }, @@ -52442,7 +53515,7 @@ "deprecationReason": null }, { - "name": "projectsByFundingParameterCreatedByAndProjectId", + "name": "projectsByAdditionalFundingSourceCreatedByAndProjectId", "description": "Reads and enables pagination through a set of `Project`.", "args": [ { @@ -52549,7 +53622,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByFundingParameterCreatedByAndProjectIdManyToManyConnection", + "name": "CifUserProjectsByAdditionalFundingSourceCreatedByAndProjectIdManyToManyConnection", "ofType": null } }, @@ -52557,7 +53630,7 @@ "deprecationReason": null }, { - "name": "projectsByFundingParameterUpdatedByAndProjectId", + "name": "projectsByAdditionalFundingSourceUpdatedByAndProjectId", "description": "Reads and enables pagination through a set of `Project`.", "args": [ { @@ -52664,7 +53737,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByFundingParameterUpdatedByAndProjectIdManyToManyConnection", + "name": "CifUserProjectsByAdditionalFundingSourceUpdatedByAndProjectIdManyToManyConnection", "ofType": null } }, @@ -52672,7 +53745,7 @@ "deprecationReason": null }, { - "name": "projectsByProjectContactArchivedByAndProjectId", + "name": "projectsByArchivedBy", "description": "Reads and enables pagination through a set of `Project`.", "args": [ { @@ -52733,7 +53806,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -52779,7 +53852,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByProjectContactArchivedByAndProjectIdManyToManyConnection", + "name": "ProjectsConnection", "ofType": null } }, @@ -52787,7 +53860,7 @@ "deprecationReason": null }, { - "name": "projectsByProjectContactCreatedByAndProjectId", + "name": "projectsByCreatedBy", "description": "Reads and enables pagination through a set of `Project`.", "args": [ { @@ -52848,7 +53921,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -52894,7 +53967,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByProjectContactCreatedByAndProjectIdManyToManyConnection", + "name": "ProjectsConnection", "ofType": null } }, @@ -52902,7 +53975,7 @@ "deprecationReason": null }, { - "name": "projectsByProjectContactUpdatedByAndProjectId", + "name": "projectsByFundingParameterArchivedByAndProjectId", "description": "Reads and enables pagination through a set of `Project`.", "args": [ { @@ -53009,7 +54082,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByProjectContactUpdatedByAndProjectIdManyToManyConnection", + "name": "CifUserProjectsByFundingParameterArchivedByAndProjectIdManyToManyConnection", "ofType": null } }, @@ -53017,7 +54090,7 @@ "deprecationReason": null }, { - "name": "projectsByProjectManagerArchivedByAndProjectId", + "name": "projectsByFundingParameterCreatedByAndProjectId", "description": "Reads and enables pagination through a set of `Project`.", "args": [ { @@ -53124,7 +54197,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByProjectManagerArchivedByAndProjectIdManyToManyConnection", + "name": "CifUserProjectsByFundingParameterCreatedByAndProjectIdManyToManyConnection", "ofType": null } }, @@ -53132,7 +54205,7 @@ "deprecationReason": null }, { - "name": "projectsByProjectManagerCifUserIdAndProjectId", + "name": "projectsByFundingParameterUpdatedByAndProjectId", "description": "Reads and enables pagination through a set of `Project`.", "args": [ { @@ -53239,7 +54312,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByProjectManagerCifUserIdAndProjectIdManyToManyConnection", + "name": "CifUserProjectsByFundingParameterUpdatedByAndProjectIdManyToManyConnection", "ofType": null } }, @@ -53247,7 +54320,7 @@ "deprecationReason": null }, { - "name": "projectsByProjectManagerCreatedByAndProjectId", + "name": "projectsByProjectAttachmentArchivedByAndProjectId", "description": "Reads and enables pagination through a set of `Project`.", "args": [ { @@ -53354,7 +54427,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByProjectManagerCreatedByAndProjectIdManyToManyConnection", + "name": "CifUserProjectsByProjectAttachmentArchivedByAndProjectIdManyToManyConnection", "ofType": null } }, @@ -53362,7 +54435,7 @@ "deprecationReason": null }, { - "name": "projectsByProjectManagerUpdatedByAndProjectId", + "name": "projectsByProjectAttachmentCreatedByAndProjectId", "description": "Reads and enables pagination through a set of `Project`.", "args": [ { @@ -53469,7 +54542,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByProjectManagerUpdatedByAndProjectIdManyToManyConnection", + "name": "CifUserProjectsByProjectAttachmentCreatedByAndProjectIdManyToManyConnection", "ofType": null } }, @@ -53477,7 +54550,7 @@ "deprecationReason": null }, { - "name": "projectsByProjectRevisionCreatedByAndProjectId", + "name": "projectsByProjectAttachmentUpdatedByAndProjectId", "description": "Reads and enables pagination through a set of `Project`.", "args": [ { @@ -53584,7 +54657,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByProjectRevisionCreatedByAndProjectIdManyToManyConnection", + "name": "CifUserProjectsByProjectAttachmentUpdatedByAndProjectIdManyToManyConnection", "ofType": null } }, @@ -53592,7 +54665,7 @@ "deprecationReason": null }, { - "name": "projectsByProjectRevisionUpdatedByAndProjectId", + "name": "projectsByProjectContactArchivedByAndProjectId", "description": "Reads and enables pagination through a set of `Project`.", "args": [ { @@ -53699,7 +54772,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByProjectRevisionUpdatedByAndProjectIdManyToManyConnection", + "name": "CifUserProjectsByProjectContactArchivedByAndProjectIdManyToManyConnection", "ofType": null } }, @@ -53707,7 +54780,7 @@ "deprecationReason": null }, { - "name": "projectsByReportingRequirementArchivedByAndProjectId", + "name": "projectsByProjectContactCreatedByAndProjectId", "description": "Reads and enables pagination through a set of `Project`.", "args": [ { @@ -53814,7 +54887,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByReportingRequirementArchivedByAndProjectIdManyToManyConnection", + "name": "CifUserProjectsByProjectContactCreatedByAndProjectIdManyToManyConnection", "ofType": null } }, @@ -53822,7 +54895,7 @@ "deprecationReason": null }, { - "name": "projectsByReportingRequirementCreatedByAndProjectId", + "name": "projectsByProjectContactUpdatedByAndProjectId", "description": "Reads and enables pagination through a set of `Project`.", "args": [ { @@ -53929,7 +55002,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByReportingRequirementCreatedByAndProjectIdManyToManyConnection", + "name": "CifUserProjectsByProjectContactUpdatedByAndProjectIdManyToManyConnection", "ofType": null } }, @@ -53937,7 +55010,7 @@ "deprecationReason": null }, { - "name": "projectsByReportingRequirementUpdatedByAndProjectId", + "name": "projectsByProjectManagerArchivedByAndProjectId", "description": "Reads and enables pagination through a set of `Project`.", "args": [ { @@ -54044,7 +55117,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByReportingRequirementUpdatedByAndProjectIdManyToManyConnection", + "name": "CifUserProjectsByProjectManagerArchivedByAndProjectIdManyToManyConnection", "ofType": null } }, @@ -54052,7 +55125,7 @@ "deprecationReason": null }, { - "name": "projectsByUpdatedBy", + "name": "projectsByProjectManagerCifUserIdAndProjectId", "description": "Reads and enables pagination through a set of `Project`.", "args": [ { @@ -54113,7 +55186,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -54159,122 +55232,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reportTypesByArchivedBy", - "description": "Reads and enables pagination through a set of `ReportType`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ReportTypeCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ReportTypeFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "INHERIT" - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `ReportType`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ReportTypesOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ReportTypesConnection", + "name": "CifUserProjectsByProjectManagerCifUserIdAndProjectIdManyToManyConnection", "ofType": null } }, @@ -54282,8 +55240,8 @@ "deprecationReason": null }, { - "name": "reportTypesByCreatedBy", - "description": "Reads and enables pagination through a set of `ReportType`.", + "name": "projectsByProjectManagerCreatedByAndProjectId", + "description": "Reads and enables pagination through a set of `Project`.", "args": [ { "name": "after", @@ -54310,7 +55268,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportTypeCondition", + "name": "ProjectCondition", "ofType": null }, "defaultValue": null @@ -54320,7 +55278,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportTypeFilter", + "name": "ProjectFilter", "ofType": null }, "defaultValue": null @@ -54343,7 +55301,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -54367,7 +55325,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportType`.", + "description": "The method to use when ordering `Project`.", "type": { "kind": "LIST", "name": null, @@ -54376,7 +55334,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportTypesOrderBy", + "name": "ProjectsOrderBy", "ofType": null } } @@ -54389,7 +55347,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ReportTypesConnection", + "name": "CifUserProjectsByProjectManagerCreatedByAndProjectIdManyToManyConnection", "ofType": null } }, @@ -54397,8 +55355,8 @@ "deprecationReason": null }, { - "name": "reportTypesByReportingRequirementArchivedByAndReportType", - "description": "Reads and enables pagination through a set of `ReportType`.", + "name": "projectsByProjectManagerUpdatedByAndProjectId", + "description": "Reads and enables pagination through a set of `Project`.", "args": [ { "name": "after", @@ -54425,7 +55383,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportTypeCondition", + "name": "ProjectCondition", "ofType": null }, "defaultValue": null @@ -54435,7 +55393,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportTypeFilter", + "name": "ProjectFilter", "ofType": null }, "defaultValue": null @@ -54482,7 +55440,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportType`.", + "description": "The method to use when ordering `Project`.", "type": { "kind": "LIST", "name": null, @@ -54491,7 +55449,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportTypesOrderBy", + "name": "ProjectsOrderBy", "ofType": null } } @@ -54504,7 +55462,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserReportTypesByReportingRequirementArchivedByAndReportTypeManyToManyConnection", + "name": "CifUserProjectsByProjectManagerUpdatedByAndProjectIdManyToManyConnection", "ofType": null } }, @@ -54512,8 +55470,8 @@ "deprecationReason": null }, { - "name": "reportTypesByReportingRequirementCreatedByAndReportType", - "description": "Reads and enables pagination through a set of `ReportType`.", + "name": "projectsByProjectRevisionCreatedByAndProjectId", + "description": "Reads and enables pagination through a set of `Project`.", "args": [ { "name": "after", @@ -54540,7 +55498,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportTypeCondition", + "name": "ProjectCondition", "ofType": null }, "defaultValue": null @@ -54550,7 +55508,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportTypeFilter", + "name": "ProjectFilter", "ofType": null }, "defaultValue": null @@ -54597,7 +55555,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportType`.", + "description": "The method to use when ordering `Project`.", "type": { "kind": "LIST", "name": null, @@ -54606,7 +55564,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportTypesOrderBy", + "name": "ProjectsOrderBy", "ofType": null } } @@ -54619,7 +55577,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserReportTypesByReportingRequirementCreatedByAndReportTypeManyToManyConnection", + "name": "CifUserProjectsByProjectRevisionCreatedByAndProjectIdManyToManyConnection", "ofType": null } }, @@ -54627,8 +55585,8 @@ "deprecationReason": null }, { - "name": "reportTypesByReportingRequirementUpdatedByAndReportType", - "description": "Reads and enables pagination through a set of `ReportType`.", + "name": "projectsByProjectRevisionUpdatedByAndProjectId", + "description": "Reads and enables pagination through a set of `Project`.", "args": [ { "name": "after", @@ -54655,7 +55613,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportTypeCondition", + "name": "ProjectCondition", "ofType": null }, "defaultValue": null @@ -54665,7 +55623,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportTypeFilter", + "name": "ProjectFilter", "ofType": null }, "defaultValue": null @@ -54712,7 +55670,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportType`.", + "description": "The method to use when ordering `Project`.", "type": { "kind": "LIST", "name": null, @@ -54721,7 +55679,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportTypesOrderBy", + "name": "ProjectsOrderBy", "ofType": null } } @@ -54734,7 +55692,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserReportTypesByReportingRequirementUpdatedByAndReportTypeManyToManyConnection", + "name": "CifUserProjectsByProjectRevisionUpdatedByAndProjectIdManyToManyConnection", "ofType": null } }, @@ -54742,8 +55700,8 @@ "deprecationReason": null }, { - "name": "reportTypesByUpdatedBy", - "description": "Reads and enables pagination through a set of `ReportType`.", + "name": "projectsByReportingRequirementArchivedByAndProjectId", + "description": "Reads and enables pagination through a set of `Project`.", "args": [ { "name": "after", @@ -54770,7 +55728,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportTypeCondition", + "name": "ProjectCondition", "ofType": null }, "defaultValue": null @@ -54780,7 +55738,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportTypeFilter", + "name": "ProjectFilter", "ofType": null }, "defaultValue": null @@ -54803,7 +55761,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -54827,7 +55785,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportType`.", + "description": "The method to use when ordering `Project`.", "type": { "kind": "LIST", "name": null, @@ -54836,7 +55794,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportTypesOrderBy", + "name": "ProjectsOrderBy", "ofType": null } } @@ -54849,7 +55807,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ReportTypesConnection", + "name": "CifUserProjectsByReportingRequirementArchivedByAndProjectIdManyToManyConnection", "ofType": null } }, @@ -54857,8 +55815,8 @@ "deprecationReason": null }, { - "name": "reportingRequirementsByArchivedBy", - "description": "Reads and enables pagination through a set of `ReportingRequirement`.", + "name": "projectsByReportingRequirementCreatedByAndProjectId", + "description": "Reads and enables pagination through a set of `Project`.", "args": [ { "name": "after", @@ -54885,7 +55843,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementCondition", + "name": "ProjectCondition", "ofType": null }, "defaultValue": null @@ -54895,7 +55853,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementFilter", + "name": "ProjectFilter", "ofType": null }, "defaultValue": null @@ -54918,7 +55876,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -54942,7 +55900,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportingRequirement`.", + "description": "The method to use when ordering `Project`.", "type": { "kind": "LIST", "name": null, @@ -54951,7 +55909,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportingRequirementsOrderBy", + "name": "ProjectsOrderBy", "ofType": null } } @@ -54964,7 +55922,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ReportingRequirementsConnection", + "name": "CifUserProjectsByReportingRequirementCreatedByAndProjectIdManyToManyConnection", "ofType": null } }, @@ -54972,8 +55930,8 @@ "deprecationReason": null }, { - "name": "reportingRequirementsByCreatedBy", - "description": "Reads and enables pagination through a set of `ReportingRequirement`.", + "name": "projectsByReportingRequirementUpdatedByAndProjectId", + "description": "Reads and enables pagination through a set of `Project`.", "args": [ { "name": "after", @@ -55000,7 +55958,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementCondition", + "name": "ProjectCondition", "ofType": null }, "defaultValue": null @@ -55010,7 +55968,122 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementFilter", + "name": "ProjectFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `Project`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectsOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CifUserProjectsByReportingRequirementUpdatedByAndProjectIdManyToManyConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectsByUpdatedBy", + "description": "Reads and enables pagination through a set of `Project`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFilter", "ofType": null }, "defaultValue": null @@ -55057,7 +56130,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportingRequirement`.", + "description": "The method to use when ordering `Project`.", "type": { "kind": "LIST", "name": null, @@ -55066,7 +56139,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportingRequirementsOrderBy", + "name": "ProjectsOrderBy", "ofType": null } } @@ -55079,7 +56152,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ReportingRequirementsConnection", + "name": "ProjectsConnection", "ofType": null } }, @@ -55087,8 +56160,8 @@ "deprecationReason": null }, { - "name": "reportingRequirementsByEmissionIntensityReportArchivedByAndReportingRequirementId", - "description": "Reads and enables pagination through a set of `ReportingRequirement`.", + "name": "reportTypesByArchivedBy", + "description": "Reads and enables pagination through a set of `ReportType`.", "args": [ { "name": "after", @@ -55115,7 +56188,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementCondition", + "name": "ReportTypeCondition", "ofType": null }, "defaultValue": null @@ -55125,7 +56198,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementFilter", + "name": "ReportTypeFilter", "ofType": null }, "defaultValue": null @@ -55148,7 +56221,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -55172,7 +56245,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportingRequirement`.", + "description": "The method to use when ordering `ReportType`.", "type": { "kind": "LIST", "name": null, @@ -55181,7 +56254,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportingRequirementsOrderBy", + "name": "ReportTypesOrderBy", "ofType": null } } @@ -55194,7 +56267,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByEmissionIntensityReportArchivedByAndReportingRequirementIdManyToManyConnection", + "name": "ReportTypesConnection", "ofType": null } }, @@ -55202,8 +56275,8 @@ "deprecationReason": null }, { - "name": "reportingRequirementsByEmissionIntensityReportCreatedByAndReportingRequirementId", - "description": "Reads and enables pagination through a set of `ReportingRequirement`.", + "name": "reportTypesByCreatedBy", + "description": "Reads and enables pagination through a set of `ReportType`.", "args": [ { "name": "after", @@ -55230,7 +56303,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementCondition", + "name": "ReportTypeCondition", "ofType": null }, "defaultValue": null @@ -55240,7 +56313,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementFilter", + "name": "ReportTypeFilter", "ofType": null }, "defaultValue": null @@ -55263,7 +56336,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -55287,7 +56360,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportingRequirement`.", + "description": "The method to use when ordering `ReportType`.", "type": { "kind": "LIST", "name": null, @@ -55296,7 +56369,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportingRequirementsOrderBy", + "name": "ReportTypesOrderBy", "ofType": null } } @@ -55309,7 +56382,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByEmissionIntensityReportCreatedByAndReportingRequirementIdManyToManyConnection", + "name": "ReportTypesConnection", "ofType": null } }, @@ -55317,8 +56390,8 @@ "deprecationReason": null }, { - "name": "reportingRequirementsByEmissionIntensityReportUpdatedByAndReportingRequirementId", - "description": "Reads and enables pagination through a set of `ReportingRequirement`.", + "name": "reportTypesByReportingRequirementArchivedByAndReportType", + "description": "Reads and enables pagination through a set of `ReportType`.", "args": [ { "name": "after", @@ -55345,7 +56418,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementCondition", + "name": "ReportTypeCondition", "ofType": null }, "defaultValue": null @@ -55355,7 +56428,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementFilter", + "name": "ReportTypeFilter", "ofType": null }, "defaultValue": null @@ -55402,7 +56475,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportingRequirement`.", + "description": "The method to use when ordering `ReportType`.", "type": { "kind": "LIST", "name": null, @@ -55411,7 +56484,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportingRequirementsOrderBy", + "name": "ReportTypesOrderBy", "ofType": null } } @@ -55424,7 +56497,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByEmissionIntensityReportUpdatedByAndReportingRequirementIdManyToManyConnection", + "name": "CifUserReportTypesByReportingRequirementArchivedByAndReportTypeManyToManyConnection", "ofType": null } }, @@ -55432,8 +56505,8 @@ "deprecationReason": null }, { - "name": "reportingRequirementsByMilestoneReportArchivedByAndReportingRequirementId", - "description": "Reads and enables pagination through a set of `ReportingRequirement`.", + "name": "reportTypesByReportingRequirementCreatedByAndReportType", + "description": "Reads and enables pagination through a set of `ReportType`.", "args": [ { "name": "after", @@ -55460,7 +56533,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementCondition", + "name": "ReportTypeCondition", "ofType": null }, "defaultValue": null @@ -55470,7 +56543,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementFilter", + "name": "ReportTypeFilter", "ofType": null }, "defaultValue": null @@ -55517,7 +56590,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportingRequirement`.", + "description": "The method to use when ordering `ReportType`.", "type": { "kind": "LIST", "name": null, @@ -55526,7 +56599,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportingRequirementsOrderBy", + "name": "ReportTypesOrderBy", "ofType": null } } @@ -55539,7 +56612,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByMilestoneReportArchivedByAndReportingRequirementIdManyToManyConnection", + "name": "CifUserReportTypesByReportingRequirementCreatedByAndReportTypeManyToManyConnection", "ofType": null } }, @@ -55547,8 +56620,8 @@ "deprecationReason": null }, { - "name": "reportingRequirementsByMilestoneReportCreatedByAndReportingRequirementId", - "description": "Reads and enables pagination through a set of `ReportingRequirement`.", + "name": "reportTypesByReportingRequirementUpdatedByAndReportType", + "description": "Reads and enables pagination through a set of `ReportType`.", "args": [ { "name": "after", @@ -55575,7 +56648,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementCondition", + "name": "ReportTypeCondition", "ofType": null }, "defaultValue": null @@ -55585,7 +56658,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementFilter", + "name": "ReportTypeFilter", "ofType": null }, "defaultValue": null @@ -55632,7 +56705,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportingRequirement`.", + "description": "The method to use when ordering `ReportType`.", "type": { "kind": "LIST", "name": null, @@ -55641,7 +56714,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportingRequirementsOrderBy", + "name": "ReportTypesOrderBy", "ofType": null } } @@ -55654,7 +56727,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByMilestoneReportCreatedByAndReportingRequirementIdManyToManyConnection", + "name": "CifUserReportTypesByReportingRequirementUpdatedByAndReportTypeManyToManyConnection", "ofType": null } }, @@ -55662,8 +56735,8 @@ "deprecationReason": null }, { - "name": "reportingRequirementsByMilestoneReportUpdatedByAndReportingRequirementId", - "description": "Reads and enables pagination through a set of `ReportingRequirement`.", + "name": "reportTypesByUpdatedBy", + "description": "Reads and enables pagination through a set of `ReportType`.", "args": [ { "name": "after", @@ -55690,7 +56763,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementCondition", + "name": "ReportTypeCondition", "ofType": null }, "defaultValue": null @@ -55700,7 +56773,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementFilter", + "name": "ReportTypeFilter", "ofType": null }, "defaultValue": null @@ -55723,7 +56796,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -55747,7 +56820,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportingRequirement`.", + "description": "The method to use when ordering `ReportType`.", "type": { "kind": "LIST", "name": null, @@ -55756,7 +56829,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportingRequirementsOrderBy", + "name": "ReportTypesOrderBy", "ofType": null } } @@ -55769,7 +56842,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByMilestoneReportUpdatedByAndReportingRequirementIdManyToManyConnection", + "name": "ReportTypesConnection", "ofType": null } }, @@ -55777,7 +56850,7 @@ "deprecationReason": null }, { - "name": "reportingRequirementsByPaymentArchivedByAndReportingRequirementId", + "name": "reportingRequirementsByArchivedBy", "description": "Reads and enables pagination through a set of `ReportingRequirement`.", "args": [ { @@ -55838,7 +56911,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -55884,7 +56957,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByPaymentArchivedByAndReportingRequirementIdManyToManyConnection", + "name": "ReportingRequirementsConnection", "ofType": null } }, @@ -55892,7 +56965,7 @@ "deprecationReason": null }, { - "name": "reportingRequirementsByPaymentCreatedByAndReportingRequirementId", + "name": "reportingRequirementsByCreatedBy", "description": "Reads and enables pagination through a set of `ReportingRequirement`.", "args": [ { @@ -55953,7 +57026,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -55999,7 +57072,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByPaymentCreatedByAndReportingRequirementIdManyToManyConnection", + "name": "ReportingRequirementsConnection", "ofType": null } }, @@ -56007,7 +57080,7 @@ "deprecationReason": null }, { - "name": "reportingRequirementsByPaymentUpdatedByAndReportingRequirementId", + "name": "reportingRequirementsByEmissionIntensityReportArchivedByAndReportingRequirementId", "description": "Reads and enables pagination through a set of `ReportingRequirement`.", "args": [ { @@ -56114,7 +57187,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByPaymentUpdatedByAndReportingRequirementIdManyToManyConnection", + "name": "CifUserReportingRequirementsByEmissionIntensityReportArchivedByAndReportingRequirementIdManyToManyConnection", "ofType": null } }, @@ -56122,7 +57195,7 @@ "deprecationReason": null }, { - "name": "reportingRequirementsByUpdatedBy", + "name": "reportingRequirementsByEmissionIntensityReportCreatedByAndReportingRequirementId", "description": "Reads and enables pagination through a set of `ReportingRequirement`.", "args": [ { @@ -56183,7 +57256,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -56229,7 +57302,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ReportingRequirementsConnection", + "name": "CifUserReportingRequirementsByEmissionIntensityReportCreatedByAndReportingRequirementIdManyToManyConnection", "ofType": null } }, @@ -56237,8 +57310,8 @@ "deprecationReason": null }, { - "name": "revisionStatusesByArchivedBy", - "description": "Reads and enables pagination through a set of `RevisionStatus`.", + "name": "reportingRequirementsByEmissionIntensityReportUpdatedByAndReportingRequirementId", + "description": "Reads and enables pagination through a set of `ReportingRequirement`.", "args": [ { "name": "after", @@ -56265,7 +57338,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionStatusCondition", + "name": "ReportingRequirementCondition", "ofType": null }, "defaultValue": null @@ -56275,7 +57348,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionStatusFilter", + "name": "ReportingRequirementFilter", "ofType": null }, "defaultValue": null @@ -56298,7 +57371,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -56322,7 +57395,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `RevisionStatus`.", + "description": "The method to use when ordering `ReportingRequirement`.", "type": { "kind": "LIST", "name": null, @@ -56331,7 +57404,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "RevisionStatusesOrderBy", + "name": "ReportingRequirementsOrderBy", "ofType": null } } @@ -56344,7 +57417,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RevisionStatusesConnection", + "name": "CifUserReportingRequirementsByEmissionIntensityReportUpdatedByAndReportingRequirementIdManyToManyConnection", "ofType": null } }, @@ -56352,8 +57425,8 @@ "deprecationReason": null }, { - "name": "revisionStatusesByCreatedBy", - "description": "Reads and enables pagination through a set of `RevisionStatus`.", + "name": "reportingRequirementsByMilestoneReportArchivedByAndReportingRequirementId", + "description": "Reads and enables pagination through a set of `ReportingRequirement`.", "args": [ { "name": "after", @@ -56380,7 +57453,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionStatusCondition", + "name": "ReportingRequirementCondition", "ofType": null }, "defaultValue": null @@ -56390,7 +57463,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionStatusFilter", + "name": "ReportingRequirementFilter", "ofType": null }, "defaultValue": null @@ -56413,7 +57486,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -56437,7 +57510,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `RevisionStatus`.", + "description": "The method to use when ordering `ReportingRequirement`.", "type": { "kind": "LIST", "name": null, @@ -56446,7 +57519,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "RevisionStatusesOrderBy", + "name": "ReportingRequirementsOrderBy", "ofType": null } } @@ -56459,7 +57532,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RevisionStatusesConnection", + "name": "CifUserReportingRequirementsByMilestoneReportArchivedByAndReportingRequirementIdManyToManyConnection", "ofType": null } }, @@ -56467,8 +57540,8 @@ "deprecationReason": null }, { - "name": "revisionStatusesByProjectRevisionCreatedByAndRevisionStatus", - "description": "Reads and enables pagination through a set of `RevisionStatus`.", + "name": "reportingRequirementsByMilestoneReportCreatedByAndReportingRequirementId", + "description": "Reads and enables pagination through a set of `ReportingRequirement`.", "args": [ { "name": "after", @@ -56495,7 +57568,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionStatusCondition", + "name": "ReportingRequirementCondition", "ofType": null }, "defaultValue": null @@ -56505,7 +57578,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionStatusFilter", + "name": "ReportingRequirementFilter", "ofType": null }, "defaultValue": null @@ -56552,7 +57625,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `RevisionStatus`.", + "description": "The method to use when ordering `ReportingRequirement`.", "type": { "kind": "LIST", "name": null, @@ -56561,7 +57634,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "RevisionStatusesOrderBy", + "name": "ReportingRequirementsOrderBy", "ofType": null } } @@ -56574,7 +57647,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserRevisionStatusesByProjectRevisionCreatedByAndRevisionStatusManyToManyConnection", + "name": "CifUserReportingRequirementsByMilestoneReportCreatedByAndReportingRequirementIdManyToManyConnection", "ofType": null } }, @@ -56582,8 +57655,8 @@ "deprecationReason": null }, { - "name": "revisionStatusesByProjectRevisionUpdatedByAndRevisionStatus", - "description": "Reads and enables pagination through a set of `RevisionStatus`.", + "name": "reportingRequirementsByMilestoneReportUpdatedByAndReportingRequirementId", + "description": "Reads and enables pagination through a set of `ReportingRequirement`.", "args": [ { "name": "after", @@ -56610,7 +57683,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionStatusCondition", + "name": "ReportingRequirementCondition", "ofType": null }, "defaultValue": null @@ -56620,7 +57693,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionStatusFilter", + "name": "ReportingRequirementFilter", "ofType": null }, "defaultValue": null @@ -56667,7 +57740,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `RevisionStatus`.", + "description": "The method to use when ordering `ReportingRequirement`.", "type": { "kind": "LIST", "name": null, @@ -56676,7 +57749,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "RevisionStatusesOrderBy", + "name": "ReportingRequirementsOrderBy", "ofType": null } } @@ -56689,7 +57762,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserRevisionStatusesByProjectRevisionUpdatedByAndRevisionStatusManyToManyConnection", + "name": "CifUserReportingRequirementsByMilestoneReportUpdatedByAndReportingRequirementIdManyToManyConnection", "ofType": null } }, @@ -56697,8 +57770,8 @@ "deprecationReason": null }, { - "name": "revisionStatusesByUpdatedBy", - "description": "Reads and enables pagination through a set of `RevisionStatus`.", + "name": "reportingRequirementsByPaymentArchivedByAndReportingRequirementId", + "description": "Reads and enables pagination through a set of `ReportingRequirement`.", "args": [ { "name": "after", @@ -56725,7 +57798,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionStatusCondition", + "name": "ReportingRequirementCondition", "ofType": null }, "defaultValue": null @@ -56735,7 +57808,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionStatusFilter", + "name": "ReportingRequirementFilter", "ofType": null }, "defaultValue": null @@ -56758,7 +57831,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -56782,7 +57855,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `RevisionStatus`.", + "description": "The method to use when ordering `ReportingRequirement`.", "type": { "kind": "LIST", "name": null, @@ -56791,7 +57864,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "RevisionStatusesOrderBy", + "name": "ReportingRequirementsOrderBy", "ofType": null } } @@ -56804,7 +57877,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RevisionStatusesConnection", + "name": "CifUserReportingRequirementsByPaymentArchivedByAndReportingRequirementIdManyToManyConnection", "ofType": null } }, @@ -56812,8 +57885,8 @@ "deprecationReason": null }, { - "name": "revisionTypesByArchivedBy", - "description": "Reads and enables pagination through a set of `RevisionType`.", + "name": "reportingRequirementsByPaymentCreatedByAndReportingRequirementId", + "description": "Reads and enables pagination through a set of `ReportingRequirement`.", "args": [ { "name": "after", @@ -56840,7 +57913,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionTypeCondition", + "name": "ReportingRequirementCondition", "ofType": null }, "defaultValue": null @@ -56850,7 +57923,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionTypeFilter", + "name": "ReportingRequirementFilter", "ofType": null }, "defaultValue": null @@ -56873,7 +57946,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -56897,7 +57970,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `RevisionType`.", + "description": "The method to use when ordering `ReportingRequirement`.", "type": { "kind": "LIST", "name": null, @@ -56906,7 +57979,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "RevisionTypesOrderBy", + "name": "ReportingRequirementsOrderBy", "ofType": null } } @@ -56919,7 +57992,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RevisionTypesConnection", + "name": "CifUserReportingRequirementsByPaymentCreatedByAndReportingRequirementIdManyToManyConnection", "ofType": null } }, @@ -56927,8 +58000,8 @@ "deprecationReason": null }, { - "name": "revisionTypesByCreatedBy", - "description": "Reads and enables pagination through a set of `RevisionType`.", + "name": "reportingRequirementsByPaymentUpdatedByAndReportingRequirementId", + "description": "Reads and enables pagination through a set of `ReportingRequirement`.", "args": [ { "name": "after", @@ -56955,7 +58028,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionTypeCondition", + "name": "ReportingRequirementCondition", "ofType": null }, "defaultValue": null @@ -56965,7 +58038,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionTypeFilter", + "name": "ReportingRequirementFilter", "ofType": null }, "defaultValue": null @@ -56988,7 +58061,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -57012,7 +58085,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `RevisionType`.", + "description": "The method to use when ordering `ReportingRequirement`.", "type": { "kind": "LIST", "name": null, @@ -57021,7 +58094,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "RevisionTypesOrderBy", + "name": "ReportingRequirementsOrderBy", "ofType": null } } @@ -57034,7 +58107,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RevisionTypesConnection", + "name": "CifUserReportingRequirementsByPaymentUpdatedByAndReportingRequirementIdManyToManyConnection", "ofType": null } }, @@ -57042,8 +58115,8 @@ "deprecationReason": null }, { - "name": "revisionTypesByProjectRevisionCreatedByAndRevisionType", - "description": "Reads and enables pagination through a set of `RevisionType`.", + "name": "reportingRequirementsByUpdatedBy", + "description": "Reads and enables pagination through a set of `ReportingRequirement`.", "args": [ { "name": "after", @@ -57070,7 +58143,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionTypeCondition", + "name": "ReportingRequirementCondition", "ofType": null }, "defaultValue": null @@ -57080,7 +58153,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionTypeFilter", + "name": "ReportingRequirementFilter", "ofType": null }, "defaultValue": null @@ -57103,7 +58176,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -57127,7 +58200,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `RevisionType`.", + "description": "The method to use when ordering `ReportingRequirement`.", "type": { "kind": "LIST", "name": null, @@ -57136,7 +58209,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "RevisionTypesOrderBy", + "name": "ReportingRequirementsOrderBy", "ofType": null } } @@ -57149,7 +58222,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserRevisionTypesByProjectRevisionCreatedByAndRevisionTypeManyToManyConnection", + "name": "ReportingRequirementsConnection", "ofType": null } }, @@ -57157,8 +58230,8 @@ "deprecationReason": null }, { - "name": "revisionTypesByProjectRevisionUpdatedByAndRevisionType", - "description": "Reads and enables pagination through a set of `RevisionType`.", + "name": "revisionStatusesByArchivedBy", + "description": "Reads and enables pagination through a set of `RevisionStatus`.", "args": [ { "name": "after", @@ -57185,7 +58258,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionTypeCondition", + "name": "RevisionStatusCondition", "ofType": null }, "defaultValue": null @@ -57195,7 +58268,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionTypeFilter", + "name": "RevisionStatusFilter", "ofType": null }, "defaultValue": null @@ -57218,7 +58291,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -57242,7 +58315,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `RevisionType`.", + "description": "The method to use when ordering `RevisionStatus`.", "type": { "kind": "LIST", "name": null, @@ -57251,7 +58324,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "RevisionTypesOrderBy", + "name": "RevisionStatusesOrderBy", "ofType": null } } @@ -57264,7 +58337,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserRevisionTypesByProjectRevisionUpdatedByAndRevisionTypeManyToManyConnection", + "name": "RevisionStatusesConnection", "ofType": null } }, @@ -57272,8 +58345,8 @@ "deprecationReason": null }, { - "name": "revisionTypesByUpdatedBy", - "description": "Reads and enables pagination through a set of `RevisionType`.", + "name": "revisionStatusesByCreatedBy", + "description": "Reads and enables pagination through a set of `RevisionStatus`.", "args": [ { "name": "after", @@ -57300,7 +58373,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionTypeCondition", + "name": "RevisionStatusCondition", "ofType": null }, "defaultValue": null @@ -57310,7 +58383,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionTypeFilter", + "name": "RevisionStatusFilter", "ofType": null }, "defaultValue": null @@ -57357,7 +58430,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `RevisionType`.", + "description": "The method to use when ordering `RevisionStatus`.", "type": { "kind": "LIST", "name": null, @@ -57366,7 +58439,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "RevisionTypesOrderBy", + "name": "RevisionStatusesOrderBy", "ofType": null } } @@ -57379,23 +58452,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RevisionTypesConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rowId", - "description": "Unique ID for the user", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", + "name": "RevisionStatusesConnection", "ofType": null } }, @@ -57403,8 +58460,8 @@ "deprecationReason": null }, { - "name": "sectorsByArchivedBy", - "description": "Reads and enables pagination through a set of `Sector`.", + "name": "revisionStatusesByProjectRevisionCreatedByAndRevisionStatus", + "description": "Reads and enables pagination through a set of `RevisionStatus`.", "args": [ { "name": "after", @@ -57431,7 +58488,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "SectorCondition", + "name": "RevisionStatusCondition", "ofType": null }, "defaultValue": null @@ -57441,7 +58498,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "SectorFilter", + "name": "RevisionStatusFilter", "ofType": null }, "defaultValue": null @@ -57464,7 +58521,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -57488,7 +58545,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Sector`.", + "description": "The method to use when ordering `RevisionStatus`.", "type": { "kind": "LIST", "name": null, @@ -57497,7 +58554,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "SectorsOrderBy", + "name": "RevisionStatusesOrderBy", "ofType": null } } @@ -57510,7 +58567,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SectorsConnection", + "name": "CifUserRevisionStatusesByProjectRevisionCreatedByAndRevisionStatusManyToManyConnection", "ofType": null } }, @@ -57518,8 +58575,8 @@ "deprecationReason": null }, { - "name": "sectorsByCreatedBy", - "description": "Reads and enables pagination through a set of `Sector`.", + "name": "revisionStatusesByProjectRevisionUpdatedByAndRevisionStatus", + "description": "Reads and enables pagination through a set of `RevisionStatus`.", "args": [ { "name": "after", @@ -57546,7 +58603,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "SectorCondition", + "name": "RevisionStatusCondition", "ofType": null }, "defaultValue": null @@ -57556,7 +58613,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "SectorFilter", + "name": "RevisionStatusFilter", "ofType": null }, "defaultValue": null @@ -57579,7 +58636,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -57603,7 +58660,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Sector`.", + "description": "The method to use when ordering `RevisionStatus`.", "type": { "kind": "LIST", "name": null, @@ -57612,7 +58669,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "SectorsOrderBy", + "name": "RevisionStatusesOrderBy", "ofType": null } } @@ -57625,7 +58682,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SectorsConnection", + "name": "CifUserRevisionStatusesByProjectRevisionUpdatedByAndRevisionStatusManyToManyConnection", "ofType": null } }, @@ -57633,8 +58690,8 @@ "deprecationReason": null }, { - "name": "sectorsByProjectArchivedByAndSectorName", - "description": "Reads and enables pagination through a set of `Sector`.", + "name": "revisionStatusesByUpdatedBy", + "description": "Reads and enables pagination through a set of `RevisionStatus`.", "args": [ { "name": "after", @@ -57661,7 +58718,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "SectorCondition", + "name": "RevisionStatusCondition", "ofType": null }, "defaultValue": null @@ -57671,7 +58728,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "SectorFilter", + "name": "RevisionStatusFilter", "ofType": null }, "defaultValue": null @@ -57694,7 +58751,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -57718,7 +58775,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Sector`.", + "description": "The method to use when ordering `RevisionStatus`.", "type": { "kind": "LIST", "name": null, @@ -57727,7 +58784,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "SectorsOrderBy", + "name": "RevisionStatusesOrderBy", "ofType": null } } @@ -57740,7 +58797,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserSectorsByProjectArchivedByAndSectorNameManyToManyConnection", + "name": "RevisionStatusesConnection", "ofType": null } }, @@ -57748,8 +58805,8 @@ "deprecationReason": null }, { - "name": "sectorsByProjectCreatedByAndSectorName", - "description": "Reads and enables pagination through a set of `Sector`.", + "name": "revisionTypesByArchivedBy", + "description": "Reads and enables pagination through a set of `RevisionType`.", "args": [ { "name": "after", @@ -57776,7 +58833,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "SectorCondition", + "name": "RevisionTypeCondition", "ofType": null }, "defaultValue": null @@ -57786,7 +58843,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "SectorFilter", + "name": "RevisionTypeFilter", "ofType": null }, "defaultValue": null @@ -57809,7 +58866,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -57833,7 +58890,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Sector`.", + "description": "The method to use when ordering `RevisionType`.", "type": { "kind": "LIST", "name": null, @@ -57842,7 +58899,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "SectorsOrderBy", + "name": "RevisionTypesOrderBy", "ofType": null } } @@ -57855,7 +58912,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserSectorsByProjectCreatedByAndSectorNameManyToManyConnection", + "name": "RevisionTypesConnection", "ofType": null } }, @@ -57863,8 +58920,8 @@ "deprecationReason": null }, { - "name": "sectorsByProjectUpdatedByAndSectorName", - "description": "Reads and enables pagination through a set of `Sector`.", + "name": "revisionTypesByCreatedBy", + "description": "Reads and enables pagination through a set of `RevisionType`.", "args": [ { "name": "after", @@ -57891,7 +58948,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "SectorCondition", + "name": "RevisionTypeCondition", "ofType": null }, "defaultValue": null @@ -57901,7 +58958,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "SectorFilter", + "name": "RevisionTypeFilter", "ofType": null }, "defaultValue": null @@ -57924,7 +58981,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -57948,7 +59005,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Sector`.", + "description": "The method to use when ordering `RevisionType`.", "type": { "kind": "LIST", "name": null, @@ -57957,7 +59014,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "SectorsOrderBy", + "name": "RevisionTypesOrderBy", "ofType": null } } @@ -57970,7 +59027,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserSectorsByProjectUpdatedByAndSectorNameManyToManyConnection", + "name": "RevisionTypesConnection", "ofType": null } }, @@ -57978,8 +59035,8 @@ "deprecationReason": null }, { - "name": "sectorsByUpdatedBy", - "description": "Reads and enables pagination through a set of `Sector`.", + "name": "revisionTypesByProjectRevisionCreatedByAndRevisionType", + "description": "Reads and enables pagination through a set of `RevisionType`.", "args": [ { "name": "after", @@ -58006,7 +59063,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "SectorCondition", + "name": "RevisionTypeCondition", "ofType": null }, "defaultValue": null @@ -58016,7 +59073,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "SectorFilter", + "name": "RevisionTypeFilter", "ofType": null }, "defaultValue": null @@ -58039,7 +59096,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -58063,7 +59120,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Sector`.", + "description": "The method to use when ordering `RevisionType`.", "type": { "kind": "LIST", "name": null, @@ -58072,7 +59129,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "SectorsOrderBy", + "name": "RevisionTypesOrderBy", "ofType": null } } @@ -58085,39 +59142,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SectorsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sessionSub", - "description": "Universally Unique ID for the user, defined by the single sign-on provider", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": "updated at timestamp", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Datetime", + "name": "CifUserRevisionTypesByProjectRevisionCreatedByAndRevisionTypeManyToManyConnection", "ofType": null } }, @@ -58125,88 +59150,114 @@ "deprecationReason": null }, { - "name": "updatedBy", - "description": "updated by user id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CifUserAdditionalFundingSourceStatusesByAdditionalFundingSourceArchivedByAndStatusManyToManyConnection", - "description": "A connection to a list of `AdditionalFundingSourceStatus` values, with data from `AdditionalFundingSource`.", - "fields": [ - { - "name": "edges", - "description": "A list of edges which contains the `AdditionalFundingSourceStatus`, info from the `AdditionalFundingSource`, and the cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", + "name": "revisionTypesByProjectRevisionUpdatedByAndRevisionType", + "description": "Reads and enables pagination through a set of `RevisionType`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "RevisionTypeCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "RevisionTypeFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `RevisionType`.", + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "CifUserAdditionalFundingSourceStatusesByAdditionalFundingSourceArchivedByAndStatusManyToManyEdge", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "RevisionTypesOrderBy", + "ofType": null + } } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `AdditionalFundingSourceStatus` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AdditionalFundingSourceStatus", - "ofType": null - } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "PageInfo", + "name": "CifUserRevisionTypesByProjectRevisionUpdatedByAndRevisionTypeManyToManyConnection", "ofType": null } }, @@ -58214,35 +59265,8 @@ "deprecationReason": null }, { - "name": "totalCount", - "description": "The count of *all* `AdditionalFundingSourceStatus` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CifUserAdditionalFundingSourceStatusesByAdditionalFundingSourceArchivedByAndStatusManyToManyEdge", - "description": "A `AdditionalFundingSourceStatus` edge in the connection, with data from `AdditionalFundingSource`.", - "fields": [ - { - "name": "additionalFundingSourcesByStatus", - "description": "Reads and enables pagination through a set of `AdditionalFundingSource`.", + "name": "revisionTypesByUpdatedBy", + "description": "Reads and enables pagination through a set of `RevisionType`.", "args": [ { "name": "after", @@ -58269,7 +59293,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceCondition", + "name": "RevisionTypeCondition", "ofType": null }, "defaultValue": null @@ -58279,7 +59303,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceFilter", + "name": "RevisionTypeFilter", "ofType": null }, "defaultValue": null @@ -58302,7 +59326,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -58326,7 +59350,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `AdditionalFundingSource`.", + "description": "The method to use when ordering `RevisionType`.", "type": { "kind": "LIST", "name": null, @@ -58335,7 +59359,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AdditionalFundingSourcesOrderBy", + "name": "RevisionTypesOrderBy", "ofType": null } } @@ -58348,7 +59372,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AdditionalFundingSourcesConnection", + "name": "RevisionTypesConnection", "ofType": null } }, @@ -58356,24 +59380,750 @@ "deprecationReason": null }, { - "name": "cursor", - "description": "A cursor for use in pagination.", + "name": "rowId", + "description": "Unique ID for the user", "args": [], "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "node", - "description": "The `AdditionalFundingSourceStatus` at the end of the edge.", + "name": "sectorsByArchivedBy", + "description": "Reads and enables pagination through a set of `Sector`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SectorCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SectorFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "INHERIT" + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `Sector`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SectorsOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SectorsConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sectorsByCreatedBy", + "description": "Reads and enables pagination through a set of `Sector`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SectorCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SectorFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "INHERIT" + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `Sector`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SectorsOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SectorsConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sectorsByProjectArchivedByAndSectorName", + "description": "Reads and enables pagination through a set of `Sector`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SectorCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SectorFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `Sector`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SectorsOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CifUserSectorsByProjectArchivedByAndSectorNameManyToManyConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sectorsByProjectCreatedByAndSectorName", + "description": "Reads and enables pagination through a set of `Sector`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SectorCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SectorFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `Sector`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SectorsOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CifUserSectorsByProjectCreatedByAndSectorNameManyToManyConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sectorsByProjectUpdatedByAndSectorName", + "description": "Reads and enables pagination through a set of `Sector`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SectorCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SectorFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `Sector`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SectorsOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CifUserSectorsByProjectUpdatedByAndSectorNameManyToManyConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sectorsByUpdatedBy", + "description": "Reads and enables pagination through a set of `Sector`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SectorCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SectorFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "INHERIT" + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `Sector`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SectorsOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SectorsConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sessionSub", + "description": "Universally Unique ID for the user, defined by the single sign-on provider", "args": [], "type": { - "kind": "OBJECT", - "name": "AdditionalFundingSourceStatus", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "updated at timestamp", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedBy", + "description": "updated by user id", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", "ofType": null }, "isDeprecated": false, @@ -58381,13 +60131,19 @@ } ], "inputFields": null, - "interfaces": [], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "CifUserAdditionalFundingSourceStatusesByAdditionalFundingSourceCreatedByAndStatusManyToManyConnection", + "name": "CifUserAdditionalFundingSourceStatusesByAdditionalFundingSourceArchivedByAndStatusManyToManyConnection", "description": "A connection to a list of `AdditionalFundingSourceStatus` values, with data from `AdditionalFundingSource`.", "fields": [ { @@ -58405,7 +60161,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserAdditionalFundingSourceStatusesByAdditionalFundingSourceCreatedByAndStatusManyToManyEdge", + "name": "CifUserAdditionalFundingSourceStatusesByAdditionalFundingSourceArchivedByAndStatusManyToManyEdge", "ofType": null } } @@ -58474,7 +60230,7 @@ }, { "kind": "OBJECT", - "name": "CifUserAdditionalFundingSourceStatusesByAdditionalFundingSourceCreatedByAndStatusManyToManyEdge", + "name": "CifUserAdditionalFundingSourceStatusesByAdditionalFundingSourceArchivedByAndStatusManyToManyEdge", "description": "A `AdditionalFundingSourceStatus` edge in the connection, with data from `AdditionalFundingSource`.", "fields": [ { @@ -58624,7 +60380,7 @@ }, { "kind": "OBJECT", - "name": "CifUserAdditionalFundingSourceStatusesByAdditionalFundingSourceUpdatedByAndStatusManyToManyConnection", + "name": "CifUserAdditionalFundingSourceStatusesByAdditionalFundingSourceCreatedByAndStatusManyToManyConnection", "description": "A connection to a list of `AdditionalFundingSourceStatus` values, with data from `AdditionalFundingSource`.", "fields": [ { @@ -58642,7 +60398,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserAdditionalFundingSourceStatusesByAdditionalFundingSourceUpdatedByAndStatusManyToManyEdge", + "name": "CifUserAdditionalFundingSourceStatusesByAdditionalFundingSourceCreatedByAndStatusManyToManyEdge", "ofType": null } } @@ -58711,7 +60467,7 @@ }, { "kind": "OBJECT", - "name": "CifUserAdditionalFundingSourceStatusesByAdditionalFundingSourceUpdatedByAndStatusManyToManyEdge", + "name": "CifUserAdditionalFundingSourceStatusesByAdditionalFundingSourceCreatedByAndStatusManyToManyEdge", "description": "A `AdditionalFundingSourceStatus` edge in the connection, with data from `AdditionalFundingSource`.", "fields": [ { @@ -58861,12 +60617,12 @@ }, { "kind": "OBJECT", - "name": "CifUserAmendmentTypesByProjectRevisionAmendmentTypeArchivedByAndAmendmentTypeManyToManyConnection", - "description": "A connection to a list of `AmendmentType` values, with data from `ProjectRevisionAmendmentType`.", + "name": "CifUserAdditionalFundingSourceStatusesByAdditionalFundingSourceUpdatedByAndStatusManyToManyConnection", + "description": "A connection to a list of `AdditionalFundingSourceStatus` values, with data from `AdditionalFundingSource`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `AmendmentType`, info from the `ProjectRevisionAmendmentType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `AdditionalFundingSourceStatus`, info from the `AdditionalFundingSource`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -58879,7 +60635,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserAmendmentTypesByProjectRevisionAmendmentTypeArchivedByAndAmendmentTypeManyToManyEdge", + "name": "CifUserAdditionalFundingSourceStatusesByAdditionalFundingSourceUpdatedByAndStatusManyToManyEdge", "ofType": null } } @@ -58890,7 +60646,7 @@ }, { "name": "nodes", - "description": "A list of `AmendmentType` objects.", + "description": "A list of `AdditionalFundingSourceStatus` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -58900,7 +60656,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AmendmentType", + "name": "AdditionalFundingSourceStatus", "ofType": null } } @@ -58926,7 +60682,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `AmendmentType` you could get from the connection.", + "description": "The count of *all* `AdditionalFundingSourceStatus` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -58948,36 +60704,12 @@ }, { "kind": "OBJECT", - "name": "CifUserAmendmentTypesByProjectRevisionAmendmentTypeArchivedByAndAmendmentTypeManyToManyEdge", - "description": "A `AmendmentType` edge in the connection, with data from `ProjectRevisionAmendmentType`.", + "name": "CifUserAdditionalFundingSourceStatusesByAdditionalFundingSourceUpdatedByAndStatusManyToManyEdge", + "description": "A `AdditionalFundingSourceStatus` edge in the connection, with data from `AdditionalFundingSource`.", "fields": [ { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `AmendmentType` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "AmendmentType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectRevisionAmendmentTypesByAmendmentType", - "description": "Reads and enables pagination through a set of `ProjectRevisionAmendmentType`.", + "name": "additionalFundingSourcesByStatus", + "description": "Reads and enables pagination through a set of `AdditionalFundingSource`.", "args": [ { "name": "after", @@ -59004,7 +60736,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionAmendmentTypeCondition", + "name": "AdditionalFundingSourceCondition", "ofType": null }, "defaultValue": null @@ -59014,7 +60746,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionAmendmentTypeFilter", + "name": "AdditionalFundingSourceFilter", "ofType": null }, "defaultValue": null @@ -59061,7 +60793,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectRevisionAmendmentType`.", + "description": "The method to use when ordering `AdditionalFundingSource`.", "type": { "kind": "LIST", "name": null, @@ -59070,7 +60802,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectRevisionAmendmentTypesOrderBy", + "name": "AdditionalFundingSourcesOrderBy", "ofType": null } } @@ -59083,12 +60815,36 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectRevisionAmendmentTypesConnection", + "name": "AdditionalFundingSourcesConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": "The `AdditionalFundingSourceStatus` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "AdditionalFundingSourceStatus", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -59098,7 +60854,7 @@ }, { "kind": "OBJECT", - "name": "CifUserAmendmentTypesByProjectRevisionAmendmentTypeCreatedByAndAmendmentTypeManyToManyConnection", + "name": "CifUserAmendmentTypesByProjectRevisionAmendmentTypeArchivedByAndAmendmentTypeManyToManyConnection", "description": "A connection to a list of `AmendmentType` values, with data from `ProjectRevisionAmendmentType`.", "fields": [ { @@ -59116,7 +60872,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserAmendmentTypesByProjectRevisionAmendmentTypeCreatedByAndAmendmentTypeManyToManyEdge", + "name": "CifUserAmendmentTypesByProjectRevisionAmendmentTypeArchivedByAndAmendmentTypeManyToManyEdge", "ofType": null } } @@ -59185,7 +60941,7 @@ }, { "kind": "OBJECT", - "name": "CifUserAmendmentTypesByProjectRevisionAmendmentTypeCreatedByAndAmendmentTypeManyToManyEdge", + "name": "CifUserAmendmentTypesByProjectRevisionAmendmentTypeArchivedByAndAmendmentTypeManyToManyEdge", "description": "A `AmendmentType` edge in the connection, with data from `ProjectRevisionAmendmentType`.", "fields": [ { @@ -59335,7 +61091,7 @@ }, { "kind": "OBJECT", - "name": "CifUserAmendmentTypesByProjectRevisionAmendmentTypeUpdatedByAndAmendmentTypeManyToManyConnection", + "name": "CifUserAmendmentTypesByProjectRevisionAmendmentTypeCreatedByAndAmendmentTypeManyToManyConnection", "description": "A connection to a list of `AmendmentType` values, with data from `ProjectRevisionAmendmentType`.", "fields": [ { @@ -59353,7 +61109,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserAmendmentTypesByProjectRevisionAmendmentTypeUpdatedByAndAmendmentTypeManyToManyEdge", + "name": "CifUserAmendmentTypesByProjectRevisionAmendmentTypeCreatedByAndAmendmentTypeManyToManyEdge", "ofType": null } } @@ -59422,7 +61178,7 @@ }, { "kind": "OBJECT", - "name": "CifUserAmendmentTypesByProjectRevisionAmendmentTypeUpdatedByAndAmendmentTypeManyToManyEdge", + "name": "CifUserAmendmentTypesByProjectRevisionAmendmentTypeCreatedByAndAmendmentTypeManyToManyEdge", "description": "A `AmendmentType` edge in the connection, with data from `ProjectRevisionAmendmentType`.", "fields": [ { @@ -59572,12 +61328,12 @@ }, { "kind": "OBJECT", - "name": "CifUserChangeStatusesByFormChangeCreatedByAndChangeStatusManyToManyConnection", - "description": "A connection to a list of `ChangeStatus` values, with data from `FormChange`.", + "name": "CifUserAmendmentTypesByProjectRevisionAmendmentTypeUpdatedByAndAmendmentTypeManyToManyConnection", + "description": "A connection to a list of `AmendmentType` values, with data from `ProjectRevisionAmendmentType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `ChangeStatus`, info from the `FormChange`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `AmendmentType`, info from the `ProjectRevisionAmendmentType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -59590,7 +61346,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserChangeStatusesByFormChangeCreatedByAndChangeStatusManyToManyEdge", + "name": "CifUserAmendmentTypesByProjectRevisionAmendmentTypeUpdatedByAndAmendmentTypeManyToManyEdge", "ofType": null } } @@ -59601,7 +61357,7 @@ }, { "name": "nodes", - "description": "A list of `ChangeStatus` objects.", + "description": "A list of `AmendmentType` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -59611,7 +61367,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ChangeStatus", + "name": "AmendmentType", "ofType": null } } @@ -59637,7 +61393,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `ChangeStatus` you could get from the connection.", + "description": "The count of *all* `AmendmentType` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -59659,8 +61415,8 @@ }, { "kind": "OBJECT", - "name": "CifUserChangeStatusesByFormChangeCreatedByAndChangeStatusManyToManyEdge", - "description": "A `ChangeStatus` edge in the connection, with data from `FormChange`.", + "name": "CifUserAmendmentTypesByProjectRevisionAmendmentTypeUpdatedByAndAmendmentTypeManyToManyEdge", + "description": "A `AmendmentType` edge in the connection, with data from `ProjectRevisionAmendmentType`.", "fields": [ { "name": "cursor", @@ -59675,8 +61431,20 @@ "deprecationReason": null }, { - "name": "formChangesByChangeStatus", - "description": "Reads and enables pagination through a set of `FormChange`.", + "name": "node", + "description": "The `AmendmentType` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "AmendmentType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectRevisionAmendmentTypesByAmendmentType", + "description": "Reads and enables pagination through a set of `ProjectRevisionAmendmentType`.", "args": [ { "name": "after", @@ -59703,7 +61471,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormChangeCondition", + "name": "ProjectRevisionAmendmentTypeCondition", "ofType": null }, "defaultValue": null @@ -59713,7 +61481,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormChangeFilter", + "name": "ProjectRevisionAmendmentTypeFilter", "ofType": null }, "defaultValue": null @@ -59728,6 +61496,16 @@ }, "defaultValue": null }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -59750,7 +61528,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FormChange`.", + "description": "The method to use when ordering `ProjectRevisionAmendmentType`.", "type": { "kind": "LIST", "name": null, @@ -59759,7 +61537,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FormChangesOrderBy", + "name": "ProjectRevisionAmendmentTypesOrderBy", "ofType": null } } @@ -59772,24 +61550,12 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FormChangesConnection", + "name": "ProjectRevisionAmendmentTypesConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "node", - "description": "The `ChangeStatus` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ChangeStatus", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null } ], "inputFields": null, @@ -59799,12 +61565,12 @@ }, { "kind": "OBJECT", - "name": "CifUserChangeStatusesByFormChangeUpdatedByAndChangeStatusManyToManyConnection", - "description": "A connection to a list of `ChangeStatus` values, with data from `FormChange`.", + "name": "CifUserAttachmentsByProjectAttachmentArchivedByAndAttachmentIdManyToManyConnection", + "description": "A connection to a list of `Attachment` values, with data from `ProjectAttachment`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `ChangeStatus`, info from the `FormChange`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `Attachment`, info from the `ProjectAttachment`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -59817,7 +61583,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserChangeStatusesByFormChangeUpdatedByAndChangeStatusManyToManyEdge", + "name": "CifUserAttachmentsByProjectAttachmentArchivedByAndAttachmentIdManyToManyEdge", "ofType": null } } @@ -59828,7 +61594,7 @@ }, { "name": "nodes", - "description": "A list of `ChangeStatus` objects.", + "description": "A list of `Attachment` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -59838,7 +61604,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ChangeStatus", + "name": "Attachment", "ofType": null } } @@ -59864,7 +61630,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `ChangeStatus` you could get from the connection.", + "description": "The count of *all* `Attachment` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -59886,8 +61652,8 @@ }, { "kind": "OBJECT", - "name": "CifUserChangeStatusesByFormChangeUpdatedByAndChangeStatusManyToManyEdge", - "description": "A `ChangeStatus` edge in the connection, with data from `FormChange`.", + "name": "CifUserAttachmentsByProjectAttachmentArchivedByAndAttachmentIdManyToManyEdge", + "description": "A `Attachment` edge in the connection, with data from `ProjectAttachment`.", "fields": [ { "name": "cursor", @@ -59902,8 +61668,20 @@ "deprecationReason": null }, { - "name": "formChangesByChangeStatus", - "description": "Reads and enables pagination through a set of `FormChange`.", + "name": "node", + "description": "The `Attachment` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Attachment", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectAttachmentsByAttachmentId", + "description": "Reads and enables pagination through a set of `ProjectAttachment`.", "args": [ { "name": "after", @@ -59930,7 +61708,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormChangeCondition", + "name": "ProjectAttachmentCondition", "ofType": null }, "defaultValue": null @@ -59940,7 +61718,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormChangeFilter", + "name": "ProjectAttachmentFilter", "ofType": null }, "defaultValue": null @@ -59955,6 +61733,16 @@ }, "defaultValue": null }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -59977,7 +61765,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FormChange`.", + "description": "The method to use when ordering `ProjectAttachment`.", "type": { "kind": "LIST", "name": null, @@ -59986,7 +61774,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FormChangesOrderBy", + "name": "ProjectAttachmentsOrderBy", "ofType": null } } @@ -59999,24 +61787,12 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FormChangesConnection", + "name": "ProjectAttachmentsConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "node", - "description": "The `ChangeStatus` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ChangeStatus", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null } ], "inputFields": null, @@ -60026,12 +61802,12 @@ }, { "kind": "OBJECT", - "name": "CifUserChangeStatusesByProjectRevisionCreatedByAndChangeStatusManyToManyConnection", - "description": "A connection to a list of `ChangeStatus` values, with data from `ProjectRevision`.", + "name": "CifUserAttachmentsByProjectAttachmentCreatedByAndAttachmentIdManyToManyConnection", + "description": "A connection to a list of `Attachment` values, with data from `ProjectAttachment`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `ChangeStatus`, info from the `ProjectRevision`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `Attachment`, info from the `ProjectAttachment`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -60044,7 +61820,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserChangeStatusesByProjectRevisionCreatedByAndChangeStatusManyToManyEdge", + "name": "CifUserAttachmentsByProjectAttachmentCreatedByAndAttachmentIdManyToManyEdge", "ofType": null } } @@ -60055,7 +61831,7 @@ }, { "name": "nodes", - "description": "A list of `ChangeStatus` objects.", + "description": "A list of `Attachment` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -60065,7 +61841,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ChangeStatus", + "name": "Attachment", "ofType": null } } @@ -60091,7 +61867,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `ChangeStatus` you could get from the connection.", + "description": "The count of *all* `Attachment` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -60113,8 +61889,8 @@ }, { "kind": "OBJECT", - "name": "CifUserChangeStatusesByProjectRevisionCreatedByAndChangeStatusManyToManyEdge", - "description": "A `ChangeStatus` edge in the connection, with data from `ProjectRevision`.", + "name": "CifUserAttachmentsByProjectAttachmentCreatedByAndAttachmentIdManyToManyEdge", + "description": "A `Attachment` edge in the connection, with data from `ProjectAttachment`.", "fields": [ { "name": "cursor", @@ -60130,19 +61906,19 @@ }, { "name": "node", - "description": "The `ChangeStatus` at the end of the edge.", + "description": "The `Attachment` at the end of the edge.", "args": [], "type": { "kind": "OBJECT", - "name": "ChangeStatus", + "name": "Attachment", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectRevisionsByChangeStatus", - "description": "Reads and enables pagination through a set of `ProjectRevision`.", + "name": "projectAttachmentsByAttachmentId", + "description": "Reads and enables pagination through a set of `ProjectAttachment`.", "args": [ { "name": "after", @@ -60169,7 +61945,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionCondition", + "name": "ProjectAttachmentCondition", "ofType": null }, "defaultValue": null @@ -60179,7 +61955,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionFilter", + "name": "ProjectAttachmentFilter", "ofType": null }, "defaultValue": null @@ -60194,6 +61970,16 @@ }, "defaultValue": null }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -60216,7 +62002,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectRevision`.", + "description": "The method to use when ordering `ProjectAttachment`.", "type": { "kind": "LIST", "name": null, @@ -60225,7 +62011,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectRevisionsOrderBy", + "name": "ProjectAttachmentsOrderBy", "ofType": null } } @@ -60238,7 +62024,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectRevisionsConnection", + "name": "ProjectAttachmentsConnection", "ofType": null } }, @@ -60253,12 +62039,12 @@ }, { "kind": "OBJECT", - "name": "CifUserChangeStatusesByProjectRevisionUpdatedByAndChangeStatusManyToManyConnection", - "description": "A connection to a list of `ChangeStatus` values, with data from `ProjectRevision`.", + "name": "CifUserAttachmentsByProjectAttachmentUpdatedByAndAttachmentIdManyToManyConnection", + "description": "A connection to a list of `Attachment` values, with data from `ProjectAttachment`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `ChangeStatus`, info from the `ProjectRevision`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `Attachment`, info from the `ProjectAttachment`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -60271,7 +62057,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserChangeStatusesByProjectRevisionUpdatedByAndChangeStatusManyToManyEdge", + "name": "CifUserAttachmentsByProjectAttachmentUpdatedByAndAttachmentIdManyToManyEdge", "ofType": null } } @@ -60282,7 +62068,7 @@ }, { "name": "nodes", - "description": "A list of `ChangeStatus` objects.", + "description": "A list of `Attachment` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -60292,7 +62078,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ChangeStatus", + "name": "Attachment", "ofType": null } } @@ -60318,7 +62104,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `ChangeStatus` you could get from the connection.", + "description": "The count of *all* `Attachment` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -60340,8 +62126,8 @@ }, { "kind": "OBJECT", - "name": "CifUserChangeStatusesByProjectRevisionUpdatedByAndChangeStatusManyToManyEdge", - "description": "A `ChangeStatus` edge in the connection, with data from `ProjectRevision`.", + "name": "CifUserAttachmentsByProjectAttachmentUpdatedByAndAttachmentIdManyToManyEdge", + "description": "A `Attachment` edge in the connection, with data from `ProjectAttachment`.", "fields": [ { "name": "cursor", @@ -60357,19 +62143,19 @@ }, { "name": "node", - "description": "The `ChangeStatus` at the end of the edge.", + "description": "The `Attachment` at the end of the edge.", "args": [], "type": { "kind": "OBJECT", - "name": "ChangeStatus", + "name": "Attachment", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectRevisionsByChangeStatus", - "description": "Reads and enables pagination through a set of `ProjectRevision`.", + "name": "projectAttachmentsByAttachmentId", + "description": "Reads and enables pagination through a set of `ProjectAttachment`.", "args": [ { "name": "after", @@ -60396,7 +62182,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionCondition", + "name": "ProjectAttachmentCondition", "ofType": null }, "defaultValue": null @@ -60406,7 +62192,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionFilter", + "name": "ProjectAttachmentFilter", "ofType": null }, "defaultValue": null @@ -60421,6 +62207,16 @@ }, "defaultValue": null }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -60443,7 +62239,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectRevision`.", + "description": "The method to use when ordering `ProjectAttachment`.", "type": { "kind": "LIST", "name": null, @@ -60452,7 +62248,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectRevisionsOrderBy", + "name": "ProjectAttachmentsOrderBy", "ofType": null } } @@ -60465,7 +62261,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectRevisionsConnection", + "name": "ProjectAttachmentsConnection", "ofType": null } }, @@ -60480,12 +62276,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceArchivedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `AdditionalFundingSource`.", + "name": "CifUserChangeStatusesByFormChangeCreatedByAndChangeStatusManyToManyConnection", + "description": "A connection to a list of `ChangeStatus` values, with data from `FormChange`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `AdditionalFundingSource`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `ChangeStatus`, info from the `FormChange`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -60498,7 +62294,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserChangeStatusesByFormChangeCreatedByAndChangeStatusManyToManyEdge", "ofType": null } } @@ -60509,7 +62305,7 @@ }, { "name": "nodes", - "description": "A list of `CifUser` objects.", + "description": "A list of `ChangeStatus` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -60519,7 +62315,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUser", + "name": "ChangeStatus", "ofType": null } } @@ -60545,7 +62341,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `CifUser` you could get from the connection.", + "description": "The count of *all* `ChangeStatus` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -60567,12 +62363,24 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceArchivedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `AdditionalFundingSource`.", + "name": "CifUserChangeStatusesByFormChangeCreatedByAndChangeStatusManyToManyEdge", + "description": "A `ChangeStatus` edge in the connection, with data from `FormChange`.", "fields": [ { - "name": "additionalFundingSourcesByCreatedBy", - "description": "Reads and enables pagination through a set of `AdditionalFundingSource`.", + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "formChangesByChangeStatus", + "description": "Reads and enables pagination through a set of `FormChange`.", "args": [ { "name": "after", @@ -60599,7 +62407,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceCondition", + "name": "FormChangeCondition", "ofType": null }, "defaultValue": null @@ -60609,7 +62417,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceFilter", + "name": "FormChangeFilter", "ofType": null }, "defaultValue": null @@ -60624,16 +62432,6 @@ }, "defaultValue": null }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -60656,7 +62454,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `AdditionalFundingSource`.", + "description": "The method to use when ordering `FormChange`.", "type": { "kind": "LIST", "name": null, @@ -60665,7 +62463,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AdditionalFundingSourcesOrderBy", + "name": "FormChangesOrderBy", "ofType": null } } @@ -60678,32 +62476,20 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AdditionalFundingSourcesConnection", + "name": "FormChangesConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "node", - "description": "The `CifUser` at the end of the edge.", + "description": "The `ChangeStatus` at the end of the edge.", "args": [], "type": { "kind": "OBJECT", - "name": "CifUser", + "name": "ChangeStatus", "ofType": null }, "isDeprecated": false, @@ -60717,12 +62503,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceArchivedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `AdditionalFundingSource`.", + "name": "CifUserChangeStatusesByFormChangeUpdatedByAndChangeStatusManyToManyConnection", + "description": "A connection to a list of `ChangeStatus` values, with data from `FormChange`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `AdditionalFundingSource`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `ChangeStatus`, info from the `FormChange`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -60735,7 +62521,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserChangeStatusesByFormChangeUpdatedByAndChangeStatusManyToManyEdge", "ofType": null } } @@ -60746,7 +62532,7 @@ }, { "name": "nodes", - "description": "A list of `CifUser` objects.", + "description": "A list of `ChangeStatus` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -60756,7 +62542,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUser", + "name": "ChangeStatus", "ofType": null } } @@ -60782,7 +62568,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `CifUser` you could get from the connection.", + "description": "The count of *all* `ChangeStatus` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -60804,12 +62590,24 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceArchivedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `AdditionalFundingSource`.", + "name": "CifUserChangeStatusesByFormChangeUpdatedByAndChangeStatusManyToManyEdge", + "description": "A `ChangeStatus` edge in the connection, with data from `FormChange`.", "fields": [ { - "name": "additionalFundingSourcesByUpdatedBy", - "description": "Reads and enables pagination through a set of `AdditionalFundingSource`.", + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "formChangesByChangeStatus", + "description": "Reads and enables pagination through a set of `FormChange`.", "args": [ { "name": "after", @@ -60836,7 +62634,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceCondition", + "name": "FormChangeCondition", "ofType": null }, "defaultValue": null @@ -60846,7 +62644,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceFilter", + "name": "FormChangeFilter", "ofType": null }, "defaultValue": null @@ -60861,16 +62659,6 @@ }, "defaultValue": null }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -60893,7 +62681,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `AdditionalFundingSource`.", + "description": "The method to use when ordering `FormChange`.", "type": { "kind": "LIST", "name": null, @@ -60902,7 +62690,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AdditionalFundingSourcesOrderBy", + "name": "FormChangesOrderBy", "ofType": null } } @@ -60915,32 +62703,20 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AdditionalFundingSourcesConnection", + "name": "FormChangesConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "node", - "description": "The `CifUser` at the end of the edge.", + "description": "The `ChangeStatus` at the end of the edge.", "args": [], "type": { "kind": "OBJECT", - "name": "CifUser", + "name": "ChangeStatus", "ofType": null }, "isDeprecated": false, @@ -60954,12 +62730,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceCreatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `AdditionalFundingSource`.", + "name": "CifUserChangeStatusesByProjectRevisionCreatedByAndChangeStatusManyToManyConnection", + "description": "A connection to a list of `ChangeStatus` values, with data from `ProjectRevision`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `AdditionalFundingSource`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `ChangeStatus`, info from the `ProjectRevision`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -60972,7 +62748,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserChangeStatusesByProjectRevisionCreatedByAndChangeStatusManyToManyEdge", "ofType": null } } @@ -60983,7 +62759,7 @@ }, { "name": "nodes", - "description": "A list of `CifUser` objects.", + "description": "A list of `ChangeStatus` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -60993,7 +62769,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUser", + "name": "ChangeStatus", "ofType": null } } @@ -61019,7 +62795,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `CifUser` you could get from the connection.", + "description": "The count of *all* `ChangeStatus` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -61041,12 +62817,36 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceCreatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `AdditionalFundingSource`.", + "name": "CifUserChangeStatusesByProjectRevisionCreatedByAndChangeStatusManyToManyEdge", + "description": "A `ChangeStatus` edge in the connection, with data from `ProjectRevision`.", "fields": [ { - "name": "additionalFundingSourcesByArchivedBy", - "description": "Reads and enables pagination through a set of `AdditionalFundingSource`.", + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": "The `ChangeStatus` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ChangeStatus", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectRevisionsByChangeStatus", + "description": "Reads and enables pagination through a set of `ProjectRevision`.", "args": [ { "name": "after", @@ -61073,7 +62873,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceCondition", + "name": "ProjectRevisionCondition", "ofType": null }, "defaultValue": null @@ -61083,7 +62883,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceFilter", + "name": "ProjectRevisionFilter", "ofType": null }, "defaultValue": null @@ -61098,16 +62898,6 @@ }, "defaultValue": null }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -61130,7 +62920,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `AdditionalFundingSource`.", + "description": "The method to use when ordering `ProjectRevision`.", "type": { "kind": "LIST", "name": null, @@ -61139,7 +62929,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AdditionalFundingSourcesOrderBy", + "name": "ProjectRevisionsOrderBy", "ofType": null } } @@ -61152,36 +62942,12 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AdditionalFundingSourcesConnection", + "name": "ProjectRevisionsConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `CifUser` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "CifUser", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null } ], "inputFields": null, @@ -61191,12 +62957,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceCreatedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `AdditionalFundingSource`.", + "name": "CifUserChangeStatusesByProjectRevisionUpdatedByAndChangeStatusManyToManyConnection", + "description": "A connection to a list of `ChangeStatus` values, with data from `ProjectRevision`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `AdditionalFundingSource`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `ChangeStatus`, info from the `ProjectRevision`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -61209,7 +62975,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserChangeStatusesByProjectRevisionUpdatedByAndChangeStatusManyToManyEdge", "ofType": null } } @@ -61220,7 +62986,7 @@ }, { "name": "nodes", - "description": "A list of `CifUser` objects.", + "description": "A list of `ChangeStatus` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -61230,7 +62996,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUser", + "name": "ChangeStatus", "ofType": null } } @@ -61256,7 +63022,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `CifUser` you could get from the connection.", + "description": "The count of *all* `ChangeStatus` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -61278,12 +63044,36 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceCreatedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `AdditionalFundingSource`.", + "name": "CifUserChangeStatusesByProjectRevisionUpdatedByAndChangeStatusManyToManyEdge", + "description": "A `ChangeStatus` edge in the connection, with data from `ProjectRevision`.", "fields": [ { - "name": "additionalFundingSourcesByUpdatedBy", - "description": "Reads and enables pagination through a set of `AdditionalFundingSource`.", + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": "The `ChangeStatus` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ChangeStatus", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectRevisionsByChangeStatus", + "description": "Reads and enables pagination through a set of `ProjectRevision`.", "args": [ { "name": "after", @@ -61310,7 +63100,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceCondition", + "name": "ProjectRevisionCondition", "ofType": null }, "defaultValue": null @@ -61320,7 +63110,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceFilter", + "name": "ProjectRevisionFilter", "ofType": null }, "defaultValue": null @@ -61335,16 +63125,6 @@ }, "defaultValue": null }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -61367,7 +63147,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `AdditionalFundingSource`.", + "description": "The method to use when ordering `ProjectRevision`.", "type": { "kind": "LIST", "name": null, @@ -61376,7 +63156,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AdditionalFundingSourcesOrderBy", + "name": "ProjectRevisionsOrderBy", "ofType": null } } @@ -61389,36 +63169,12 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AdditionalFundingSourcesConnection", + "name": "ProjectRevisionsConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `CifUser` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "CifUser", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null } ], "inputFields": null, @@ -61428,12 +63184,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceStatusArchivedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `AdditionalFundingSourceStatus`.", + "name": "CifUserCifUsersByAdditionalFundingSourceArchivedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `AdditionalFundingSource`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `AdditionalFundingSourceStatus`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `AdditionalFundingSource`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -61446,7 +63202,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceStatusArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByAdditionalFundingSourceArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -61515,12 +63271,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceStatusArchivedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `AdditionalFundingSourceStatus`.", + "name": "CifUserCifUsersByAdditionalFundingSourceArchivedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `AdditionalFundingSource`.", "fields": [ { - "name": "additionalFundingSourceStatusesByCreatedBy", - "description": "Reads and enables pagination through a set of `AdditionalFundingSourceStatus`.", + "name": "additionalFundingSourcesByCreatedBy", + "description": "Reads and enables pagination through a set of `AdditionalFundingSource`.", "args": [ { "name": "after", @@ -61547,7 +63303,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceStatusCondition", + "name": "AdditionalFundingSourceCondition", "ofType": null }, "defaultValue": null @@ -61557,7 +63313,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceStatusFilter", + "name": "AdditionalFundingSourceFilter", "ofType": null }, "defaultValue": null @@ -61604,7 +63360,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `AdditionalFundingSourceStatus`.", + "description": "The method to use when ordering `AdditionalFundingSource`.", "type": { "kind": "LIST", "name": null, @@ -61613,7 +63369,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AdditionalFundingSourceStatusesOrderBy", + "name": "AdditionalFundingSourcesOrderBy", "ofType": null } } @@ -61626,7 +63382,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AdditionalFundingSourceStatusesConnection", + "name": "AdditionalFundingSourcesConnection", "ofType": null } }, @@ -61665,12 +63421,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceStatusArchivedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `AdditionalFundingSourceStatus`.", + "name": "CifUserCifUsersByAdditionalFundingSourceArchivedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `AdditionalFundingSource`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `AdditionalFundingSourceStatus`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `AdditionalFundingSource`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -61683,7 +63439,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceStatusArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByAdditionalFundingSourceArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -61752,12 +63508,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceStatusArchivedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `AdditionalFundingSourceStatus`.", + "name": "CifUserCifUsersByAdditionalFundingSourceArchivedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `AdditionalFundingSource`.", "fields": [ { - "name": "additionalFundingSourceStatusesByUpdatedBy", - "description": "Reads and enables pagination through a set of `AdditionalFundingSourceStatus`.", + "name": "additionalFundingSourcesByUpdatedBy", + "description": "Reads and enables pagination through a set of `AdditionalFundingSource`.", "args": [ { "name": "after", @@ -61784,7 +63540,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceStatusCondition", + "name": "AdditionalFundingSourceCondition", "ofType": null }, "defaultValue": null @@ -61794,7 +63550,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceStatusFilter", + "name": "AdditionalFundingSourceFilter", "ofType": null }, "defaultValue": null @@ -61841,7 +63597,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `AdditionalFundingSourceStatus`.", + "description": "The method to use when ordering `AdditionalFundingSource`.", "type": { "kind": "LIST", "name": null, @@ -61850,7 +63606,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AdditionalFundingSourceStatusesOrderBy", + "name": "AdditionalFundingSourcesOrderBy", "ofType": null } } @@ -61863,7 +63619,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AdditionalFundingSourceStatusesConnection", + "name": "AdditionalFundingSourcesConnection", "ofType": null } }, @@ -61902,12 +63658,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceStatusCreatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `AdditionalFundingSourceStatus`.", + "name": "CifUserCifUsersByAdditionalFundingSourceCreatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `AdditionalFundingSource`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `AdditionalFundingSourceStatus`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `AdditionalFundingSource`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -61920,7 +63676,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceStatusCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByAdditionalFundingSourceCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -61989,12 +63745,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceStatusCreatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `AdditionalFundingSourceStatus`.", + "name": "CifUserCifUsersByAdditionalFundingSourceCreatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `AdditionalFundingSource`.", "fields": [ { - "name": "additionalFundingSourceStatusesByArchivedBy", - "description": "Reads and enables pagination through a set of `AdditionalFundingSourceStatus`.", + "name": "additionalFundingSourcesByArchivedBy", + "description": "Reads and enables pagination through a set of `AdditionalFundingSource`.", "args": [ { "name": "after", @@ -62021,7 +63777,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceStatusCondition", + "name": "AdditionalFundingSourceCondition", "ofType": null }, "defaultValue": null @@ -62031,7 +63787,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceStatusFilter", + "name": "AdditionalFundingSourceFilter", "ofType": null }, "defaultValue": null @@ -62078,7 +63834,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `AdditionalFundingSourceStatus`.", + "description": "The method to use when ordering `AdditionalFundingSource`.", "type": { "kind": "LIST", "name": null, @@ -62087,7 +63843,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AdditionalFundingSourceStatusesOrderBy", + "name": "AdditionalFundingSourcesOrderBy", "ofType": null } } @@ -62100,7 +63856,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AdditionalFundingSourceStatusesConnection", + "name": "AdditionalFundingSourcesConnection", "ofType": null } }, @@ -62139,12 +63895,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceStatusCreatedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `AdditionalFundingSourceStatus`.", + "name": "CifUserCifUsersByAdditionalFundingSourceCreatedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `AdditionalFundingSource`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `AdditionalFundingSourceStatus`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `AdditionalFundingSource`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -62157,7 +63913,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceStatusCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByAdditionalFundingSourceCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -62226,12 +63982,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceStatusCreatedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `AdditionalFundingSourceStatus`.", + "name": "CifUserCifUsersByAdditionalFundingSourceCreatedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `AdditionalFundingSource`.", "fields": [ { - "name": "additionalFundingSourceStatusesByUpdatedBy", - "description": "Reads and enables pagination through a set of `AdditionalFundingSourceStatus`.", + "name": "additionalFundingSourcesByUpdatedBy", + "description": "Reads and enables pagination through a set of `AdditionalFundingSource`.", "args": [ { "name": "after", @@ -62258,7 +64014,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceStatusCondition", + "name": "AdditionalFundingSourceCondition", "ofType": null }, "defaultValue": null @@ -62268,7 +64024,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceStatusFilter", + "name": "AdditionalFundingSourceFilter", "ofType": null }, "defaultValue": null @@ -62315,7 +64071,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `AdditionalFundingSourceStatus`.", + "description": "The method to use when ordering `AdditionalFundingSource`.", "type": { "kind": "LIST", "name": null, @@ -62324,7 +64080,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AdditionalFundingSourceStatusesOrderBy", + "name": "AdditionalFundingSourcesOrderBy", "ofType": null } } @@ -62337,7 +64093,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AdditionalFundingSourceStatusesConnection", + "name": "AdditionalFundingSourcesConnection", "ofType": null } }, @@ -62376,7 +64132,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceStatusUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByAdditionalFundingSourceStatusArchivedByAndCreatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `AdditionalFundingSourceStatus`.", "fields": [ { @@ -62394,7 +64150,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceStatusUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByAdditionalFundingSourceStatusArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -62463,11 +64219,11 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceStatusUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByAdditionalFundingSourceStatusArchivedByAndCreatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `AdditionalFundingSourceStatus`.", "fields": [ { - "name": "additionalFundingSourceStatusesByArchivedBy", + "name": "additionalFundingSourceStatusesByCreatedBy", "description": "Reads and enables pagination through a set of `AdditionalFundingSourceStatus`.", "args": [ { @@ -62613,7 +64369,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceStatusUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByAdditionalFundingSourceStatusArchivedByAndUpdatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `AdditionalFundingSourceStatus`.", "fields": [ { @@ -62631,7 +64387,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceStatusUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByAdditionalFundingSourceStatusArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -62700,11 +64456,11 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceStatusUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByAdditionalFundingSourceStatusArchivedByAndUpdatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `AdditionalFundingSourceStatus`.", "fields": [ { - "name": "additionalFundingSourceStatusesByCreatedBy", + "name": "additionalFundingSourceStatusesByUpdatedBy", "description": "Reads and enables pagination through a set of `AdditionalFundingSourceStatus`.", "args": [ { @@ -62850,12 +64606,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceUpdatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `AdditionalFundingSource`.", + "name": "CifUserCifUsersByAdditionalFundingSourceStatusCreatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `AdditionalFundingSourceStatus`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `AdditionalFundingSource`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `AdditionalFundingSourceStatus`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -62868,7 +64624,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByAdditionalFundingSourceStatusCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -62937,12 +64693,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceUpdatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `AdditionalFundingSource`.", + "name": "CifUserCifUsersByAdditionalFundingSourceStatusCreatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `AdditionalFundingSourceStatus`.", "fields": [ { - "name": "additionalFundingSourcesByArchivedBy", - "description": "Reads and enables pagination through a set of `AdditionalFundingSource`.", + "name": "additionalFundingSourceStatusesByArchivedBy", + "description": "Reads and enables pagination through a set of `AdditionalFundingSourceStatus`.", "args": [ { "name": "after", @@ -62969,7 +64725,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceCondition", + "name": "AdditionalFundingSourceStatusCondition", "ofType": null }, "defaultValue": null @@ -62979,7 +64735,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceFilter", + "name": "AdditionalFundingSourceStatusFilter", "ofType": null }, "defaultValue": null @@ -63026,7 +64782,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `AdditionalFundingSource`.", + "description": "The method to use when ordering `AdditionalFundingSourceStatus`.", "type": { "kind": "LIST", "name": null, @@ -63035,7 +64791,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AdditionalFundingSourcesOrderBy", + "name": "AdditionalFundingSourceStatusesOrderBy", "ofType": null } } @@ -63048,7 +64804,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AdditionalFundingSourcesConnection", + "name": "AdditionalFundingSourceStatusesConnection", "ofType": null } }, @@ -63087,12 +64843,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceUpdatedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `AdditionalFundingSource`.", + "name": "CifUserCifUsersByAdditionalFundingSourceStatusCreatedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `AdditionalFundingSourceStatus`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `AdditionalFundingSource`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `AdditionalFundingSourceStatus`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -63105,7 +64861,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByAdditionalFundingSourceStatusCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -63174,12 +64930,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAdditionalFundingSourceUpdatedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `AdditionalFundingSource`.", + "name": "CifUserCifUsersByAdditionalFundingSourceStatusCreatedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `AdditionalFundingSourceStatus`.", "fields": [ { - "name": "additionalFundingSourcesByCreatedBy", - "description": "Reads and enables pagination through a set of `AdditionalFundingSource`.", + "name": "additionalFundingSourceStatusesByUpdatedBy", + "description": "Reads and enables pagination through a set of `AdditionalFundingSourceStatus`.", "args": [ { "name": "after", @@ -63206,7 +64962,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceCondition", + "name": "AdditionalFundingSourceStatusCondition", "ofType": null }, "defaultValue": null @@ -63216,7 +64972,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceFilter", + "name": "AdditionalFundingSourceStatusFilter", "ofType": null }, "defaultValue": null @@ -63263,7 +65019,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `AdditionalFundingSource`.", + "description": "The method to use when ordering `AdditionalFundingSourceStatus`.", "type": { "kind": "LIST", "name": null, @@ -63272,7 +65028,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AdditionalFundingSourcesOrderBy", + "name": "AdditionalFundingSourceStatusesOrderBy", "ofType": null } } @@ -63285,7 +65041,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AdditionalFundingSourcesConnection", + "name": "AdditionalFundingSourceStatusesConnection", "ofType": null } }, @@ -63324,12 +65080,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAmendmentTypeArchivedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `AmendmentType`.", + "name": "CifUserCifUsersByAdditionalFundingSourceStatusUpdatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `AdditionalFundingSourceStatus`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `AmendmentType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `AdditionalFundingSourceStatus`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -63342,7 +65098,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAmendmentTypeArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByAdditionalFundingSourceStatusUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -63411,12 +65167,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAmendmentTypeArchivedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `AmendmentType`.", + "name": "CifUserCifUsersByAdditionalFundingSourceStatusUpdatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `AdditionalFundingSourceStatus`.", "fields": [ { - "name": "amendmentTypesByCreatedBy", - "description": "Reads and enables pagination through a set of `AmendmentType`.", + "name": "additionalFundingSourceStatusesByArchivedBy", + "description": "Reads and enables pagination through a set of `AdditionalFundingSourceStatus`.", "args": [ { "name": "after", @@ -63443,7 +65199,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AmendmentTypeCondition", + "name": "AdditionalFundingSourceStatusCondition", "ofType": null }, "defaultValue": null @@ -63453,7 +65209,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AmendmentTypeFilter", + "name": "AdditionalFundingSourceStatusFilter", "ofType": null }, "defaultValue": null @@ -63500,7 +65256,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `AmendmentType`.", + "description": "The method to use when ordering `AdditionalFundingSourceStatus`.", "type": { "kind": "LIST", "name": null, @@ -63509,7 +65265,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AmendmentTypesOrderBy", + "name": "AdditionalFundingSourceStatusesOrderBy", "ofType": null } } @@ -63522,7 +65278,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AmendmentTypesConnection", + "name": "AdditionalFundingSourceStatusesConnection", "ofType": null } }, @@ -63561,12 +65317,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAmendmentTypeArchivedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `AmendmentType`.", + "name": "CifUserCifUsersByAdditionalFundingSourceStatusUpdatedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `AdditionalFundingSourceStatus`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `AmendmentType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `AdditionalFundingSourceStatus`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -63579,7 +65335,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAmendmentTypeArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByAdditionalFundingSourceStatusUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -63648,12 +65404,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAmendmentTypeArchivedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `AmendmentType`.", + "name": "CifUserCifUsersByAdditionalFundingSourceStatusUpdatedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `AdditionalFundingSourceStatus`.", "fields": [ { - "name": "amendmentTypesByUpdatedBy", - "description": "Reads and enables pagination through a set of `AmendmentType`.", + "name": "additionalFundingSourceStatusesByCreatedBy", + "description": "Reads and enables pagination through a set of `AdditionalFundingSourceStatus`.", "args": [ { "name": "after", @@ -63680,7 +65436,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AmendmentTypeCondition", + "name": "AdditionalFundingSourceStatusCondition", "ofType": null }, "defaultValue": null @@ -63690,7 +65446,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AmendmentTypeFilter", + "name": "AdditionalFundingSourceStatusFilter", "ofType": null }, "defaultValue": null @@ -63737,7 +65493,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `AmendmentType`.", + "description": "The method to use when ordering `AdditionalFundingSourceStatus`.", "type": { "kind": "LIST", "name": null, @@ -63746,7 +65502,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AmendmentTypesOrderBy", + "name": "AdditionalFundingSourceStatusesOrderBy", "ofType": null } } @@ -63759,7 +65515,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AmendmentTypesConnection", + "name": "AdditionalFundingSourceStatusesConnection", "ofType": null } }, @@ -63798,12 +65554,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAmendmentTypeCreatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `AmendmentType`.", + "name": "CifUserCifUsersByAdditionalFundingSourceUpdatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `AdditionalFundingSource`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `AmendmentType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `AdditionalFundingSource`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -63816,7 +65572,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAmendmentTypeCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByAdditionalFundingSourceUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -63885,12 +65641,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAmendmentTypeCreatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `AmendmentType`.", + "name": "CifUserCifUsersByAdditionalFundingSourceUpdatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `AdditionalFundingSource`.", "fields": [ { - "name": "amendmentTypesByArchivedBy", - "description": "Reads and enables pagination through a set of `AmendmentType`.", + "name": "additionalFundingSourcesByArchivedBy", + "description": "Reads and enables pagination through a set of `AdditionalFundingSource`.", "args": [ { "name": "after", @@ -63917,7 +65673,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AmendmentTypeCondition", + "name": "AdditionalFundingSourceCondition", "ofType": null }, "defaultValue": null @@ -63927,7 +65683,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AmendmentTypeFilter", + "name": "AdditionalFundingSourceFilter", "ofType": null }, "defaultValue": null @@ -63974,7 +65730,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `AmendmentType`.", + "description": "The method to use when ordering `AdditionalFundingSource`.", "type": { "kind": "LIST", "name": null, @@ -63983,7 +65739,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AmendmentTypesOrderBy", + "name": "AdditionalFundingSourcesOrderBy", "ofType": null } } @@ -63996,7 +65752,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AmendmentTypesConnection", + "name": "AdditionalFundingSourcesConnection", "ofType": null } }, @@ -64035,12 +65791,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAmendmentTypeCreatedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `AmendmentType`.", + "name": "CifUserCifUsersByAdditionalFundingSourceUpdatedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `AdditionalFundingSource`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `AmendmentType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `AdditionalFundingSource`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -64053,7 +65809,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAmendmentTypeCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByAdditionalFundingSourceUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -64122,12 +65878,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAmendmentTypeCreatedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `AmendmentType`.", + "name": "CifUserCifUsersByAdditionalFundingSourceUpdatedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `AdditionalFundingSource`.", "fields": [ { - "name": "amendmentTypesByUpdatedBy", - "description": "Reads and enables pagination through a set of `AmendmentType`.", + "name": "additionalFundingSourcesByCreatedBy", + "description": "Reads and enables pagination through a set of `AdditionalFundingSource`.", "args": [ { "name": "after", @@ -64154,7 +65910,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AmendmentTypeCondition", + "name": "AdditionalFundingSourceCondition", "ofType": null }, "defaultValue": null @@ -64164,7 +65920,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AmendmentTypeFilter", + "name": "AdditionalFundingSourceFilter", "ofType": null }, "defaultValue": null @@ -64211,7 +65967,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `AmendmentType`.", + "description": "The method to use when ordering `AdditionalFundingSource`.", "type": { "kind": "LIST", "name": null, @@ -64220,7 +65976,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AmendmentTypesOrderBy", + "name": "AdditionalFundingSourcesOrderBy", "ofType": null } } @@ -64233,7 +65989,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AmendmentTypesConnection", + "name": "AdditionalFundingSourcesConnection", "ofType": null } }, @@ -64272,7 +66028,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAmendmentTypeUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByAmendmentTypeArchivedByAndCreatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `AmendmentType`.", "fields": [ { @@ -64290,7 +66046,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAmendmentTypeUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByAmendmentTypeArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -64359,11 +66115,11 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAmendmentTypeUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByAmendmentTypeArchivedByAndCreatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `AmendmentType`.", "fields": [ { - "name": "amendmentTypesByArchivedBy", + "name": "amendmentTypesByCreatedBy", "description": "Reads and enables pagination through a set of `AmendmentType`.", "args": [ { @@ -64509,7 +66265,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAmendmentTypeUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByAmendmentTypeArchivedByAndUpdatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `AmendmentType`.", "fields": [ { @@ -64527,7 +66283,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAmendmentTypeUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByAmendmentTypeArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -64596,11 +66352,11 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAmendmentTypeUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByAmendmentTypeArchivedByAndUpdatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `AmendmentType`.", "fields": [ { - "name": "amendmentTypesByCreatedBy", + "name": "amendmentTypesByUpdatedBy", "description": "Reads and enables pagination through a set of `AmendmentType`.", "args": [ { @@ -64746,12 +66502,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAttachmentArchivedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Attachment`.", + "name": "CifUserCifUsersByAmendmentTypeCreatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `AmendmentType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Attachment`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `AmendmentType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -64764,7 +66520,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAttachmentArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByAmendmentTypeCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -64833,12 +66589,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAttachmentArchivedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `Attachment`.", + "name": "CifUserCifUsersByAmendmentTypeCreatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `AmendmentType`.", "fields": [ { - "name": "attachmentsByCreatedBy", - "description": "Reads and enables pagination through a set of `Attachment`.", + "name": "amendmentTypesByArchivedBy", + "description": "Reads and enables pagination through a set of `AmendmentType`.", "args": [ { "name": "after", @@ -64865,7 +66621,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AttachmentCondition", + "name": "AmendmentTypeCondition", "ofType": null }, "defaultValue": null @@ -64875,7 +66631,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AttachmentFilter", + "name": "AmendmentTypeFilter", "ofType": null }, "defaultValue": null @@ -64922,7 +66678,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Attachment`.", + "description": "The method to use when ordering `AmendmentType`.", "type": { "kind": "LIST", "name": null, @@ -64931,7 +66687,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AttachmentsOrderBy", + "name": "AmendmentTypesOrderBy", "ofType": null } } @@ -64944,7 +66700,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AttachmentsConnection", + "name": "AmendmentTypesConnection", "ofType": null } }, @@ -64983,12 +66739,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAttachmentArchivedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Attachment`.", + "name": "CifUserCifUsersByAmendmentTypeCreatedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `AmendmentType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Attachment`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `AmendmentType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -65001,7 +66757,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAttachmentArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByAmendmentTypeCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -65070,12 +66826,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAttachmentArchivedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `Attachment`.", + "name": "CifUserCifUsersByAmendmentTypeCreatedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `AmendmentType`.", "fields": [ { - "name": "attachmentsByUpdatedBy", - "description": "Reads and enables pagination through a set of `Attachment`.", + "name": "amendmentTypesByUpdatedBy", + "description": "Reads and enables pagination through a set of `AmendmentType`.", "args": [ { "name": "after", @@ -65102,7 +66858,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AttachmentCondition", + "name": "AmendmentTypeCondition", "ofType": null }, "defaultValue": null @@ -65112,7 +66868,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AttachmentFilter", + "name": "AmendmentTypeFilter", "ofType": null }, "defaultValue": null @@ -65159,7 +66915,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Attachment`.", + "description": "The method to use when ordering `AmendmentType`.", "type": { "kind": "LIST", "name": null, @@ -65168,7 +66924,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AttachmentsOrderBy", + "name": "AmendmentTypesOrderBy", "ofType": null } } @@ -65181,7 +66937,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AttachmentsConnection", + "name": "AmendmentTypesConnection", "ofType": null } }, @@ -65220,12 +66976,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAttachmentCreatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Attachment`.", + "name": "CifUserCifUsersByAmendmentTypeUpdatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `AmendmentType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Attachment`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `AmendmentType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -65238,7 +66994,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAttachmentCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByAmendmentTypeUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -65307,12 +67063,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAttachmentCreatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `Attachment`.", + "name": "CifUserCifUsersByAmendmentTypeUpdatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `AmendmentType`.", "fields": [ { - "name": "attachmentsByArchivedBy", - "description": "Reads and enables pagination through a set of `Attachment`.", + "name": "amendmentTypesByArchivedBy", + "description": "Reads and enables pagination through a set of `AmendmentType`.", "args": [ { "name": "after", @@ -65339,7 +67095,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AttachmentCondition", + "name": "AmendmentTypeCondition", "ofType": null }, "defaultValue": null @@ -65349,7 +67105,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AttachmentFilter", + "name": "AmendmentTypeFilter", "ofType": null }, "defaultValue": null @@ -65396,7 +67152,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Attachment`.", + "description": "The method to use when ordering `AmendmentType`.", "type": { "kind": "LIST", "name": null, @@ -65405,7 +67161,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AttachmentsOrderBy", + "name": "AmendmentTypesOrderBy", "ofType": null } } @@ -65418,7 +67174,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AttachmentsConnection", + "name": "AmendmentTypesConnection", "ofType": null } }, @@ -65457,12 +67213,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAttachmentCreatedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Attachment`.", + "name": "CifUserCifUsersByAmendmentTypeUpdatedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `AmendmentType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Attachment`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `AmendmentType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -65475,7 +67231,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAttachmentCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByAmendmentTypeUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -65544,12 +67300,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAttachmentCreatedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `Attachment`.", + "name": "CifUserCifUsersByAmendmentTypeUpdatedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `AmendmentType`.", "fields": [ { - "name": "attachmentsByUpdatedBy", - "description": "Reads and enables pagination through a set of `Attachment`.", + "name": "amendmentTypesByCreatedBy", + "description": "Reads and enables pagination through a set of `AmendmentType`.", "args": [ { "name": "after", @@ -65576,7 +67332,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AttachmentCondition", + "name": "AmendmentTypeCondition", "ofType": null }, "defaultValue": null @@ -65586,7 +67342,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AttachmentFilter", + "name": "AmendmentTypeFilter", "ofType": null }, "defaultValue": null @@ -65633,7 +67389,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Attachment`.", + "description": "The method to use when ordering `AmendmentType`.", "type": { "kind": "LIST", "name": null, @@ -65642,7 +67398,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AttachmentsOrderBy", + "name": "AmendmentTypesOrderBy", "ofType": null } } @@ -65655,7 +67411,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AttachmentsConnection", + "name": "AmendmentTypesConnection", "ofType": null } }, @@ -65694,7 +67450,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAttachmentUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByAttachmentArchivedByAndCreatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `Attachment`.", "fields": [ { @@ -65712,7 +67468,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAttachmentUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByAttachmentArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -65781,11 +67537,11 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAttachmentUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByAttachmentArchivedByAndCreatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `Attachment`.", "fields": [ { - "name": "attachmentsByArchivedBy", + "name": "attachmentsByCreatedBy", "description": "Reads and enables pagination through a set of `Attachment`.", "args": [ { @@ -65931,7 +67687,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAttachmentUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByAttachmentArchivedByAndUpdatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `Attachment`.", "fields": [ { @@ -65949,7 +67705,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByAttachmentUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByAttachmentArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -66018,11 +67774,11 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByAttachmentUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByAttachmentArchivedByAndUpdatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `Attachment`.", "fields": [ { - "name": "attachmentsByCreatedBy", + "name": "attachmentsByUpdatedBy", "description": "Reads and enables pagination through a set of `Attachment`.", "args": [ { @@ -66168,12 +67924,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByChangeStatusArchivedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ChangeStatus`.", + "name": "CifUserCifUsersByAttachmentCreatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Attachment`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ChangeStatus`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `Attachment`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -66186,7 +67942,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByChangeStatusArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByAttachmentCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -66255,12 +68011,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByChangeStatusArchivedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ChangeStatus`.", + "name": "CifUserCifUsersByAttachmentCreatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `Attachment`.", "fields": [ { - "name": "changeStatusesByCreatedBy", - "description": "Reads and enables pagination through a set of `ChangeStatus`.", + "name": "attachmentsByArchivedBy", + "description": "Reads and enables pagination through a set of `Attachment`.", "args": [ { "name": "after", @@ -66287,7 +68043,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ChangeStatusCondition", + "name": "AttachmentCondition", "ofType": null }, "defaultValue": null @@ -66297,7 +68053,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ChangeStatusFilter", + "name": "AttachmentFilter", "ofType": null }, "defaultValue": null @@ -66344,7 +68100,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ChangeStatus`.", + "description": "The method to use when ordering `Attachment`.", "type": { "kind": "LIST", "name": null, @@ -66353,7 +68109,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ChangeStatusesOrderBy", + "name": "AttachmentsOrderBy", "ofType": null } } @@ -66366,7 +68122,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ChangeStatusesConnection", + "name": "AttachmentsConnection", "ofType": null } }, @@ -66405,12 +68161,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByChangeStatusArchivedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ChangeStatus`.", + "name": "CifUserCifUsersByAttachmentCreatedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Attachment`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ChangeStatus`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `Attachment`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -66423,7 +68179,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByChangeStatusArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByAttachmentCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -66492,12 +68248,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByChangeStatusArchivedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ChangeStatus`.", + "name": "CifUserCifUsersByAttachmentCreatedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `Attachment`.", "fields": [ { - "name": "changeStatusesByUpdatedBy", - "description": "Reads and enables pagination through a set of `ChangeStatus`.", + "name": "attachmentsByUpdatedBy", + "description": "Reads and enables pagination through a set of `Attachment`.", "args": [ { "name": "after", @@ -66524,7 +68280,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ChangeStatusCondition", + "name": "AttachmentCondition", "ofType": null }, "defaultValue": null @@ -66534,7 +68290,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ChangeStatusFilter", + "name": "AttachmentFilter", "ofType": null }, "defaultValue": null @@ -66581,7 +68337,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ChangeStatus`.", + "description": "The method to use when ordering `Attachment`.", "type": { "kind": "LIST", "name": null, @@ -66590,7 +68346,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ChangeStatusesOrderBy", + "name": "AttachmentsOrderBy", "ofType": null } } @@ -66603,7 +68359,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ChangeStatusesConnection", + "name": "AttachmentsConnection", "ofType": null } }, @@ -66642,12 +68398,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByChangeStatusCreatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ChangeStatus`.", + "name": "CifUserCifUsersByAttachmentUpdatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Attachment`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ChangeStatus`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `Attachment`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -66660,7 +68416,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByChangeStatusCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByAttachmentUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -66729,12 +68485,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByChangeStatusCreatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ChangeStatus`.", + "name": "CifUserCifUsersByAttachmentUpdatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `Attachment`.", "fields": [ { - "name": "changeStatusesByArchivedBy", - "description": "Reads and enables pagination through a set of `ChangeStatus`.", + "name": "attachmentsByArchivedBy", + "description": "Reads and enables pagination through a set of `Attachment`.", "args": [ { "name": "after", @@ -66761,7 +68517,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ChangeStatusCondition", + "name": "AttachmentCondition", "ofType": null }, "defaultValue": null @@ -66771,7 +68527,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ChangeStatusFilter", + "name": "AttachmentFilter", "ofType": null }, "defaultValue": null @@ -66818,7 +68574,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ChangeStatus`.", + "description": "The method to use when ordering `Attachment`.", "type": { "kind": "LIST", "name": null, @@ -66827,7 +68583,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ChangeStatusesOrderBy", + "name": "AttachmentsOrderBy", "ofType": null } } @@ -66840,7 +68596,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ChangeStatusesConnection", + "name": "AttachmentsConnection", "ofType": null } }, @@ -66879,12 +68635,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByChangeStatusCreatedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ChangeStatus`.", + "name": "CifUserCifUsersByAttachmentUpdatedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Attachment`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ChangeStatus`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `Attachment`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -66897,7 +68653,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByChangeStatusCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByAttachmentUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -66966,12 +68722,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByChangeStatusCreatedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ChangeStatus`.", + "name": "CifUserCifUsersByAttachmentUpdatedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `Attachment`.", "fields": [ { - "name": "changeStatusesByUpdatedBy", - "description": "Reads and enables pagination through a set of `ChangeStatus`.", + "name": "attachmentsByCreatedBy", + "description": "Reads and enables pagination through a set of `Attachment`.", "args": [ { "name": "after", @@ -66998,7 +68754,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ChangeStatusCondition", + "name": "AttachmentCondition", "ofType": null }, "defaultValue": null @@ -67008,7 +68764,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ChangeStatusFilter", + "name": "AttachmentFilter", "ofType": null }, "defaultValue": null @@ -67055,7 +68811,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ChangeStatus`.", + "description": "The method to use when ordering `Attachment`.", "type": { "kind": "LIST", "name": null, @@ -67064,7 +68820,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ChangeStatusesOrderBy", + "name": "AttachmentsOrderBy", "ofType": null } } @@ -67077,7 +68833,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ChangeStatusesConnection", + "name": "AttachmentsConnection", "ofType": null } }, @@ -67116,7 +68872,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByChangeStatusUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByChangeStatusArchivedByAndCreatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `ChangeStatus`.", "fields": [ { @@ -67134,7 +68890,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByChangeStatusUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByChangeStatusArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -67203,11 +68959,11 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByChangeStatusUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByChangeStatusArchivedByAndCreatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `ChangeStatus`.", "fields": [ { - "name": "changeStatusesByArchivedBy", + "name": "changeStatusesByCreatedBy", "description": "Reads and enables pagination through a set of `ChangeStatus`.", "args": [ { @@ -67353,7 +69109,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByChangeStatusUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByChangeStatusArchivedByAndUpdatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `ChangeStatus`.", "fields": [ { @@ -67371,7 +69127,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByChangeStatusUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByChangeStatusArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -67440,11 +69196,11 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByChangeStatusUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByChangeStatusArchivedByAndUpdatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `ChangeStatus`.", "fields": [ { - "name": "changeStatusesByCreatedBy", + "name": "changeStatusesByUpdatedBy", "description": "Reads and enables pagination through a set of `ChangeStatus`.", "args": [ { @@ -67590,12 +69346,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByCifUserArchivedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `CifUser`.", + "name": "CifUserCifUsersByChangeStatusCreatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ChangeStatus`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `CifUser`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ChangeStatus`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -67608,7 +69364,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByCifUserArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByChangeStatusCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -67677,12 +69433,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByCifUserArchivedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `CifUser`.", + "name": "CifUserCifUsersByChangeStatusCreatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ChangeStatus`.", "fields": [ { - "name": "cifUsersByCreatedBy", - "description": "Reads and enables pagination through a set of `CifUser`.", + "name": "changeStatusesByArchivedBy", + "description": "Reads and enables pagination through a set of `ChangeStatus`.", "args": [ { "name": "after", @@ -67709,7 +69465,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserCondition", + "name": "ChangeStatusCondition", "ofType": null }, "defaultValue": null @@ -67719,7 +69475,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserFilter", + "name": "ChangeStatusFilter", "ofType": null }, "defaultValue": null @@ -67766,7 +69522,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `CifUser`.", + "description": "The method to use when ordering `ChangeStatus`.", "type": { "kind": "LIST", "name": null, @@ -67775,7 +69531,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "CifUsersOrderBy", + "name": "ChangeStatusesOrderBy", "ofType": null } } @@ -67788,7 +69544,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUsersConnection", + "name": "ChangeStatusesConnection", "ofType": null } }, @@ -67827,12 +69583,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByCifUserArchivedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `CifUser`.", + "name": "CifUserCifUsersByChangeStatusCreatedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ChangeStatus`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `CifUser`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ChangeStatus`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -67845,7 +69601,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByCifUserArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByChangeStatusCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -67914,12 +69670,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByCifUserArchivedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `CifUser`.", + "name": "CifUserCifUsersByChangeStatusCreatedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ChangeStatus`.", "fields": [ { - "name": "cifUsersByUpdatedBy", - "description": "Reads and enables pagination through a set of `CifUser`.", + "name": "changeStatusesByUpdatedBy", + "description": "Reads and enables pagination through a set of `ChangeStatus`.", "args": [ { "name": "after", @@ -67946,7 +69702,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserCondition", + "name": "ChangeStatusCondition", "ofType": null }, "defaultValue": null @@ -67956,7 +69712,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserFilter", + "name": "ChangeStatusFilter", "ofType": null }, "defaultValue": null @@ -68003,7 +69759,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `CifUser`.", + "description": "The method to use when ordering `ChangeStatus`.", "type": { "kind": "LIST", "name": null, @@ -68012,7 +69768,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "CifUsersOrderBy", + "name": "ChangeStatusesOrderBy", "ofType": null } } @@ -68025,7 +69781,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUsersConnection", + "name": "ChangeStatusesConnection", "ofType": null } }, @@ -68064,12 +69820,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByCifUserCreatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `CifUser`.", + "name": "CifUserCifUsersByChangeStatusUpdatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ChangeStatus`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `CifUser`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ChangeStatus`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -68082,7 +69838,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByCifUserCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByChangeStatusUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -68151,12 +69907,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByCifUserCreatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `CifUser`.", + "name": "CifUserCifUsersByChangeStatusUpdatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ChangeStatus`.", "fields": [ { - "name": "cifUsersByArchivedBy", - "description": "Reads and enables pagination through a set of `CifUser`.", + "name": "changeStatusesByArchivedBy", + "description": "Reads and enables pagination through a set of `ChangeStatus`.", "args": [ { "name": "after", @@ -68183,7 +69939,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserCondition", + "name": "ChangeStatusCondition", "ofType": null }, "defaultValue": null @@ -68193,7 +69949,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserFilter", + "name": "ChangeStatusFilter", "ofType": null }, "defaultValue": null @@ -68240,7 +69996,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `CifUser`.", + "description": "The method to use when ordering `ChangeStatus`.", "type": { "kind": "LIST", "name": null, @@ -68249,7 +70005,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "CifUsersOrderBy", + "name": "ChangeStatusesOrderBy", "ofType": null } } @@ -68262,7 +70018,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUsersConnection", + "name": "ChangeStatusesConnection", "ofType": null } }, @@ -68301,12 +70057,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByCifUserCreatedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `CifUser`.", + "name": "CifUserCifUsersByChangeStatusUpdatedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ChangeStatus`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `CifUser`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ChangeStatus`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -68319,7 +70075,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByCifUserCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByChangeStatusUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -68388,12 +70144,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByCifUserCreatedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `CifUser`.", + "name": "CifUserCifUsersByChangeStatusUpdatedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ChangeStatus`.", "fields": [ { - "name": "cifUsersByUpdatedBy", - "description": "Reads and enables pagination through a set of `CifUser`.", + "name": "changeStatusesByCreatedBy", + "description": "Reads and enables pagination through a set of `ChangeStatus`.", "args": [ { "name": "after", @@ -68420,7 +70176,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserCondition", + "name": "ChangeStatusCondition", "ofType": null }, "defaultValue": null @@ -68430,7 +70186,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserFilter", + "name": "ChangeStatusFilter", "ofType": null }, "defaultValue": null @@ -68477,7 +70233,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `CifUser`.", + "description": "The method to use when ordering `ChangeStatus`.", "type": { "kind": "LIST", "name": null, @@ -68486,7 +70242,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "CifUsersOrderBy", + "name": "ChangeStatusesOrderBy", "ofType": null } } @@ -68499,7 +70255,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUsersConnection", + "name": "ChangeStatusesConnection", "ofType": null } }, @@ -68538,7 +70294,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByCifUserUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByCifUserArchivedByAndCreatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `CifUser`.", "fields": [ { @@ -68556,7 +70312,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByCifUserUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByCifUserArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -68625,11 +70381,11 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByCifUserUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByCifUserArchivedByAndCreatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `CifUser`.", "fields": [ { - "name": "cifUsersByArchivedBy", + "name": "cifUsersByCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -68775,7 +70531,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByCifUserUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByCifUserArchivedByAndUpdatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `CifUser`.", "fields": [ { @@ -68793,7 +70549,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByCifUserUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByCifUserArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -68862,11 +70618,11 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByCifUserUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByCifUserArchivedByAndUpdatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `CifUser`.", "fields": [ { - "name": "cifUsersByCreatedBy", + "name": "cifUsersByUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -69012,12 +70768,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByContactArchivedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Contact`.", + "name": "CifUserCifUsersByCifUserCreatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `CifUser`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Contact`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `CifUser`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -69030,7 +70786,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByContactArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByCifUserCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -69099,12 +70855,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByContactArchivedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `Contact`.", + "name": "CifUserCifUsersByCifUserCreatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `CifUser`.", "fields": [ { - "name": "contactsByCreatedBy", - "description": "Reads and enables pagination through a set of `Contact`.", + "name": "cifUsersByArchivedBy", + "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { "name": "after", @@ -69131,7 +70887,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ContactCondition", + "name": "CifUserCondition", "ofType": null }, "defaultValue": null @@ -69141,7 +70897,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ContactFilter", + "name": "CifUserFilter", "ofType": null }, "defaultValue": null @@ -69188,7 +70944,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Contact`.", + "description": "The method to use when ordering `CifUser`.", "type": { "kind": "LIST", "name": null, @@ -69197,7 +70953,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ContactsOrderBy", + "name": "CifUsersOrderBy", "ofType": null } } @@ -69210,7 +70966,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ContactsConnection", + "name": "CifUsersConnection", "ofType": null } }, @@ -69249,12 +71005,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByContactArchivedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Contact`.", + "name": "CifUserCifUsersByCifUserCreatedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `CifUser`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Contact`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `CifUser`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -69267,7 +71023,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByContactArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByCifUserCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -69336,12 +71092,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByContactArchivedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `Contact`.", + "name": "CifUserCifUsersByCifUserCreatedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `CifUser`.", "fields": [ { - "name": "contactsByUpdatedBy", - "description": "Reads and enables pagination through a set of `Contact`.", + "name": "cifUsersByUpdatedBy", + "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { "name": "after", @@ -69368,7 +71124,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ContactCondition", + "name": "CifUserCondition", "ofType": null }, "defaultValue": null @@ -69378,7 +71134,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ContactFilter", + "name": "CifUserFilter", "ofType": null }, "defaultValue": null @@ -69425,7 +71181,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Contact`.", + "description": "The method to use when ordering `CifUser`.", "type": { "kind": "LIST", "name": null, @@ -69434,7 +71190,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ContactsOrderBy", + "name": "CifUsersOrderBy", "ofType": null } } @@ -69447,7 +71203,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ContactsConnection", + "name": "CifUsersConnection", "ofType": null } }, @@ -69486,12 +71242,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByContactCreatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Contact`.", + "name": "CifUserCifUsersByCifUserUpdatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `CifUser`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Contact`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `CifUser`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -69504,7 +71260,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByContactCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByCifUserUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -69573,12 +71329,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByContactCreatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `Contact`.", + "name": "CifUserCifUsersByCifUserUpdatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `CifUser`.", "fields": [ { - "name": "contactsByArchivedBy", - "description": "Reads and enables pagination through a set of `Contact`.", + "name": "cifUsersByArchivedBy", + "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { "name": "after", @@ -69605,7 +71361,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ContactCondition", + "name": "CifUserCondition", "ofType": null }, "defaultValue": null @@ -69615,7 +71371,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ContactFilter", + "name": "CifUserFilter", "ofType": null }, "defaultValue": null @@ -69662,7 +71418,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Contact`.", + "description": "The method to use when ordering `CifUser`.", "type": { "kind": "LIST", "name": null, @@ -69671,7 +71427,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ContactsOrderBy", + "name": "CifUsersOrderBy", "ofType": null } } @@ -69684,7 +71440,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ContactsConnection", + "name": "CifUsersConnection", "ofType": null } }, @@ -69723,12 +71479,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByContactCreatedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Contact`.", + "name": "CifUserCifUsersByCifUserUpdatedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `CifUser`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Contact`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `CifUser`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -69741,7 +71497,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByContactCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByCifUserUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -69810,12 +71566,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByContactCreatedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `Contact`.", + "name": "CifUserCifUsersByCifUserUpdatedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `CifUser`.", "fields": [ { - "name": "contactsByUpdatedBy", - "description": "Reads and enables pagination through a set of `Contact`.", + "name": "cifUsersByCreatedBy", + "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { "name": "after", @@ -69842,7 +71598,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ContactCondition", + "name": "CifUserCondition", "ofType": null }, "defaultValue": null @@ -69852,7 +71608,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ContactFilter", + "name": "CifUserFilter", "ofType": null }, "defaultValue": null @@ -69899,7 +71655,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Contact`.", + "description": "The method to use when ordering `CifUser`.", "type": { "kind": "LIST", "name": null, @@ -69908,7 +71664,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ContactsOrderBy", + "name": "CifUsersOrderBy", "ofType": null } } @@ -69921,7 +71677,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ContactsConnection", + "name": "CifUsersConnection", "ofType": null } }, @@ -69960,7 +71716,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByContactUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByContactArchivedByAndCreatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `Contact`.", "fields": [ { @@ -69978,7 +71734,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByContactUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByContactArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -70047,11 +71803,11 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByContactUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByContactArchivedByAndCreatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `Contact`.", "fields": [ { - "name": "contactsByArchivedBy", + "name": "contactsByCreatedBy", "description": "Reads and enables pagination through a set of `Contact`.", "args": [ { @@ -70197,7 +71953,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByContactUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByContactArchivedByAndUpdatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `Contact`.", "fields": [ { @@ -70215,7 +71971,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByContactUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByContactArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -70284,11 +72040,11 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByContactUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByContactArchivedByAndUpdatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `Contact`.", "fields": [ { - "name": "contactsByCreatedBy", + "name": "contactsByUpdatedBy", "description": "Reads and enables pagination through a set of `Contact`.", "args": [ { @@ -70434,12 +72190,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityPaymentPercentArchivedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `EmissionIntensityPaymentPercent`.", + "name": "CifUserCifUsersByContactCreatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Contact`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `EmissionIntensityPaymentPercent`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `Contact`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -70452,7 +72208,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityPaymentPercentArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByContactCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -70521,24 +72277,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityPaymentPercentArchivedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `EmissionIntensityPaymentPercent`.", + "name": "CifUserCifUsersByContactCreatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `Contact`.", "fields": [ { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "emissionIntensityPaymentPercentsByCreatedBy", - "description": "Reads and enables pagination through a set of `EmissionIntensityPaymentPercent`.", + "name": "contactsByArchivedBy", + "description": "Reads and enables pagination through a set of `Contact`.", "args": [ { "name": "after", @@ -70565,7 +72309,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityPaymentPercentCondition", + "name": "ContactCondition", "ofType": null }, "defaultValue": null @@ -70575,7 +72319,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityPaymentPercentFilter", + "name": "ContactFilter", "ofType": null }, "defaultValue": null @@ -70622,7 +72366,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `EmissionIntensityPaymentPercent`.", + "description": "The method to use when ordering `Contact`.", "type": { "kind": "LIST", "name": null, @@ -70631,7 +72375,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "EmissionIntensityPaymentPercentsOrderBy", + "name": "ContactsOrderBy", "ofType": null } } @@ -70644,13 +72388,25 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "EmissionIntensityPaymentPercentsConnection", + "name": "ContactsConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, + { + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "node", "description": "The `CifUser` at the end of the edge.", @@ -70671,12 +72427,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityPaymentPercentArchivedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `EmissionIntensityPaymentPercent`.", + "name": "CifUserCifUsersByContactCreatedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Contact`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `EmissionIntensityPaymentPercent`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `Contact`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -70689,7 +72445,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityPaymentPercentArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByContactCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -70758,24 +72514,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityPaymentPercentArchivedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `EmissionIntensityPaymentPercent`.", + "name": "CifUserCifUsersByContactCreatedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `Contact`.", "fields": [ { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "emissionIntensityPaymentPercentsByUpdatedBy", - "description": "Reads and enables pagination through a set of `EmissionIntensityPaymentPercent`.", + "name": "contactsByUpdatedBy", + "description": "Reads and enables pagination through a set of `Contact`.", "args": [ { "name": "after", @@ -70802,7 +72546,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityPaymentPercentCondition", + "name": "ContactCondition", "ofType": null }, "defaultValue": null @@ -70812,7 +72556,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityPaymentPercentFilter", + "name": "ContactFilter", "ofType": null }, "defaultValue": null @@ -70859,7 +72603,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `EmissionIntensityPaymentPercent`.", + "description": "The method to use when ordering `Contact`.", "type": { "kind": "LIST", "name": null, @@ -70868,7 +72612,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "EmissionIntensityPaymentPercentsOrderBy", + "name": "ContactsOrderBy", "ofType": null } } @@ -70881,13 +72625,25 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "EmissionIntensityPaymentPercentsConnection", + "name": "ContactsConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, + { + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "node", "description": "The `CifUser` at the end of the edge.", @@ -70908,12 +72664,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityPaymentPercentCreatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `EmissionIntensityPaymentPercent`.", + "name": "CifUserCifUsersByContactUpdatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Contact`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `EmissionIntensityPaymentPercent`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `Contact`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -70926,7 +72682,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityPaymentPercentCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByContactUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -70995,24 +72751,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityPaymentPercentCreatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `EmissionIntensityPaymentPercent`.", + "name": "CifUserCifUsersByContactUpdatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `Contact`.", "fields": [ { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "emissionIntensityPaymentPercentsByArchivedBy", - "description": "Reads and enables pagination through a set of `EmissionIntensityPaymentPercent`.", + "name": "contactsByArchivedBy", + "description": "Reads and enables pagination through a set of `Contact`.", "args": [ { "name": "after", @@ -71039,7 +72783,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityPaymentPercentCondition", + "name": "ContactCondition", "ofType": null }, "defaultValue": null @@ -71049,7 +72793,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityPaymentPercentFilter", + "name": "ContactFilter", "ofType": null }, "defaultValue": null @@ -71096,7 +72840,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `EmissionIntensityPaymentPercent`.", + "description": "The method to use when ordering `Contact`.", "type": { "kind": "LIST", "name": null, @@ -71105,7 +72849,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "EmissionIntensityPaymentPercentsOrderBy", + "name": "ContactsOrderBy", "ofType": null } } @@ -71118,13 +72862,25 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "EmissionIntensityPaymentPercentsConnection", + "name": "ContactsConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, + { + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "node", "description": "The `CifUser` at the end of the edge.", @@ -71145,12 +72901,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityPaymentPercentCreatedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `EmissionIntensityPaymentPercent`.", + "name": "CifUserCifUsersByContactUpdatedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Contact`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `EmissionIntensityPaymentPercent`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `Contact`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -71163,7 +72919,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityPaymentPercentCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByContactUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -71232,24 +72988,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityPaymentPercentCreatedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `EmissionIntensityPaymentPercent`.", + "name": "CifUserCifUsersByContactUpdatedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `Contact`.", "fields": [ { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "emissionIntensityPaymentPercentsByUpdatedBy", - "description": "Reads and enables pagination through a set of `EmissionIntensityPaymentPercent`.", + "name": "contactsByCreatedBy", + "description": "Reads and enables pagination through a set of `Contact`.", "args": [ { "name": "after", @@ -71276,7 +73020,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityPaymentPercentCondition", + "name": "ContactCondition", "ofType": null }, "defaultValue": null @@ -71286,7 +73030,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityPaymentPercentFilter", + "name": "ContactFilter", "ofType": null }, "defaultValue": null @@ -71333,7 +73077,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `EmissionIntensityPaymentPercent`.", + "description": "The method to use when ordering `Contact`.", "type": { "kind": "LIST", "name": null, @@ -71342,7 +73086,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "EmissionIntensityPaymentPercentsOrderBy", + "name": "ContactsOrderBy", "ofType": null } } @@ -71355,13 +73099,25 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "EmissionIntensityPaymentPercentsConnection", + "name": "ContactsConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, + { + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "node", "description": "The `CifUser` at the end of the edge.", @@ -71382,7 +73138,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityPaymentPercentUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByEmissionIntensityPaymentPercentArchivedByAndCreatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `EmissionIntensityPaymentPercent`.", "fields": [ { @@ -71400,7 +73156,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityPaymentPercentUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByEmissionIntensityPaymentPercentArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -71469,7 +73225,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityPaymentPercentUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByEmissionIntensityPaymentPercentArchivedByAndCreatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `EmissionIntensityPaymentPercent`.", "fields": [ { @@ -71485,7 +73241,7 @@ "deprecationReason": null }, { - "name": "emissionIntensityPaymentPercentsByArchivedBy", + "name": "emissionIntensityPaymentPercentsByCreatedBy", "description": "Reads and enables pagination through a set of `EmissionIntensityPaymentPercent`.", "args": [ { @@ -71619,7 +73375,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityPaymentPercentUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByEmissionIntensityPaymentPercentArchivedByAndUpdatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `EmissionIntensityPaymentPercent`.", "fields": [ { @@ -71637,7 +73393,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityPaymentPercentUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByEmissionIntensityPaymentPercentArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -71706,7 +73462,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityPaymentPercentUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByEmissionIntensityPaymentPercentArchivedByAndUpdatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `EmissionIntensityPaymentPercent`.", "fields": [ { @@ -71722,7 +73478,7 @@ "deprecationReason": null }, { - "name": "emissionIntensityPaymentPercentsByCreatedBy", + "name": "emissionIntensityPaymentPercentsByUpdatedBy", "description": "Reads and enables pagination through a set of `EmissionIntensityPaymentPercent`.", "args": [ { @@ -71856,12 +73612,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityReportArchivedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `EmissionIntensityReport`.", + "name": "CifUserCifUsersByEmissionIntensityPaymentPercentCreatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `EmissionIntensityPaymentPercent`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `EmissionIntensityReport`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `EmissionIntensityPaymentPercent`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -71874,7 +73630,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityReportArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByEmissionIntensityPaymentPercentCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -71943,8 +73699,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityReportArchivedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `EmissionIntensityReport`.", + "name": "CifUserCifUsersByEmissionIntensityPaymentPercentCreatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `EmissionIntensityPaymentPercent`.", "fields": [ { "name": "cursor", @@ -71959,8 +73715,8 @@ "deprecationReason": null }, { - "name": "emissionIntensityReportsByCreatedBy", - "description": "Reads and enables pagination through a set of `EmissionIntensityReport`.", + "name": "emissionIntensityPaymentPercentsByArchivedBy", + "description": "Reads and enables pagination through a set of `EmissionIntensityPaymentPercent`.", "args": [ { "name": "after", @@ -71987,7 +73743,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityReportCondition", + "name": "EmissionIntensityPaymentPercentCondition", "ofType": null }, "defaultValue": null @@ -71997,7 +73753,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityReportFilter", + "name": "EmissionIntensityPaymentPercentFilter", "ofType": null }, "defaultValue": null @@ -72044,7 +73800,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `EmissionIntensityReport`.", + "description": "The method to use when ordering `EmissionIntensityPaymentPercent`.", "type": { "kind": "LIST", "name": null, @@ -72053,7 +73809,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "EmissionIntensityReportsOrderBy", + "name": "EmissionIntensityPaymentPercentsOrderBy", "ofType": null } } @@ -72066,7 +73822,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "EmissionIntensityReportsConnection", + "name": "EmissionIntensityPaymentPercentsConnection", "ofType": null } }, @@ -72093,12 +73849,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityReportArchivedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `EmissionIntensityReport`.", + "name": "CifUserCifUsersByEmissionIntensityPaymentPercentCreatedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `EmissionIntensityPaymentPercent`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `EmissionIntensityReport`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `EmissionIntensityPaymentPercent`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -72111,7 +73867,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityReportArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByEmissionIntensityPaymentPercentCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -72180,8 +73936,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityReportArchivedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `EmissionIntensityReport`.", + "name": "CifUserCifUsersByEmissionIntensityPaymentPercentCreatedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `EmissionIntensityPaymentPercent`.", "fields": [ { "name": "cursor", @@ -72196,8 +73952,8 @@ "deprecationReason": null }, { - "name": "emissionIntensityReportsByUpdatedBy", - "description": "Reads and enables pagination through a set of `EmissionIntensityReport`.", + "name": "emissionIntensityPaymentPercentsByUpdatedBy", + "description": "Reads and enables pagination through a set of `EmissionIntensityPaymentPercent`.", "args": [ { "name": "after", @@ -72224,7 +73980,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityReportCondition", + "name": "EmissionIntensityPaymentPercentCondition", "ofType": null }, "defaultValue": null @@ -72234,7 +73990,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityReportFilter", + "name": "EmissionIntensityPaymentPercentFilter", "ofType": null }, "defaultValue": null @@ -72281,7 +74037,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `EmissionIntensityReport`.", + "description": "The method to use when ordering `EmissionIntensityPaymentPercent`.", "type": { "kind": "LIST", "name": null, @@ -72290,7 +74046,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "EmissionIntensityReportsOrderBy", + "name": "EmissionIntensityPaymentPercentsOrderBy", "ofType": null } } @@ -72303,7 +74059,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "EmissionIntensityReportsConnection", + "name": "EmissionIntensityPaymentPercentsConnection", "ofType": null } }, @@ -72330,12 +74086,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityReportCreatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `EmissionIntensityReport`.", + "name": "CifUserCifUsersByEmissionIntensityPaymentPercentUpdatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `EmissionIntensityPaymentPercent`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `EmissionIntensityReport`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `EmissionIntensityPaymentPercent`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -72348,7 +74104,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityReportCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByEmissionIntensityPaymentPercentUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -72417,8 +74173,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityReportCreatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `EmissionIntensityReport`.", + "name": "CifUserCifUsersByEmissionIntensityPaymentPercentUpdatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `EmissionIntensityPaymentPercent`.", "fields": [ { "name": "cursor", @@ -72433,8 +74189,8 @@ "deprecationReason": null }, { - "name": "emissionIntensityReportsByArchivedBy", - "description": "Reads and enables pagination through a set of `EmissionIntensityReport`.", + "name": "emissionIntensityPaymentPercentsByArchivedBy", + "description": "Reads and enables pagination through a set of `EmissionIntensityPaymentPercent`.", "args": [ { "name": "after", @@ -72461,7 +74217,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityReportCondition", + "name": "EmissionIntensityPaymentPercentCondition", "ofType": null }, "defaultValue": null @@ -72471,7 +74227,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityReportFilter", + "name": "EmissionIntensityPaymentPercentFilter", "ofType": null }, "defaultValue": null @@ -72518,7 +74274,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `EmissionIntensityReport`.", + "description": "The method to use when ordering `EmissionIntensityPaymentPercent`.", "type": { "kind": "LIST", "name": null, @@ -72527,7 +74283,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "EmissionIntensityReportsOrderBy", + "name": "EmissionIntensityPaymentPercentsOrderBy", "ofType": null } } @@ -72540,7 +74296,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "EmissionIntensityReportsConnection", + "name": "EmissionIntensityPaymentPercentsConnection", "ofType": null } }, @@ -72567,12 +74323,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityReportCreatedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `EmissionIntensityReport`.", + "name": "CifUserCifUsersByEmissionIntensityPaymentPercentUpdatedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `EmissionIntensityPaymentPercent`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `EmissionIntensityReport`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `EmissionIntensityPaymentPercent`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -72585,7 +74341,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityReportCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByEmissionIntensityPaymentPercentUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -72654,8 +74410,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityReportCreatedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `EmissionIntensityReport`.", + "name": "CifUserCifUsersByEmissionIntensityPaymentPercentUpdatedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `EmissionIntensityPaymentPercent`.", "fields": [ { "name": "cursor", @@ -72670,8 +74426,8 @@ "deprecationReason": null }, { - "name": "emissionIntensityReportsByUpdatedBy", - "description": "Reads and enables pagination through a set of `EmissionIntensityReport`.", + "name": "emissionIntensityPaymentPercentsByCreatedBy", + "description": "Reads and enables pagination through a set of `EmissionIntensityPaymentPercent`.", "args": [ { "name": "after", @@ -72698,7 +74454,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityReportCondition", + "name": "EmissionIntensityPaymentPercentCondition", "ofType": null }, "defaultValue": null @@ -72708,7 +74464,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityReportFilter", + "name": "EmissionIntensityPaymentPercentFilter", "ofType": null }, "defaultValue": null @@ -72755,7 +74511,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `EmissionIntensityReport`.", + "description": "The method to use when ordering `EmissionIntensityPaymentPercent`.", "type": { "kind": "LIST", "name": null, @@ -72764,7 +74520,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "EmissionIntensityReportsOrderBy", + "name": "EmissionIntensityPaymentPercentsOrderBy", "ofType": null } } @@ -72777,7 +74533,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "EmissionIntensityReportsConnection", + "name": "EmissionIntensityPaymentPercentsConnection", "ofType": null } }, @@ -72804,7 +74560,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityReportUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByEmissionIntensityReportArchivedByAndCreatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `EmissionIntensityReport`.", "fields": [ { @@ -72822,7 +74578,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityReportUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByEmissionIntensityReportArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -72891,7 +74647,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityReportUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByEmissionIntensityReportArchivedByAndCreatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `EmissionIntensityReport`.", "fields": [ { @@ -72907,7 +74663,7 @@ "deprecationReason": null }, { - "name": "emissionIntensityReportsByArchivedBy", + "name": "emissionIntensityReportsByCreatedBy", "description": "Reads and enables pagination through a set of `EmissionIntensityReport`.", "args": [ { @@ -73041,7 +74797,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityReportUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByEmissionIntensityReportArchivedByAndUpdatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `EmissionIntensityReport`.", "fields": [ { @@ -73059,7 +74815,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityReportUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByEmissionIntensityReportArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -73128,7 +74884,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByEmissionIntensityReportUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByEmissionIntensityReportArchivedByAndUpdatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `EmissionIntensityReport`.", "fields": [ { @@ -73144,7 +74900,7 @@ "deprecationReason": null }, { - "name": "emissionIntensityReportsByCreatedBy", + "name": "emissionIntensityReportsByUpdatedBy", "description": "Reads and enables pagination through a set of `EmissionIntensityReport`.", "args": [ { @@ -73278,12 +75034,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFormArchivedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Form`.", + "name": "CifUserCifUsersByEmissionIntensityReportCreatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `EmissionIntensityReport`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Form`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `EmissionIntensityReport`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -73296,7 +75052,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFormArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByEmissionIntensityReportCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -73365,8 +75121,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFormArchivedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `Form`.", + "name": "CifUserCifUsersByEmissionIntensityReportCreatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `EmissionIntensityReport`.", "fields": [ { "name": "cursor", @@ -73381,8 +75137,8 @@ "deprecationReason": null }, { - "name": "formsByCreatedBy", - "description": "Reads and enables pagination through a set of `Form`.", + "name": "emissionIntensityReportsByArchivedBy", + "description": "Reads and enables pagination through a set of `EmissionIntensityReport`.", "args": [ { "name": "after", @@ -73409,7 +75165,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormCondition", + "name": "EmissionIntensityReportCondition", "ofType": null }, "defaultValue": null @@ -73419,7 +75175,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormFilter", + "name": "EmissionIntensityReportFilter", "ofType": null }, "defaultValue": null @@ -73466,7 +75222,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Form`.", + "description": "The method to use when ordering `EmissionIntensityReport`.", "type": { "kind": "LIST", "name": null, @@ -73475,7 +75231,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FormsOrderBy", + "name": "EmissionIntensityReportsOrderBy", "ofType": null } } @@ -73488,7 +75244,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FormsConnection", + "name": "EmissionIntensityReportsConnection", "ofType": null } }, @@ -73515,12 +75271,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFormArchivedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Form`.", + "name": "CifUserCifUsersByEmissionIntensityReportCreatedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `EmissionIntensityReport`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Form`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `EmissionIntensityReport`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -73533,7 +75289,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFormArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByEmissionIntensityReportCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -73602,8 +75358,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFormArchivedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `Form`.", + "name": "CifUserCifUsersByEmissionIntensityReportCreatedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `EmissionIntensityReport`.", "fields": [ { "name": "cursor", @@ -73618,8 +75374,8 @@ "deprecationReason": null }, { - "name": "formsByUpdatedBy", - "description": "Reads and enables pagination through a set of `Form`.", + "name": "emissionIntensityReportsByUpdatedBy", + "description": "Reads and enables pagination through a set of `EmissionIntensityReport`.", "args": [ { "name": "after", @@ -73646,7 +75402,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormCondition", + "name": "EmissionIntensityReportCondition", "ofType": null }, "defaultValue": null @@ -73656,7 +75412,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormFilter", + "name": "EmissionIntensityReportFilter", "ofType": null }, "defaultValue": null @@ -73703,7 +75459,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Form`.", + "description": "The method to use when ordering `EmissionIntensityReport`.", "type": { "kind": "LIST", "name": null, @@ -73712,7 +75468,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FormsOrderBy", + "name": "EmissionIntensityReportsOrderBy", "ofType": null } } @@ -73725,7 +75481,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FormsConnection", + "name": "EmissionIntensityReportsConnection", "ofType": null } }, @@ -73752,12 +75508,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFormChangeCreatedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `FormChange`.", + "name": "CifUserCifUsersByEmissionIntensityReportUpdatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `EmissionIntensityReport`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `FormChange`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `EmissionIntensityReport`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -73770,7 +75526,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFormChangeCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByEmissionIntensityReportUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -73839,8 +75595,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFormChangeCreatedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `FormChange`.", + "name": "CifUserCifUsersByEmissionIntensityReportUpdatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `EmissionIntensityReport`.", "fields": [ { "name": "cursor", @@ -73855,8 +75611,8 @@ "deprecationReason": null }, { - "name": "formChangesByUpdatedBy", - "description": "Reads and enables pagination through a set of `FormChange`.", + "name": "emissionIntensityReportsByArchivedBy", + "description": "Reads and enables pagination through a set of `EmissionIntensityReport`.", "args": [ { "name": "after", @@ -73883,7 +75639,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormChangeCondition", + "name": "EmissionIntensityReportCondition", "ofType": null }, "defaultValue": null @@ -73893,7 +75649,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormChangeFilter", + "name": "EmissionIntensityReportFilter", "ofType": null }, "defaultValue": null @@ -73908,6 +75664,16 @@ }, "defaultValue": null }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -73930,7 +75696,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FormChange`.", + "description": "The method to use when ordering `EmissionIntensityReport`.", "type": { "kind": "LIST", "name": null, @@ -73939,7 +75705,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FormChangesOrderBy", + "name": "EmissionIntensityReportsOrderBy", "ofType": null } } @@ -73952,7 +75718,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FormChangesConnection", + "name": "EmissionIntensityReportsConnection", "ofType": null } }, @@ -73979,12 +75745,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFormChangeUpdatedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `FormChange`.", + "name": "CifUserCifUsersByEmissionIntensityReportUpdatedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `EmissionIntensityReport`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `FormChange`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `EmissionIntensityReport`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -73997,7 +75763,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFormChangeUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByEmissionIntensityReportUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -74066,8 +75832,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFormChangeUpdatedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `FormChange`.", + "name": "CifUserCifUsersByEmissionIntensityReportUpdatedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `EmissionIntensityReport`.", "fields": [ { "name": "cursor", @@ -74082,8 +75848,8 @@ "deprecationReason": null }, { - "name": "formChangesByCreatedBy", - "description": "Reads and enables pagination through a set of `FormChange`.", + "name": "emissionIntensityReportsByCreatedBy", + "description": "Reads and enables pagination through a set of `EmissionIntensityReport`.", "args": [ { "name": "after", @@ -74110,7 +75876,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormChangeCondition", + "name": "EmissionIntensityReportCondition", "ofType": null }, "defaultValue": null @@ -74120,7 +75886,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormChangeFilter", + "name": "EmissionIntensityReportFilter", "ofType": null }, "defaultValue": null @@ -74135,6 +75901,16 @@ }, "defaultValue": null }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -74157,7 +75933,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FormChange`.", + "description": "The method to use when ordering `EmissionIntensityReport`.", "type": { "kind": "LIST", "name": null, @@ -74166,7 +75942,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FormChangesOrderBy", + "name": "EmissionIntensityReportsOrderBy", "ofType": null } } @@ -74179,7 +75955,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FormChangesConnection", + "name": "EmissionIntensityReportsConnection", "ofType": null } }, @@ -74206,7 +75982,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFormCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByFormArchivedByAndCreatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `Form`.", "fields": [ { @@ -74224,7 +76000,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFormCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByFormArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -74293,7 +76069,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFormCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByFormArchivedByAndCreatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `Form`.", "fields": [ { @@ -74309,7 +76085,7 @@ "deprecationReason": null }, { - "name": "formsByArchivedBy", + "name": "formsByCreatedBy", "description": "Reads and enables pagination through a set of `Form`.", "args": [ { @@ -74443,7 +76219,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFormCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByFormArchivedByAndUpdatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `Form`.", "fields": [ { @@ -74461,7 +76237,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFormCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByFormArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -74530,7 +76306,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFormCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByFormArchivedByAndUpdatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `Form`.", "fields": [ { @@ -74680,12 +76456,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFormUpdatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Form`.", + "name": "CifUserCifUsersByFormChangeCreatedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `FormChange`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Form`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `FormChange`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -74698,7 +76474,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFormUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByFormChangeCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -74767,8 +76543,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFormUpdatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `Form`.", + "name": "CifUserCifUsersByFormChangeCreatedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `FormChange`.", "fields": [ { "name": "cursor", @@ -74783,8 +76559,8 @@ "deprecationReason": null }, { - "name": "formsByArchivedBy", - "description": "Reads and enables pagination through a set of `Form`.", + "name": "formChangesByUpdatedBy", + "description": "Reads and enables pagination through a set of `FormChange`.", "args": [ { "name": "after", @@ -74811,7 +76587,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormCondition", + "name": "FormChangeCondition", "ofType": null }, "defaultValue": null @@ -74821,7 +76597,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormFilter", + "name": "FormChangeFilter", "ofType": null }, "defaultValue": null @@ -74837,14 +76613,231 @@ "defaultValue": null }, { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", + "name": "last", + "description": "Only read the last `n` values of the set.", "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "defaultValue": "NO" + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `FormChange`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FormChangesOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FormChangesConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": "The `CifUser` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "CifUser", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CifUserCifUsersByFormChangeUpdatedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `FormChange`.", + "fields": [ + { + "name": "edges", + "description": "A list of edges which contains the `CifUser`, info from the `FormChange`, and the cursor to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CifUserCifUsersByFormChangeUpdatedByAndCreatedByManyToManyEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": "A list of `CifUser` objects.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CifUser", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": "The count of *all* `CifUser` you could get from the connection.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CifUserCifUsersByFormChangeUpdatedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `FormChange`.", + "fields": [ + { + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "formChangesByCreatedBy", + "description": "Reads and enables pagination through a set of `FormChange`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "FormChangeCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "FormChangeFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { "name": "last", @@ -74868,7 +76861,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Form`.", + "description": "The method to use when ordering `FormChange`.", "type": { "kind": "LIST", "name": null, @@ -74877,7 +76870,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FormsOrderBy", + "name": "FormChangesOrderBy", "ofType": null } } @@ -74890,7 +76883,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FormsConnection", + "name": "FormChangesConnection", "ofType": null } }, @@ -74917,7 +76910,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFormUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByFormCreatedByAndArchivedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `Form`.", "fields": [ { @@ -74935,7 +76928,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFormUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByFormCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -75004,7 +76997,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFormUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByFormCreatedByAndArchivedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `Form`.", "fields": [ { @@ -75020,7 +77013,7 @@ "deprecationReason": null }, { - "name": "formsByCreatedBy", + "name": "formsByArchivedBy", "description": "Reads and enables pagination through a set of `Form`.", "args": [ { @@ -75154,12 +77147,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingParameterArchivedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `FundingParameter`.", + "name": "CifUserCifUsersByFormCreatedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Form`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `FundingParameter`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `Form`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -75172,7 +77165,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingParameterArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByFormCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -75241,8 +77234,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingParameterArchivedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `FundingParameter`.", + "name": "CifUserCifUsersByFormCreatedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `Form`.", "fields": [ { "name": "cursor", @@ -75257,8 +77250,8 @@ "deprecationReason": null }, { - "name": "fundingParametersByCreatedBy", - "description": "Reads and enables pagination through a set of `FundingParameter`.", + "name": "formsByUpdatedBy", + "description": "Reads and enables pagination through a set of `Form`.", "args": [ { "name": "after", @@ -75285,7 +77278,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingParameterCondition", + "name": "FormCondition", "ofType": null }, "defaultValue": null @@ -75295,7 +77288,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingParameterFilter", + "name": "FormFilter", "ofType": null }, "defaultValue": null @@ -75342,7 +77335,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingParameter`.", + "description": "The method to use when ordering `Form`.", "type": { "kind": "LIST", "name": null, @@ -75351,7 +77344,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingParametersOrderBy", + "name": "FormsOrderBy", "ofType": null } } @@ -75364,7 +77357,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingParametersConnection", + "name": "FormsConnection", "ofType": null } }, @@ -75391,12 +77384,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingParameterArchivedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `FundingParameter`.", + "name": "CifUserCifUsersByFormUpdatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Form`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `FundingParameter`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `Form`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -75409,7 +77402,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingParameterArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByFormUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -75478,8 +77471,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingParameterArchivedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `FundingParameter`.", + "name": "CifUserCifUsersByFormUpdatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `Form`.", "fields": [ { "name": "cursor", @@ -75494,8 +77487,8 @@ "deprecationReason": null }, { - "name": "fundingParametersByUpdatedBy", - "description": "Reads and enables pagination through a set of `FundingParameter`.", + "name": "formsByArchivedBy", + "description": "Reads and enables pagination through a set of `Form`.", "args": [ { "name": "after", @@ -75522,7 +77515,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingParameterCondition", + "name": "FormCondition", "ofType": null }, "defaultValue": null @@ -75532,7 +77525,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingParameterFilter", + "name": "FormFilter", "ofType": null }, "defaultValue": null @@ -75579,7 +77572,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingParameter`.", + "description": "The method to use when ordering `Form`.", "type": { "kind": "LIST", "name": null, @@ -75588,7 +77581,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingParametersOrderBy", + "name": "FormsOrderBy", "ofType": null } } @@ -75601,7 +77594,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingParametersConnection", + "name": "FormsConnection", "ofType": null } }, @@ -75628,12 +77621,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingParameterCreatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `FundingParameter`.", + "name": "CifUserCifUsersByFormUpdatedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Form`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `FundingParameter`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `Form`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -75646,7 +77639,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingParameterCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByFormUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -75715,8 +77708,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingParameterCreatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `FundingParameter`.", + "name": "CifUserCifUsersByFormUpdatedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `Form`.", "fields": [ { "name": "cursor", @@ -75731,8 +77724,8 @@ "deprecationReason": null }, { - "name": "fundingParametersByArchivedBy", - "description": "Reads and enables pagination through a set of `FundingParameter`.", + "name": "formsByCreatedBy", + "description": "Reads and enables pagination through a set of `Form`.", "args": [ { "name": "after", @@ -75759,7 +77752,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingParameterCondition", + "name": "FormCondition", "ofType": null }, "defaultValue": null @@ -75769,7 +77762,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingParameterFilter", + "name": "FormFilter", "ofType": null }, "defaultValue": null @@ -75816,7 +77809,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingParameter`.", + "description": "The method to use when ordering `Form`.", "type": { "kind": "LIST", "name": null, @@ -75825,7 +77818,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingParametersOrderBy", + "name": "FormsOrderBy", "ofType": null } } @@ -75838,7 +77831,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingParametersConnection", + "name": "FormsConnection", "ofType": null } }, @@ -75865,7 +77858,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingParameterCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByFundingParameterArchivedByAndCreatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `FundingParameter`.", "fields": [ { @@ -75883,7 +77876,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingParameterCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByFundingParameterArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -75952,7 +77945,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingParameterCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByFundingParameterArchivedByAndCreatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `FundingParameter`.", "fields": [ { @@ -75968,7 +77961,7 @@ "deprecationReason": null }, { - "name": "fundingParametersByUpdatedBy", + "name": "fundingParametersByCreatedBy", "description": "Reads and enables pagination through a set of `FundingParameter`.", "args": [ { @@ -76102,7 +78095,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingParameterUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByFundingParameterArchivedByAndUpdatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `FundingParameter`.", "fields": [ { @@ -76120,7 +78113,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingParameterUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByFundingParameterArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -76189,7 +78182,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingParameterUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByFundingParameterArchivedByAndUpdatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `FundingParameter`.", "fields": [ { @@ -76205,7 +78198,7 @@ "deprecationReason": null }, { - "name": "fundingParametersByArchivedBy", + "name": "fundingParametersByUpdatedBy", "description": "Reads and enables pagination through a set of `FundingParameter`.", "args": [ { @@ -76339,7 +78332,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingParameterUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByFundingParameterCreatedByAndArchivedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `FundingParameter`.", "fields": [ { @@ -76357,7 +78350,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingParameterUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByFundingParameterCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -76426,7 +78419,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingParameterUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByFundingParameterCreatedByAndArchivedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `FundingParameter`.", "fields": [ { @@ -76442,7 +78435,7 @@ "deprecationReason": null }, { - "name": "fundingParametersByCreatedBy", + "name": "fundingParametersByArchivedBy", "description": "Reads and enables pagination through a set of `FundingParameter`.", "args": [ { @@ -76576,12 +78569,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamArchivedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `FundingStream`.", + "name": "CifUserCifUsersByFundingParameterCreatedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `FundingParameter`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `FundingStream`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `FundingParameter`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -76594,7 +78587,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByFundingParameterCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -76663,8 +78656,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamArchivedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `FundingStream`.", + "name": "CifUserCifUsersByFundingParameterCreatedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `FundingParameter`.", "fields": [ { "name": "cursor", @@ -76679,8 +78672,8 @@ "deprecationReason": null }, { - "name": "fundingStreamsByCreatedBy", - "description": "Reads and enables pagination through a set of `FundingStream`.", + "name": "fundingParametersByUpdatedBy", + "description": "Reads and enables pagination through a set of `FundingParameter`.", "args": [ { "name": "after", @@ -76707,7 +78700,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamCondition", + "name": "FundingParameterCondition", "ofType": null }, "defaultValue": null @@ -76717,7 +78710,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamFilter", + "name": "FundingParameterFilter", "ofType": null }, "defaultValue": null @@ -76764,7 +78757,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStream`.", + "description": "The method to use when ordering `FundingParameter`.", "type": { "kind": "LIST", "name": null, @@ -76773,7 +78766,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamsOrderBy", + "name": "FundingParametersOrderBy", "ofType": null } } @@ -76786,7 +78779,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingStreamsConnection", + "name": "FundingParametersConnection", "ofType": null } }, @@ -76813,12 +78806,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamArchivedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `FundingStream`.", + "name": "CifUserCifUsersByFundingParameterUpdatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `FundingParameter`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `FundingStream`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `FundingParameter`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -76831,7 +78824,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByFundingParameterUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -76900,8 +78893,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamArchivedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `FundingStream`.", + "name": "CifUserCifUsersByFundingParameterUpdatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `FundingParameter`.", "fields": [ { "name": "cursor", @@ -76916,8 +78909,8 @@ "deprecationReason": null }, { - "name": "fundingStreamsByUpdatedBy", - "description": "Reads and enables pagination through a set of `FundingStream`.", + "name": "fundingParametersByArchivedBy", + "description": "Reads and enables pagination through a set of `FundingParameter`.", "args": [ { "name": "after", @@ -76944,7 +78937,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamCondition", + "name": "FundingParameterCondition", "ofType": null }, "defaultValue": null @@ -76954,7 +78947,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamFilter", + "name": "FundingParameterFilter", "ofType": null }, "defaultValue": null @@ -77001,7 +78994,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStream`.", + "description": "The method to use when ordering `FundingParameter`.", "type": { "kind": "LIST", "name": null, @@ -77010,7 +79003,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamsOrderBy", + "name": "FundingParametersOrderBy", "ofType": null } } @@ -77023,7 +79016,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingStreamsConnection", + "name": "FundingParametersConnection", "ofType": null } }, @@ -77050,12 +79043,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamCreatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `FundingStream`.", + "name": "CifUserCifUsersByFundingParameterUpdatedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `FundingParameter`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `FundingStream`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `FundingParameter`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -77068,7 +79061,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByFundingParameterUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -77137,8 +79130,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamCreatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `FundingStream`.", + "name": "CifUserCifUsersByFundingParameterUpdatedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `FundingParameter`.", "fields": [ { "name": "cursor", @@ -77153,8 +79146,8 @@ "deprecationReason": null }, { - "name": "fundingStreamsByArchivedBy", - "description": "Reads and enables pagination through a set of `FundingStream`.", + "name": "fundingParametersByCreatedBy", + "description": "Reads and enables pagination through a set of `FundingParameter`.", "args": [ { "name": "after", @@ -77181,7 +79174,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamCondition", + "name": "FundingParameterCondition", "ofType": null }, "defaultValue": null @@ -77191,7 +79184,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamFilter", + "name": "FundingParameterFilter", "ofType": null }, "defaultValue": null @@ -77238,7 +79231,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStream`.", + "description": "The method to use when ordering `FundingParameter`.", "type": { "kind": "LIST", "name": null, @@ -77247,7 +79240,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamsOrderBy", + "name": "FundingParametersOrderBy", "ofType": null } } @@ -77260,7 +79253,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingStreamsConnection", + "name": "FundingParametersConnection", "ofType": null } }, @@ -77287,7 +79280,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByFundingStreamArchivedByAndCreatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `FundingStream`.", "fields": [ { @@ -77305,7 +79298,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByFundingStreamArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -77374,7 +79367,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByFundingStreamArchivedByAndCreatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `FundingStream`.", "fields": [ { @@ -77390,7 +79383,7 @@ "deprecationReason": null }, { - "name": "fundingStreamsByUpdatedBy", + "name": "fundingStreamsByCreatedBy", "description": "Reads and enables pagination through a set of `FundingStream`.", "args": [ { @@ -77524,12 +79517,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamProjectStatusArchivedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `FundingStreamProjectStatus`.", + "name": "CifUserCifUsersByFundingStreamArchivedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `FundingStream`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `FundingStreamProjectStatus`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `FundingStream`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -77542,7 +79535,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamProjectStatusArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByFundingStreamArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -77611,8 +79604,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamProjectStatusArchivedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `FundingStreamProjectStatus`.", + "name": "CifUserCifUsersByFundingStreamArchivedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `FundingStream`.", "fields": [ { "name": "cursor", @@ -77627,8 +79620,8 @@ "deprecationReason": null }, { - "name": "fundingStreamProjectStatusesByCreatedBy", - "description": "Reads and enables pagination through a set of `FundingStreamProjectStatus`.", + "name": "fundingStreamsByUpdatedBy", + "description": "Reads and enables pagination through a set of `FundingStream`.", "args": [ { "name": "after", @@ -77655,7 +79648,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamProjectStatusCondition", + "name": "FundingStreamCondition", "ofType": null }, "defaultValue": null @@ -77665,7 +79658,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamProjectStatusFilter", + "name": "FundingStreamFilter", "ofType": null }, "defaultValue": null @@ -77712,7 +79705,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStreamProjectStatus`.", + "description": "The method to use when ordering `FundingStream`.", "type": { "kind": "LIST", "name": null, @@ -77721,7 +79714,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamProjectStatusesOrderBy", + "name": "FundingStreamsOrderBy", "ofType": null } } @@ -77734,7 +79727,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingStreamProjectStatusesConnection", + "name": "FundingStreamsConnection", "ofType": null } }, @@ -77761,12 +79754,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamProjectStatusArchivedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `FundingStreamProjectStatus`.", + "name": "CifUserCifUsersByFundingStreamCreatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `FundingStream`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `FundingStreamProjectStatus`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `FundingStream`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -77779,7 +79772,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamProjectStatusArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByFundingStreamCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -77848,8 +79841,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamProjectStatusArchivedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `FundingStreamProjectStatus`.", + "name": "CifUserCifUsersByFundingStreamCreatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `FundingStream`.", "fields": [ { "name": "cursor", @@ -77864,8 +79857,8 @@ "deprecationReason": null }, { - "name": "fundingStreamProjectStatusesByUpdatedBy", - "description": "Reads and enables pagination through a set of `FundingStreamProjectStatus`.", + "name": "fundingStreamsByArchivedBy", + "description": "Reads and enables pagination through a set of `FundingStream`.", "args": [ { "name": "after", @@ -77892,7 +79885,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamProjectStatusCondition", + "name": "FundingStreamCondition", "ofType": null }, "defaultValue": null @@ -77902,7 +79895,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamProjectStatusFilter", + "name": "FundingStreamFilter", "ofType": null }, "defaultValue": null @@ -77949,7 +79942,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStreamProjectStatus`.", + "description": "The method to use when ordering `FundingStream`.", "type": { "kind": "LIST", "name": null, @@ -77958,7 +79951,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamProjectStatusesOrderBy", + "name": "FundingStreamsOrderBy", "ofType": null } } @@ -77971,7 +79964,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingStreamProjectStatusesConnection", + "name": "FundingStreamsConnection", "ofType": null } }, @@ -77998,12 +79991,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamProjectStatusCreatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `FundingStreamProjectStatus`.", + "name": "CifUserCifUsersByFundingStreamCreatedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `FundingStream`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `FundingStreamProjectStatus`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `FundingStream`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -78016,7 +80009,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamProjectStatusCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByFundingStreamCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -78085,7 +80078,244 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamProjectStatusCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByFundingStreamCreatedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `FundingStream`.", + "fields": [ + { + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fundingStreamsByUpdatedBy", + "description": "Reads and enables pagination through a set of `FundingStream`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "FundingStreamCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "FundingStreamFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `FundingStream`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FundingStreamsOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FundingStreamsConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": "The `CifUser` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "CifUser", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CifUserCifUsersByFundingStreamProjectStatusArchivedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `FundingStreamProjectStatus`.", + "fields": [ + { + "name": "edges", + "description": "A list of edges which contains the `CifUser`, info from the `FundingStreamProjectStatus`, and the cursor to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CifUserCifUsersByFundingStreamProjectStatusArchivedByAndCreatedByManyToManyEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": "A list of `CifUser` objects.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CifUser", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": "The count of *all* `CifUser` you could get from the connection.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CifUserCifUsersByFundingStreamProjectStatusArchivedByAndCreatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `FundingStreamProjectStatus`.", "fields": [ { @@ -78101,7 +80331,7 @@ "deprecationReason": null }, { - "name": "fundingStreamProjectStatusesByArchivedBy", + "name": "fundingStreamProjectStatusesByCreatedBy", "description": "Reads and enables pagination through a set of `FundingStreamProjectStatus`.", "args": [ { @@ -78235,7 +80465,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamProjectStatusCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByFundingStreamProjectStatusArchivedByAndUpdatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `FundingStreamProjectStatus`.", "fields": [ { @@ -78253,7 +80483,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamProjectStatusCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByFundingStreamProjectStatusArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -78322,7 +80552,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamProjectStatusCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByFundingStreamProjectStatusArchivedByAndUpdatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `FundingStreamProjectStatus`.", "fields": [ { @@ -78472,7 +80702,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamProjectStatusUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByFundingStreamProjectStatusCreatedByAndArchivedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `FundingStreamProjectStatus`.", "fields": [ { @@ -78490,7 +80720,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamProjectStatusUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByFundingStreamProjectStatusCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -78559,7 +80789,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamProjectStatusUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByFundingStreamProjectStatusCreatedByAndArchivedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `FundingStreamProjectStatus`.", "fields": [ { @@ -78709,7 +80939,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamProjectStatusUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByFundingStreamProjectStatusCreatedByAndUpdatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `FundingStreamProjectStatus`.", "fields": [ { @@ -78727,7 +80957,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamProjectStatusUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByFundingStreamProjectStatusCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -78796,7 +81026,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamProjectStatusUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByFundingStreamProjectStatusCreatedByAndUpdatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `FundingStreamProjectStatus`.", "fields": [ { @@ -78812,7 +81042,7 @@ "deprecationReason": null }, { - "name": "fundingStreamProjectStatusesByCreatedBy", + "name": "fundingStreamProjectStatusesByUpdatedBy", "description": "Reads and enables pagination through a set of `FundingStreamProjectStatus`.", "args": [ { @@ -78946,12 +81176,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamRfpArchivedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `FundingStreamRfp`.", + "name": "CifUserCifUsersByFundingStreamProjectStatusUpdatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `FundingStreamProjectStatus`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `FundingStreamRfp`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `FundingStreamProjectStatus`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -78964,7 +81194,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamRfpArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByFundingStreamProjectStatusUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -79033,8 +81263,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamRfpArchivedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `FundingStreamRfp`.", + "name": "CifUserCifUsersByFundingStreamProjectStatusUpdatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `FundingStreamProjectStatus`.", "fields": [ { "name": "cursor", @@ -79049,8 +81279,8 @@ "deprecationReason": null }, { - "name": "fundingStreamRfpsByCreatedBy", - "description": "Reads and enables pagination through a set of `FundingStreamRfp`.", + "name": "fundingStreamProjectStatusesByArchivedBy", + "description": "Reads and enables pagination through a set of `FundingStreamProjectStatus`.", "args": [ { "name": "after", @@ -79077,7 +81307,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamRfpCondition", + "name": "FundingStreamProjectStatusCondition", "ofType": null }, "defaultValue": null @@ -79087,7 +81317,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamRfpFilter", + "name": "FundingStreamProjectStatusFilter", "ofType": null }, "defaultValue": null @@ -79134,7 +81364,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStreamRfp`.", + "description": "The method to use when ordering `FundingStreamProjectStatus`.", "type": { "kind": "LIST", "name": null, @@ -79143,7 +81373,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamRfpsOrderBy", + "name": "FundingStreamProjectStatusesOrderBy", "ofType": null } } @@ -79156,7 +81386,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingStreamRfpsConnection", + "name": "FundingStreamProjectStatusesConnection", "ofType": null } }, @@ -79183,12 +81413,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamRfpArchivedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `FundingStreamRfp`.", + "name": "CifUserCifUsersByFundingStreamProjectStatusUpdatedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `FundingStreamProjectStatus`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `FundingStreamRfp`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `FundingStreamProjectStatus`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -79201,7 +81431,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamRfpArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByFundingStreamProjectStatusUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -79270,8 +81500,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamRfpArchivedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `FundingStreamRfp`.", + "name": "CifUserCifUsersByFundingStreamProjectStatusUpdatedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `FundingStreamProjectStatus`.", "fields": [ { "name": "cursor", @@ -79286,8 +81516,8 @@ "deprecationReason": null }, { - "name": "fundingStreamRfpsByUpdatedBy", - "description": "Reads and enables pagination through a set of `FundingStreamRfp`.", + "name": "fundingStreamProjectStatusesByCreatedBy", + "description": "Reads and enables pagination through a set of `FundingStreamProjectStatus`.", "args": [ { "name": "after", @@ -79314,7 +81544,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamRfpCondition", + "name": "FundingStreamProjectStatusCondition", "ofType": null }, "defaultValue": null @@ -79324,7 +81554,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamRfpFilter", + "name": "FundingStreamProjectStatusFilter", "ofType": null }, "defaultValue": null @@ -79371,7 +81601,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStreamRfp`.", + "description": "The method to use when ordering `FundingStreamProjectStatus`.", "type": { "kind": "LIST", "name": null, @@ -79380,7 +81610,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamRfpsOrderBy", + "name": "FundingStreamProjectStatusesOrderBy", "ofType": null } } @@ -79393,7 +81623,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingStreamRfpsConnection", + "name": "FundingStreamProjectStatusesConnection", "ofType": null } }, @@ -79420,7 +81650,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamRfpCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByFundingStreamRfpArchivedByAndCreatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `FundingStreamRfp`.", "fields": [ { @@ -79438,7 +81668,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamRfpCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByFundingStreamRfpArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -79507,7 +81737,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamRfpCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByFundingStreamRfpArchivedByAndCreatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `FundingStreamRfp`.", "fields": [ { @@ -79523,7 +81753,7 @@ "deprecationReason": null }, { - "name": "fundingStreamRfpsByArchivedBy", + "name": "fundingStreamRfpsByCreatedBy", "description": "Reads and enables pagination through a set of `FundingStreamRfp`.", "args": [ { @@ -79657,7 +81887,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamRfpCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByFundingStreamRfpArchivedByAndUpdatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `FundingStreamRfp`.", "fields": [ { @@ -79675,7 +81905,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamRfpCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByFundingStreamRfpArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -79744,7 +81974,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamRfpCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByFundingStreamRfpArchivedByAndUpdatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `FundingStreamRfp`.", "fields": [ { @@ -79894,7 +82124,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamRfpUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByFundingStreamRfpCreatedByAndArchivedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `FundingStreamRfp`.", "fields": [ { @@ -79912,7 +82142,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamRfpUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByFundingStreamRfpCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -79981,7 +82211,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamRfpUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByFundingStreamRfpCreatedByAndArchivedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `FundingStreamRfp`.", "fields": [ { @@ -80131,7 +82361,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamRfpUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByFundingStreamRfpCreatedByAndUpdatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `FundingStreamRfp`.", "fields": [ { @@ -80149,7 +82379,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamRfpUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByFundingStreamRfpCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -80218,7 +82448,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamRfpUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByFundingStreamRfpCreatedByAndUpdatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `FundingStreamRfp`.", "fields": [ { @@ -80234,7 +82464,7 @@ "deprecationReason": null }, { - "name": "fundingStreamRfpsByCreatedBy", + "name": "fundingStreamRfpsByUpdatedBy", "description": "Reads and enables pagination through a set of `FundingStreamRfp`.", "args": [ { @@ -80368,12 +82598,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamUpdatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `FundingStream`.", + "name": "CifUserCifUsersByFundingStreamRfpUpdatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `FundingStreamRfp`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `FundingStream`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `FundingStreamRfp`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -80386,7 +82616,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByFundingStreamRfpUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -80455,8 +82685,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamUpdatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `FundingStream`.", + "name": "CifUserCifUsersByFundingStreamRfpUpdatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `FundingStreamRfp`.", "fields": [ { "name": "cursor", @@ -80471,8 +82701,8 @@ "deprecationReason": null }, { - "name": "fundingStreamsByArchivedBy", - "description": "Reads and enables pagination through a set of `FundingStream`.", + "name": "fundingStreamRfpsByArchivedBy", + "description": "Reads and enables pagination through a set of `FundingStreamRfp`.", "args": [ { "name": "after", @@ -80499,7 +82729,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamCondition", + "name": "FundingStreamRfpCondition", "ofType": null }, "defaultValue": null @@ -80509,7 +82739,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamFilter", + "name": "FundingStreamRfpFilter", "ofType": null }, "defaultValue": null @@ -80556,7 +82786,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStream`.", + "description": "The method to use when ordering `FundingStreamRfp`.", "type": { "kind": "LIST", "name": null, @@ -80565,7 +82795,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamsOrderBy", + "name": "FundingStreamRfpsOrderBy", "ofType": null } } @@ -80578,7 +82808,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingStreamsConnection", + "name": "FundingStreamRfpsConnection", "ofType": null } }, @@ -80605,12 +82835,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamUpdatedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `FundingStream`.", + "name": "CifUserCifUsersByFundingStreamRfpUpdatedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `FundingStreamRfp`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `FundingStream`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `FundingStreamRfp`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -80623,7 +82853,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByFundingStreamRfpUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -80692,8 +82922,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByFundingStreamUpdatedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `FundingStream`.", + "name": "CifUserCifUsersByFundingStreamRfpUpdatedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `FundingStreamRfp`.", "fields": [ { "name": "cursor", @@ -80708,8 +82938,8 @@ "deprecationReason": null }, { - "name": "fundingStreamsByCreatedBy", - "description": "Reads and enables pagination through a set of `FundingStream`.", + "name": "fundingStreamRfpsByCreatedBy", + "description": "Reads and enables pagination through a set of `FundingStreamRfp`.", "args": [ { "name": "after", @@ -80736,7 +82966,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamCondition", + "name": "FundingStreamRfpCondition", "ofType": null }, "defaultValue": null @@ -80746,7 +82976,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamFilter", + "name": "FundingStreamRfpFilter", "ofType": null }, "defaultValue": null @@ -80793,7 +83023,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStream`.", + "description": "The method to use when ordering `FundingStreamRfp`.", "type": { "kind": "LIST", "name": null, @@ -80802,7 +83032,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamsOrderBy", + "name": "FundingStreamRfpsOrderBy", "ofType": null } } @@ -80815,7 +83045,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingStreamsConnection", + "name": "FundingStreamRfpsConnection", "ofType": null } }, @@ -80842,12 +83072,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByMilestoneReportArchivedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `MilestoneReport`.", + "name": "CifUserCifUsersByFundingStreamUpdatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `FundingStream`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `MilestoneReport`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `FundingStream`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -80860,7 +83090,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByMilestoneReportArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByFundingStreamUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -80929,8 +83159,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByMilestoneReportArchivedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `MilestoneReport`.", + "name": "CifUserCifUsersByFundingStreamUpdatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `FundingStream`.", "fields": [ { "name": "cursor", @@ -80945,8 +83175,8 @@ "deprecationReason": null }, { - "name": "milestoneReportsByCreatedBy", - "description": "Reads and enables pagination through a set of `MilestoneReport`.", + "name": "fundingStreamsByArchivedBy", + "description": "Reads and enables pagination through a set of `FundingStream`.", "args": [ { "name": "after", @@ -80973,7 +83203,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "MilestoneReportCondition", + "name": "FundingStreamCondition", "ofType": null }, "defaultValue": null @@ -80983,7 +83213,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "MilestoneReportFilter", + "name": "FundingStreamFilter", "ofType": null }, "defaultValue": null @@ -81030,7 +83260,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `MilestoneReport`.", + "description": "The method to use when ordering `FundingStream`.", "type": { "kind": "LIST", "name": null, @@ -81039,7 +83269,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "MilestoneReportsOrderBy", + "name": "FundingStreamsOrderBy", "ofType": null } } @@ -81052,7 +83282,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "MilestoneReportsConnection", + "name": "FundingStreamsConnection", "ofType": null } }, @@ -81079,12 +83309,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByMilestoneReportArchivedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `MilestoneReport`.", + "name": "CifUserCifUsersByFundingStreamUpdatedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `FundingStream`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `MilestoneReport`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `FundingStream`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -81097,7 +83327,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByMilestoneReportArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByFundingStreamUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -81166,8 +83396,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByMilestoneReportArchivedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `MilestoneReport`.", + "name": "CifUserCifUsersByFundingStreamUpdatedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `FundingStream`.", "fields": [ { "name": "cursor", @@ -81182,8 +83412,8 @@ "deprecationReason": null }, { - "name": "milestoneReportsByUpdatedBy", - "description": "Reads and enables pagination through a set of `MilestoneReport`.", + "name": "fundingStreamsByCreatedBy", + "description": "Reads and enables pagination through a set of `FundingStream`.", "args": [ { "name": "after", @@ -81210,7 +83440,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "MilestoneReportCondition", + "name": "FundingStreamCondition", "ofType": null }, "defaultValue": null @@ -81220,7 +83450,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "MilestoneReportFilter", + "name": "FundingStreamFilter", "ofType": null }, "defaultValue": null @@ -81267,7 +83497,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `MilestoneReport`.", + "description": "The method to use when ordering `FundingStream`.", "type": { "kind": "LIST", "name": null, @@ -81276,7 +83506,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "MilestoneReportsOrderBy", + "name": "FundingStreamsOrderBy", "ofType": null } } @@ -81289,7 +83519,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "MilestoneReportsConnection", + "name": "FundingStreamsConnection", "ofType": null } }, @@ -81316,7 +83546,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByMilestoneReportCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByMilestoneReportArchivedByAndCreatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `MilestoneReport`.", "fields": [ { @@ -81334,7 +83564,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByMilestoneReportCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByMilestoneReportArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -81403,7 +83633,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByMilestoneReportCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByMilestoneReportArchivedByAndCreatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `MilestoneReport`.", "fields": [ { @@ -81419,7 +83649,7 @@ "deprecationReason": null }, { - "name": "milestoneReportsByArchivedBy", + "name": "milestoneReportsByCreatedBy", "description": "Reads and enables pagination through a set of `MilestoneReport`.", "args": [ { @@ -81553,7 +83783,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByMilestoneReportCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByMilestoneReportArchivedByAndUpdatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `MilestoneReport`.", "fields": [ { @@ -81571,7 +83801,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByMilestoneReportCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByMilestoneReportArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -81640,7 +83870,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByMilestoneReportCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByMilestoneReportArchivedByAndUpdatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `MilestoneReport`.", "fields": [ { @@ -81790,7 +84020,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByMilestoneReportUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByMilestoneReportCreatedByAndArchivedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `MilestoneReport`.", "fields": [ { @@ -81808,7 +84038,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByMilestoneReportUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByMilestoneReportCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -81877,7 +84107,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByMilestoneReportUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByMilestoneReportCreatedByAndArchivedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `MilestoneReport`.", "fields": [ { @@ -82027,7 +84257,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByMilestoneReportUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByMilestoneReportCreatedByAndUpdatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `MilestoneReport`.", "fields": [ { @@ -82045,7 +84275,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByMilestoneReportUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByMilestoneReportCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -82114,7 +84344,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByMilestoneReportUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByMilestoneReportCreatedByAndUpdatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `MilestoneReport`.", "fields": [ { @@ -82130,7 +84360,7 @@ "deprecationReason": null }, { - "name": "milestoneReportsByCreatedBy", + "name": "milestoneReportsByUpdatedBy", "description": "Reads and enables pagination through a set of `MilestoneReport`.", "args": [ { @@ -82264,12 +84494,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByOperatorArchivedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Operator`.", + "name": "CifUserCifUsersByMilestoneReportUpdatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `MilestoneReport`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Operator`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `MilestoneReport`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -82282,7 +84512,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByOperatorArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByMilestoneReportUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -82351,8 +84581,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByOperatorArchivedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `Operator`.", + "name": "CifUserCifUsersByMilestoneReportUpdatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `MilestoneReport`.", "fields": [ { "name": "cursor", @@ -82367,20 +84597,8 @@ "deprecationReason": null }, { - "name": "node", - "description": "The `CifUser` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "CifUser", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "operatorsByCreatedBy", - "description": "Reads and enables pagination through a set of `Operator`.", + "name": "milestoneReportsByArchivedBy", + "description": "Reads and enables pagination through a set of `MilestoneReport`.", "args": [ { "name": "after", @@ -82407,7 +84625,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "OperatorCondition", + "name": "MilestoneReportCondition", "ofType": null }, "defaultValue": null @@ -82417,7 +84635,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "OperatorFilter", + "name": "MilestoneReportFilter", "ofType": null }, "defaultValue": null @@ -82464,7 +84682,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Operator`.", + "description": "The method to use when ordering `MilestoneReport`.", "type": { "kind": "LIST", "name": null, @@ -82473,7 +84691,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "OperatorsOrderBy", + "name": "MilestoneReportsOrderBy", "ofType": null } } @@ -82486,12 +84704,24 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "OperatorsConnection", + "name": "MilestoneReportsConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "node", + "description": "The `CifUser` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "CifUser", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -82501,12 +84731,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByOperatorArchivedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Operator`.", + "name": "CifUserCifUsersByMilestoneReportUpdatedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `MilestoneReport`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Operator`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `MilestoneReport`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -82519,7 +84749,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByOperatorArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByMilestoneReportUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -82588,7 +84818,244 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByOperatorArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByMilestoneReportUpdatedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `MilestoneReport`.", + "fields": [ + { + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "milestoneReportsByCreatedBy", + "description": "Reads and enables pagination through a set of `MilestoneReport`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "MilestoneReportCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "MilestoneReportFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `MilestoneReport`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MilestoneReportsOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MilestoneReportsConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": "The `CifUser` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "CifUser", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CifUserCifUsersByOperatorArchivedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Operator`.", + "fields": [ + { + "name": "edges", + "description": "A list of edges which contains the `CifUser`, info from the `Operator`, and the cursor to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CifUserCifUsersByOperatorArchivedByAndCreatedByManyToManyEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": "A list of `CifUser` objects.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CifUser", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": "The count of *all* `CifUser` you could get from the connection.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CifUserCifUsersByOperatorArchivedByAndCreatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `Operator`.", "fields": [ { @@ -82616,7 +85083,7 @@ "deprecationReason": null }, { - "name": "operatorsByUpdatedBy", + "name": "operatorsByCreatedBy", "description": "Reads and enables pagination through a set of `Operator`.", "args": [ { @@ -82738,7 +85205,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByOperatorCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByOperatorArchivedByAndUpdatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `Operator`.", "fields": [ { @@ -82756,7 +85223,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByOperatorCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByOperatorArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -82825,7 +85292,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByOperatorCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByOperatorArchivedByAndUpdatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `Operator`.", "fields": [ { @@ -82853,7 +85320,7 @@ "deprecationReason": null }, { - "name": "operatorsByArchivedBy", + "name": "operatorsByUpdatedBy", "description": "Reads and enables pagination through a set of `Operator`.", "args": [ { @@ -82975,7 +85442,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByOperatorCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByOperatorCreatedByAndArchivedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `Operator`.", "fields": [ { @@ -82993,7 +85460,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByOperatorCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByOperatorCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -83062,7 +85529,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByOperatorCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByOperatorCreatedByAndArchivedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `Operator`.", "fields": [ { @@ -83090,7 +85557,7 @@ "deprecationReason": null }, { - "name": "operatorsByUpdatedBy", + "name": "operatorsByArchivedBy", "description": "Reads and enables pagination through a set of `Operator`.", "args": [ { @@ -83212,7 +85679,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByOperatorUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByOperatorCreatedByAndUpdatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `Operator`.", "fields": [ { @@ -83230,7 +85697,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByOperatorUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByOperatorCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -83299,7 +85766,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByOperatorUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByOperatorCreatedByAndUpdatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `Operator`.", "fields": [ { @@ -83327,7 +85794,7 @@ "deprecationReason": null }, { - "name": "operatorsByArchivedBy", + "name": "operatorsByUpdatedBy", "description": "Reads and enables pagination through a set of `Operator`.", "args": [ { @@ -83449,7 +85916,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByOperatorUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByOperatorUpdatedByAndArchivedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `Operator`.", "fields": [ { @@ -83467,7 +85934,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByOperatorUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByOperatorUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -83536,7 +86003,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByOperatorUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByOperatorUpdatedByAndArchivedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `Operator`.", "fields": [ { @@ -83564,7 +86031,7 @@ "deprecationReason": null }, { - "name": "operatorsByCreatedBy", + "name": "operatorsByArchivedBy", "description": "Reads and enables pagination through a set of `Operator`.", "args": [ { @@ -83686,12 +86153,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByPaymentArchivedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Payment`.", + "name": "CifUserCifUsersByOperatorUpdatedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Operator`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Payment`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `Operator`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -83704,7 +86171,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByPaymentArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByOperatorUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -83773,8 +86240,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByPaymentArchivedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `Payment`.", + "name": "CifUserCifUsersByOperatorUpdatedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `Operator`.", "fields": [ { "name": "cursor", @@ -83801,8 +86268,8 @@ "deprecationReason": null }, { - "name": "paymentsByCreatedBy", - "description": "Reads and enables pagination through a set of `Payment`.", + "name": "operatorsByCreatedBy", + "description": "Reads and enables pagination through a set of `Operator`.", "args": [ { "name": "after", @@ -83829,7 +86296,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "PaymentCondition", + "name": "OperatorCondition", "ofType": null }, "defaultValue": null @@ -83839,7 +86306,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "PaymentFilter", + "name": "OperatorFilter", "ofType": null }, "defaultValue": null @@ -83886,7 +86353,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Payment`.", + "description": "The method to use when ordering `Operator`.", "type": { "kind": "LIST", "name": null, @@ -83895,7 +86362,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "PaymentsOrderBy", + "name": "OperatorsOrderBy", "ofType": null } } @@ -83908,7 +86375,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PaymentsConnection", + "name": "OperatorsConnection", "ofType": null } }, @@ -83923,7 +86390,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByPaymentArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByPaymentArchivedByAndCreatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `Payment`.", "fields": [ { @@ -83941,7 +86408,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByPaymentArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByPaymentArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -84010,7 +86477,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByPaymentArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByPaymentArchivedByAndCreatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `Payment`.", "fields": [ { @@ -84038,7 +86505,7 @@ "deprecationReason": null }, { - "name": "paymentsByUpdatedBy", + "name": "paymentsByCreatedBy", "description": "Reads and enables pagination through a set of `Payment`.", "args": [ { @@ -84160,7 +86627,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByPaymentCreatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByPaymentArchivedByAndUpdatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `Payment`.", "fields": [ { @@ -84178,7 +86645,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByPaymentCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByPaymentArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -84247,7 +86714,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByPaymentCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByPaymentArchivedByAndUpdatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `Payment`.", "fields": [ { @@ -84275,7 +86742,7 @@ "deprecationReason": null }, { - "name": "paymentsByArchivedBy", + "name": "paymentsByUpdatedBy", "description": "Reads and enables pagination through a set of `Payment`.", "args": [ { @@ -84397,7 +86864,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByPaymentCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByPaymentCreatedByAndArchivedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `Payment`.", "fields": [ { @@ -84415,7 +86882,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByPaymentCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByPaymentCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -84484,7 +86951,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByPaymentCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByPaymentCreatedByAndArchivedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `Payment`.", "fields": [ { @@ -84512,7 +86979,7 @@ "deprecationReason": null }, { - "name": "paymentsByUpdatedBy", + "name": "paymentsByArchivedBy", "description": "Reads and enables pagination through a set of `Payment`.", "args": [ { @@ -84634,7 +87101,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByPaymentUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByPaymentCreatedByAndUpdatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `Payment`.", "fields": [ { @@ -84652,7 +87119,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByPaymentUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByPaymentCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -84721,7 +87188,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByPaymentUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByPaymentCreatedByAndUpdatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `Payment`.", "fields": [ { @@ -84749,7 +87216,7 @@ "deprecationReason": null }, { - "name": "paymentsByArchivedBy", + "name": "paymentsByUpdatedBy", "description": "Reads and enables pagination through a set of `Payment`.", "args": [ { @@ -84871,7 +87338,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByPaymentUpdatedByAndCreatedByManyToManyConnection", + "name": "CifUserCifUsersByPaymentUpdatedByAndArchivedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `Payment`.", "fields": [ { @@ -84889,7 +87356,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByPaymentUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByPaymentUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -84958,7 +87425,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByPaymentUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByPaymentUpdatedByAndArchivedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `Payment`.", "fields": [ { @@ -84986,7 +87453,7 @@ "deprecationReason": null }, { - "name": "paymentsByCreatedBy", + "name": "paymentsByArchivedBy", "description": "Reads and enables pagination through a set of `Payment`.", "args": [ { @@ -85108,12 +87575,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectArchivedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Project`.", + "name": "CifUserCifUsersByPaymentUpdatedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Payment`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Project`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `Payment`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -85126,7 +87593,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByPaymentUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -85195,8 +87662,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectArchivedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `Project`.", + "name": "CifUserCifUsersByPaymentUpdatedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `Payment`.", "fields": [ { "name": "cursor", @@ -85223,8 +87690,8 @@ "deprecationReason": null }, { - "name": "projectsByCreatedBy", - "description": "Reads and enables pagination through a set of `Project`.", + "name": "paymentsByCreatedBy", + "description": "Reads and enables pagination through a set of `Payment`.", "args": [ { "name": "after", @@ -85251,7 +87718,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCondition", + "name": "PaymentCondition", "ofType": null }, "defaultValue": null @@ -85261,7 +87728,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectFilter", + "name": "PaymentFilter", "ofType": null }, "defaultValue": null @@ -85308,7 +87775,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Project`.", + "description": "The method to use when ordering `Payment`.", "type": { "kind": "LIST", "name": null, @@ -85317,7 +87784,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectsOrderBy", + "name": "PaymentsOrderBy", "ofType": null } } @@ -85330,7 +87797,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectsConnection", + "name": "PaymentsConnection", "ofType": null } }, @@ -85345,7 +87812,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectArchivedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectArchivedByAndCreatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `Project`.", "fields": [ { @@ -85363,7 +87830,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -85432,7 +87899,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectArchivedByAndCreatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `Project`.", "fields": [ { @@ -85460,7 +87927,7 @@ "deprecationReason": null }, { - "name": "projectsByUpdatedBy", + "name": "projectsByCreatedBy", "description": "Reads and enables pagination through a set of `Project`.", "args": [ { @@ -85582,12 +88049,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectContactArchivedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectContact`.", + "name": "CifUserCifUsersByProjectArchivedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Project`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectContact`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `Project`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -85600,7 +88067,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectContactArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -85669,8 +88136,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectContactArchivedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectContact`.", + "name": "CifUserCifUsersByProjectArchivedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `Project`.", "fields": [ { "name": "cursor", @@ -85697,8 +88164,8 @@ "deprecationReason": null }, { - "name": "projectContactsByCreatedBy", - "description": "Reads and enables pagination through a set of `ProjectContact`.", + "name": "projectsByUpdatedBy", + "description": "Reads and enables pagination through a set of `Project`.", "args": [ { "name": "after", @@ -85725,7 +88192,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactCondition", + "name": "ProjectCondition", "ofType": null }, "defaultValue": null @@ -85735,7 +88202,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactFilter", + "name": "ProjectFilter", "ofType": null }, "defaultValue": null @@ -85782,7 +88249,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectContact`.", + "description": "The method to use when ordering `Project`.", "type": { "kind": "LIST", "name": null, @@ -85791,7 +88258,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectContactsOrderBy", + "name": "ProjectsOrderBy", "ofType": null } } @@ -85804,7 +88271,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectContactsConnection", + "name": "ProjectsConnection", "ofType": null } }, @@ -85819,12 +88286,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectContactArchivedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectContact`.", + "name": "CifUserCifUsersByProjectAttachmentArchivedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectAttachment`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectContact`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectAttachment`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -85837,7 +88304,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectContactArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectAttachmentArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -85906,8 +88373,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectContactArchivedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectContact`.", + "name": "CifUserCifUsersByProjectAttachmentArchivedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectAttachment`.", "fields": [ { "name": "cursor", @@ -85934,8 +88401,8 @@ "deprecationReason": null }, { - "name": "projectContactsByUpdatedBy", - "description": "Reads and enables pagination through a set of `ProjectContact`.", + "name": "projectAttachmentsByCreatedBy", + "description": "Reads and enables pagination through a set of `ProjectAttachment`.", "args": [ { "name": "after", @@ -85962,7 +88429,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactCondition", + "name": "ProjectAttachmentCondition", "ofType": null }, "defaultValue": null @@ -85972,7 +88439,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactFilter", + "name": "ProjectAttachmentFilter", "ofType": null }, "defaultValue": null @@ -86019,7 +88486,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectContact`.", + "description": "The method to use when ordering `ProjectAttachment`.", "type": { "kind": "LIST", "name": null, @@ -86028,7 +88495,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectContactsOrderBy", + "name": "ProjectAttachmentsOrderBy", "ofType": null } } @@ -86041,7 +88508,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectContactsConnection", + "name": "ProjectAttachmentsConnection", "ofType": null } }, @@ -86056,12 +88523,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectContactCreatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectContact`.", + "name": "CifUserCifUsersByProjectAttachmentArchivedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectAttachment`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectContact`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectAttachment`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -86074,7 +88541,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectContactCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByProjectAttachmentArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -86143,8 +88610,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectContactCreatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectContact`.", + "name": "CifUserCifUsersByProjectAttachmentArchivedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectAttachment`.", "fields": [ { "name": "cursor", @@ -86171,8 +88638,8 @@ "deprecationReason": null }, { - "name": "projectContactsByArchivedBy", - "description": "Reads and enables pagination through a set of `ProjectContact`.", + "name": "projectAttachmentsByUpdatedBy", + "description": "Reads and enables pagination through a set of `ProjectAttachment`.", "args": [ { "name": "after", @@ -86199,7 +88666,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactCondition", + "name": "ProjectAttachmentCondition", "ofType": null }, "defaultValue": null @@ -86209,7 +88676,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactFilter", + "name": "ProjectAttachmentFilter", "ofType": null }, "defaultValue": null @@ -86256,7 +88723,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectContact`.", + "description": "The method to use when ordering `ProjectAttachment`.", "type": { "kind": "LIST", "name": null, @@ -86265,7 +88732,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectContactsOrderBy", + "name": "ProjectAttachmentsOrderBy", "ofType": null } } @@ -86278,7 +88745,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectContactsConnection", + "name": "ProjectAttachmentsConnection", "ofType": null } }, @@ -86293,12 +88760,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectContactCreatedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectContact`.", + "name": "CifUserCifUsersByProjectAttachmentCreatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectAttachment`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectContact`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectAttachment`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -86311,7 +88778,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectContactCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectAttachmentCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -86380,8 +88847,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectContactCreatedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectContact`.", + "name": "CifUserCifUsersByProjectAttachmentCreatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectAttachment`.", "fields": [ { "name": "cursor", @@ -86408,8 +88875,8 @@ "deprecationReason": null }, { - "name": "projectContactsByUpdatedBy", - "description": "Reads and enables pagination through a set of `ProjectContact`.", + "name": "projectAttachmentsByArchivedBy", + "description": "Reads and enables pagination through a set of `ProjectAttachment`.", "args": [ { "name": "after", @@ -86436,7 +88903,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactCondition", + "name": "ProjectAttachmentCondition", "ofType": null }, "defaultValue": null @@ -86446,7 +88913,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactFilter", + "name": "ProjectAttachmentFilter", "ofType": null }, "defaultValue": null @@ -86493,7 +88960,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectContact`.", + "description": "The method to use when ordering `ProjectAttachment`.", "type": { "kind": "LIST", "name": null, @@ -86502,7 +88969,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectContactsOrderBy", + "name": "ProjectAttachmentsOrderBy", "ofType": null } } @@ -86515,7 +88982,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectContactsConnection", + "name": "ProjectAttachmentsConnection", "ofType": null } }, @@ -86530,12 +88997,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectContactUpdatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectContact`.", + "name": "CifUserCifUsersByProjectAttachmentCreatedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectAttachment`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectContact`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectAttachment`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -86548,7 +89015,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectContactUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByProjectAttachmentCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -86617,8 +89084,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectContactUpdatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectContact`.", + "name": "CifUserCifUsersByProjectAttachmentCreatedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectAttachment`.", "fields": [ { "name": "cursor", @@ -86645,8 +89112,8 @@ "deprecationReason": null }, { - "name": "projectContactsByArchivedBy", - "description": "Reads and enables pagination through a set of `ProjectContact`.", + "name": "projectAttachmentsByUpdatedBy", + "description": "Reads and enables pagination through a set of `ProjectAttachment`.", "args": [ { "name": "after", @@ -86673,7 +89140,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactCondition", + "name": "ProjectAttachmentCondition", "ofType": null }, "defaultValue": null @@ -86683,7 +89150,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactFilter", + "name": "ProjectAttachmentFilter", "ofType": null }, "defaultValue": null @@ -86730,7 +89197,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectContact`.", + "description": "The method to use when ordering `ProjectAttachment`.", "type": { "kind": "LIST", "name": null, @@ -86739,7 +89206,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectContactsOrderBy", + "name": "ProjectAttachmentsOrderBy", "ofType": null } } @@ -86752,7 +89219,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectContactsConnection", + "name": "ProjectAttachmentsConnection", "ofType": null } }, @@ -86767,12 +89234,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectContactUpdatedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectContact`.", + "name": "CifUserCifUsersByProjectAttachmentUpdatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectAttachment`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectContact`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectAttachment`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -86785,7 +89252,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectContactUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectAttachmentUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -86854,8 +89321,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectContactUpdatedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectContact`.", + "name": "CifUserCifUsersByProjectAttachmentUpdatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectAttachment`.", "fields": [ { "name": "cursor", @@ -86882,8 +89349,8 @@ "deprecationReason": null }, { - "name": "projectContactsByCreatedBy", - "description": "Reads and enables pagination through a set of `ProjectContact`.", + "name": "projectAttachmentsByArchivedBy", + "description": "Reads and enables pagination through a set of `ProjectAttachment`.", "args": [ { "name": "after", @@ -86910,7 +89377,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactCondition", + "name": "ProjectAttachmentCondition", "ofType": null }, "defaultValue": null @@ -86920,7 +89387,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactFilter", + "name": "ProjectAttachmentFilter", "ofType": null }, "defaultValue": null @@ -86967,7 +89434,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectContact`.", + "description": "The method to use when ordering `ProjectAttachment`.", "type": { "kind": "LIST", "name": null, @@ -86976,7 +89443,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectContactsOrderBy", + "name": "ProjectAttachmentsOrderBy", "ofType": null } } @@ -86989,7 +89456,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectContactsConnection", + "name": "ProjectAttachmentsConnection", "ofType": null } }, @@ -87004,12 +89471,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectCreatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Project`.", + "name": "CifUserCifUsersByProjectAttachmentUpdatedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectAttachment`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Project`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectAttachment`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -87022,7 +89489,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByProjectAttachmentUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -87091,8 +89558,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectCreatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `Project`.", + "name": "CifUserCifUsersByProjectAttachmentUpdatedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectAttachment`.", "fields": [ { "name": "cursor", @@ -87119,8 +89586,8 @@ "deprecationReason": null }, { - "name": "projectsByArchivedBy", - "description": "Reads and enables pagination through a set of `Project`.", + "name": "projectAttachmentsByCreatedBy", + "description": "Reads and enables pagination through a set of `ProjectAttachment`.", "args": [ { "name": "after", @@ -87147,7 +89614,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCondition", + "name": "ProjectAttachmentCondition", "ofType": null }, "defaultValue": null @@ -87157,7 +89624,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectFilter", + "name": "ProjectAttachmentFilter", "ofType": null }, "defaultValue": null @@ -87204,7 +89671,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Project`.", + "description": "The method to use when ordering `ProjectAttachment`.", "type": { "kind": "LIST", "name": null, @@ -87213,7 +89680,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectsOrderBy", + "name": "ProjectAttachmentsOrderBy", "ofType": null } } @@ -87226,7 +89693,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectsConnection", + "name": "ProjectAttachmentsConnection", "ofType": null } }, @@ -87241,12 +89708,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectCreatedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Project`.", + "name": "CifUserCifUsersByProjectContactArchivedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectContact`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Project`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectContact`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -87259,7 +89726,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectContactArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -87328,8 +89795,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectCreatedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `Project`.", + "name": "CifUserCifUsersByProjectContactArchivedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectContact`.", "fields": [ { "name": "cursor", @@ -87356,8 +89823,8 @@ "deprecationReason": null }, { - "name": "projectsByUpdatedBy", - "description": "Reads and enables pagination through a set of `Project`.", + "name": "projectContactsByCreatedBy", + "description": "Reads and enables pagination through a set of `ProjectContact`.", "args": [ { "name": "after", @@ -87384,7 +89851,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCondition", + "name": "ProjectContactCondition", "ofType": null }, "defaultValue": null @@ -87394,7 +89861,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectFilter", + "name": "ProjectContactFilter", "ofType": null }, "defaultValue": null @@ -87441,7 +89908,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Project`.", + "description": "The method to use when ordering `ProjectContact`.", "type": { "kind": "LIST", "name": null, @@ -87450,7 +89917,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectsOrderBy", + "name": "ProjectContactsOrderBy", "ofType": null } } @@ -87463,7 +89930,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectsConnection", + "name": "ProjectContactsConnection", "ofType": null } }, @@ -87478,12 +89945,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerArchivedByAndCifUserIdManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectManager`.", + "name": "CifUserCifUsersByProjectContactArchivedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectContact`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectManager`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectContact`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -87496,7 +89963,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerArchivedByAndCifUserIdManyToManyEdge", + "name": "CifUserCifUsersByProjectContactArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -87565,8 +90032,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerArchivedByAndCifUserIdManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectManager`.", + "name": "CifUserCifUsersByProjectContactArchivedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectContact`.", "fields": [ { "name": "cursor", @@ -87593,8 +90060,8 @@ "deprecationReason": null }, { - "name": "projectManagersByCifUserId", - "description": "Reads and enables pagination through a set of `ProjectManager`.", + "name": "projectContactsByUpdatedBy", + "description": "Reads and enables pagination through a set of `ProjectContact`.", "args": [ { "name": "after", @@ -87621,7 +90088,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerCondition", + "name": "ProjectContactCondition", "ofType": null }, "defaultValue": null @@ -87631,7 +90098,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerFilter", + "name": "ProjectContactFilter", "ofType": null }, "defaultValue": null @@ -87678,7 +90145,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManager`.", + "description": "The method to use when ordering `ProjectContact`.", "type": { "kind": "LIST", "name": null, @@ -87687,7 +90154,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagersOrderBy", + "name": "ProjectContactsOrderBy", "ofType": null } } @@ -87700,7 +90167,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectManagersConnection", + "name": "ProjectContactsConnection", "ofType": null } }, @@ -87715,12 +90182,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerArchivedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectManager`.", + "name": "CifUserCifUsersByProjectContactCreatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectContact`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectManager`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectContact`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -87733,7 +90200,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectContactCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -87802,8 +90269,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerArchivedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectManager`.", + "name": "CifUserCifUsersByProjectContactCreatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectContact`.", "fields": [ { "name": "cursor", @@ -87830,8 +90297,8 @@ "deprecationReason": null }, { - "name": "projectManagersByCreatedBy", - "description": "Reads and enables pagination through a set of `ProjectManager`.", + "name": "projectContactsByArchivedBy", + "description": "Reads and enables pagination through a set of `ProjectContact`.", "args": [ { "name": "after", @@ -87858,7 +90325,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerCondition", + "name": "ProjectContactCondition", "ofType": null }, "defaultValue": null @@ -87868,7 +90335,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerFilter", + "name": "ProjectContactFilter", "ofType": null }, "defaultValue": null @@ -87915,7 +90382,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManager`.", + "description": "The method to use when ordering `ProjectContact`.", "type": { "kind": "LIST", "name": null, @@ -87924,7 +90391,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagersOrderBy", + "name": "ProjectContactsOrderBy", "ofType": null } } @@ -87937,7 +90404,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectManagersConnection", + "name": "ProjectContactsConnection", "ofType": null } }, @@ -87952,12 +90419,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerArchivedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectManager`.", + "name": "CifUserCifUsersByProjectContactCreatedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectContact`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectManager`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectContact`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -87970,7 +90437,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectContactCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -88039,8 +90506,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerArchivedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectManager`.", + "name": "CifUserCifUsersByProjectContactCreatedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectContact`.", "fields": [ { "name": "cursor", @@ -88067,8 +90534,8 @@ "deprecationReason": null }, { - "name": "projectManagersByUpdatedBy", - "description": "Reads and enables pagination through a set of `ProjectManager`.", + "name": "projectContactsByUpdatedBy", + "description": "Reads and enables pagination through a set of `ProjectContact`.", "args": [ { "name": "after", @@ -88095,7 +90562,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerCondition", + "name": "ProjectContactCondition", "ofType": null }, "defaultValue": null @@ -88105,7 +90572,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerFilter", + "name": "ProjectContactFilter", "ofType": null }, "defaultValue": null @@ -88152,7 +90619,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManager`.", + "description": "The method to use when ordering `ProjectContact`.", "type": { "kind": "LIST", "name": null, @@ -88161,7 +90628,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagersOrderBy", + "name": "ProjectContactsOrderBy", "ofType": null } } @@ -88174,7 +90641,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectManagersConnection", + "name": "ProjectContactsConnection", "ofType": null } }, @@ -88189,12 +90656,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerCifUserIdAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectManager`.", + "name": "CifUserCifUsersByProjectContactUpdatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectContact`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectManager`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectContact`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -88207,7 +90674,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerCifUserIdAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByProjectContactUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -88276,8 +90743,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerCifUserIdAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectManager`.", + "name": "CifUserCifUsersByProjectContactUpdatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectContact`.", "fields": [ { "name": "cursor", @@ -88304,8 +90771,8 @@ "deprecationReason": null }, { - "name": "projectManagersByArchivedBy", - "description": "Reads and enables pagination through a set of `ProjectManager`.", + "name": "projectContactsByArchivedBy", + "description": "Reads and enables pagination through a set of `ProjectContact`.", "args": [ { "name": "after", @@ -88332,7 +90799,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerCondition", + "name": "ProjectContactCondition", "ofType": null }, "defaultValue": null @@ -88342,7 +90809,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerFilter", + "name": "ProjectContactFilter", "ofType": null }, "defaultValue": null @@ -88389,7 +90856,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManager`.", + "description": "The method to use when ordering `ProjectContact`.", "type": { "kind": "LIST", "name": null, @@ -88398,7 +90865,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagersOrderBy", + "name": "ProjectContactsOrderBy", "ofType": null } } @@ -88411,7 +90878,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectManagersConnection", + "name": "ProjectContactsConnection", "ofType": null } }, @@ -88426,12 +90893,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerCifUserIdAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectManager`.", + "name": "CifUserCifUsersByProjectContactUpdatedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectContact`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectManager`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectContact`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -88444,7 +90911,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerCifUserIdAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectContactUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -88513,8 +90980,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerCifUserIdAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectManager`.", + "name": "CifUserCifUsersByProjectContactUpdatedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectContact`.", "fields": [ { "name": "cursor", @@ -88541,8 +91008,8 @@ "deprecationReason": null }, { - "name": "projectManagersByCreatedBy", - "description": "Reads and enables pagination through a set of `ProjectManager`.", + "name": "projectContactsByCreatedBy", + "description": "Reads and enables pagination through a set of `ProjectContact`.", "args": [ { "name": "after", @@ -88569,7 +91036,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerCondition", + "name": "ProjectContactCondition", "ofType": null }, "defaultValue": null @@ -88579,7 +91046,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerFilter", + "name": "ProjectContactFilter", "ofType": null }, "defaultValue": null @@ -88626,7 +91093,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManager`.", + "description": "The method to use when ordering `ProjectContact`.", "type": { "kind": "LIST", "name": null, @@ -88635,7 +91102,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagersOrderBy", + "name": "ProjectContactsOrderBy", "ofType": null } } @@ -88648,7 +91115,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectManagersConnection", + "name": "ProjectContactsConnection", "ofType": null } }, @@ -88663,12 +91130,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerCifUserIdAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectManager`.", + "name": "CifUserCifUsersByProjectCreatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Project`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectManager`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `Project`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -88681,7 +91148,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerCifUserIdAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -88750,8 +91217,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerCifUserIdAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectManager`.", + "name": "CifUserCifUsersByProjectCreatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `Project`.", "fields": [ { "name": "cursor", @@ -88778,8 +91245,8 @@ "deprecationReason": null }, { - "name": "projectManagersByUpdatedBy", - "description": "Reads and enables pagination through a set of `ProjectManager`.", + "name": "projectsByArchivedBy", + "description": "Reads and enables pagination through a set of `Project`.", "args": [ { "name": "after", @@ -88806,7 +91273,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerCondition", + "name": "ProjectCondition", "ofType": null }, "defaultValue": null @@ -88816,7 +91283,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerFilter", + "name": "ProjectFilter", "ofType": null }, "defaultValue": null @@ -88863,7 +91330,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManager`.", + "description": "The method to use when ordering `Project`.", "type": { "kind": "LIST", "name": null, @@ -88872,7 +91339,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagersOrderBy", + "name": "ProjectsOrderBy", "ofType": null } } @@ -88885,7 +91352,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectManagersConnection", + "name": "ProjectsConnection", "ofType": null } }, @@ -88900,12 +91367,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerCreatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectManager`.", + "name": "CifUserCifUsersByProjectCreatedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Project`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectManager`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `Project`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -88918,7 +91385,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByProjectCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -88987,8 +91454,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerCreatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectManager`.", + "name": "CifUserCifUsersByProjectCreatedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `Project`.", "fields": [ { "name": "cursor", @@ -89015,8 +91482,8 @@ "deprecationReason": null }, { - "name": "projectManagersByArchivedBy", - "description": "Reads and enables pagination through a set of `ProjectManager`.", + "name": "projectsByUpdatedBy", + "description": "Reads and enables pagination through a set of `Project`.", "args": [ { "name": "after", @@ -89043,7 +91510,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerCondition", + "name": "ProjectCondition", "ofType": null }, "defaultValue": null @@ -89053,7 +91520,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerFilter", + "name": "ProjectFilter", "ofType": null }, "defaultValue": null @@ -89100,7 +91567,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManager`.", + "description": "The method to use when ordering `Project`.", "type": { "kind": "LIST", "name": null, @@ -89109,7 +91576,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagersOrderBy", + "name": "ProjectsOrderBy", "ofType": null } } @@ -89122,7 +91589,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectManagersConnection", + "name": "ProjectsConnection", "ofType": null } }, @@ -89137,7 +91604,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerCreatedByAndCifUserIdManyToManyConnection", + "name": "CifUserCifUsersByProjectManagerArchivedByAndCifUserIdManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `ProjectManager`.", "fields": [ { @@ -89155,7 +91622,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerCreatedByAndCifUserIdManyToManyEdge", + "name": "CifUserCifUsersByProjectManagerArchivedByAndCifUserIdManyToManyEdge", "ofType": null } } @@ -89224,7 +91691,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerCreatedByAndCifUserIdManyToManyEdge", + "name": "CifUserCifUsersByProjectManagerArchivedByAndCifUserIdManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `ProjectManager`.", "fields": [ { @@ -89374,7 +91841,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerCreatedByAndUpdatedByManyToManyConnection", + "name": "CifUserCifUsersByProjectManagerArchivedByAndCreatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `ProjectManager`.", "fields": [ { @@ -89392,7 +91859,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectManagerArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -89461,7 +91928,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectManagerArchivedByAndCreatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `ProjectManager`.", "fields": [ { @@ -89489,7 +91956,7 @@ "deprecationReason": null }, { - "name": "projectManagersByUpdatedBy", + "name": "projectManagersByCreatedBy", "description": "Reads and enables pagination through a set of `ProjectManager`.", "args": [ { @@ -89611,12 +92078,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerLabelArchivedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectManagerLabel`.", + "name": "CifUserCifUsersByProjectManagerArchivedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectManager`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectManagerLabel`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectManager`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -89629,7 +92096,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerLabelArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectManagerArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -89698,8 +92165,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerLabelArchivedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectManagerLabel`.", + "name": "CifUserCifUsersByProjectManagerArchivedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectManager`.", "fields": [ { "name": "cursor", @@ -89726,8 +92193,8 @@ "deprecationReason": null }, { - "name": "projectManagerLabelsByCreatedBy", - "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", + "name": "projectManagersByUpdatedBy", + "description": "Reads and enables pagination through a set of `ProjectManager`.", "args": [ { "name": "after", @@ -89754,7 +92221,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelCondition", + "name": "ProjectManagerCondition", "ofType": null }, "defaultValue": null @@ -89764,7 +92231,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelFilter", + "name": "ProjectManagerFilter", "ofType": null }, "defaultValue": null @@ -89811,7 +92278,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManagerLabel`.", + "description": "The method to use when ordering `ProjectManager`.", "type": { "kind": "LIST", "name": null, @@ -89820,7 +92287,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagerLabelsOrderBy", + "name": "ProjectManagersOrderBy", "ofType": null } } @@ -89833,7 +92300,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectManagerLabelsConnection", + "name": "ProjectManagersConnection", "ofType": null } }, @@ -89848,12 +92315,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerLabelArchivedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectManagerLabel`.", + "name": "CifUserCifUsersByProjectManagerCifUserIdAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectManager`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectManagerLabel`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectManager`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -89866,7 +92333,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerLabelArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectManagerCifUserIdAndArchivedByManyToManyEdge", "ofType": null } } @@ -89935,8 +92402,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerLabelArchivedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectManagerLabel`.", + "name": "CifUserCifUsersByProjectManagerCifUserIdAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectManager`.", "fields": [ { "name": "cursor", @@ -89963,8 +92430,8 @@ "deprecationReason": null }, { - "name": "projectManagerLabelsByUpdatedBy", - "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", + "name": "projectManagersByArchivedBy", + "description": "Reads and enables pagination through a set of `ProjectManager`.", "args": [ { "name": "after", @@ -89991,7 +92458,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelCondition", + "name": "ProjectManagerCondition", "ofType": null }, "defaultValue": null @@ -90001,7 +92468,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelFilter", + "name": "ProjectManagerFilter", "ofType": null }, "defaultValue": null @@ -90048,7 +92515,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManagerLabel`.", + "description": "The method to use when ordering `ProjectManager`.", "type": { "kind": "LIST", "name": null, @@ -90057,7 +92524,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagerLabelsOrderBy", + "name": "ProjectManagersOrderBy", "ofType": null } } @@ -90070,7 +92537,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectManagerLabelsConnection", + "name": "ProjectManagersConnection", "ofType": null } }, @@ -90085,12 +92552,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerLabelCreatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectManagerLabel`.", + "name": "CifUserCifUsersByProjectManagerCifUserIdAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectManager`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectManagerLabel`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectManager`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -90103,7 +92570,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerLabelCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByProjectManagerCifUserIdAndCreatedByManyToManyEdge", "ofType": null } } @@ -90172,8 +92639,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerLabelCreatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectManagerLabel`.", + "name": "CifUserCifUsersByProjectManagerCifUserIdAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectManager`.", "fields": [ { "name": "cursor", @@ -90200,8 +92667,8 @@ "deprecationReason": null }, { - "name": "projectManagerLabelsByArchivedBy", - "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", + "name": "projectManagersByCreatedBy", + "description": "Reads and enables pagination through a set of `ProjectManager`.", "args": [ { "name": "after", @@ -90228,7 +92695,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelCondition", + "name": "ProjectManagerCondition", "ofType": null }, "defaultValue": null @@ -90238,7 +92705,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelFilter", + "name": "ProjectManagerFilter", "ofType": null }, "defaultValue": null @@ -90285,7 +92752,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManagerLabel`.", + "description": "The method to use when ordering `ProjectManager`.", "type": { "kind": "LIST", "name": null, @@ -90294,7 +92761,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagerLabelsOrderBy", + "name": "ProjectManagersOrderBy", "ofType": null } } @@ -90307,7 +92774,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectManagerLabelsConnection", + "name": "ProjectManagersConnection", "ofType": null } }, @@ -90322,12 +92789,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerLabelCreatedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectManagerLabel`.", + "name": "CifUserCifUsersByProjectManagerCifUserIdAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectManager`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectManagerLabel`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectManager`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -90340,7 +92807,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerLabelCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectManagerCifUserIdAndUpdatedByManyToManyEdge", "ofType": null } } @@ -90409,8 +92876,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerLabelCreatedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectManagerLabel`.", + "name": "CifUserCifUsersByProjectManagerCifUserIdAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectManager`.", "fields": [ { "name": "cursor", @@ -90437,8 +92904,8 @@ "deprecationReason": null }, { - "name": "projectManagerLabelsByUpdatedBy", - "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", + "name": "projectManagersByUpdatedBy", + "description": "Reads and enables pagination through a set of `ProjectManager`.", "args": [ { "name": "after", @@ -90465,7 +92932,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelCondition", + "name": "ProjectManagerCondition", "ofType": null }, "defaultValue": null @@ -90475,7 +92942,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelFilter", + "name": "ProjectManagerFilter", "ofType": null }, "defaultValue": null @@ -90522,7 +92989,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManagerLabel`.", + "description": "The method to use when ordering `ProjectManager`.", "type": { "kind": "LIST", "name": null, @@ -90531,7 +92998,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagerLabelsOrderBy", + "name": "ProjectManagersOrderBy", "ofType": null } } @@ -90544,7 +93011,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectManagerLabelsConnection", + "name": "ProjectManagersConnection", "ofType": null } }, @@ -90559,12 +93026,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerLabelUpdatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectManagerLabel`.", + "name": "CifUserCifUsersByProjectManagerCreatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectManager`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectManagerLabel`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectManager`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -90577,7 +93044,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerLabelUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByProjectManagerCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -90646,8 +93113,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerLabelUpdatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectManagerLabel`.", + "name": "CifUserCifUsersByProjectManagerCreatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectManager`.", "fields": [ { "name": "cursor", @@ -90674,8 +93141,8 @@ "deprecationReason": null }, { - "name": "projectManagerLabelsByArchivedBy", - "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", + "name": "projectManagersByArchivedBy", + "description": "Reads and enables pagination through a set of `ProjectManager`.", "args": [ { "name": "after", @@ -90702,7 +93169,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelCondition", + "name": "ProjectManagerCondition", "ofType": null }, "defaultValue": null @@ -90712,7 +93179,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelFilter", + "name": "ProjectManagerFilter", "ofType": null }, "defaultValue": null @@ -90759,7 +93226,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManagerLabel`.", + "description": "The method to use when ordering `ProjectManager`.", "type": { "kind": "LIST", "name": null, @@ -90768,7 +93235,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagerLabelsOrderBy", + "name": "ProjectManagersOrderBy", "ofType": null } } @@ -90781,7 +93248,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectManagerLabelsConnection", + "name": "ProjectManagersConnection", "ofType": null } }, @@ -90796,12 +93263,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerLabelUpdatedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectManagerLabel`.", + "name": "CifUserCifUsersByProjectManagerCreatedByAndCifUserIdManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectManager`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectManagerLabel`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectManager`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -90814,7 +93281,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerLabelUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectManagerCreatedByAndCifUserIdManyToManyEdge", "ofType": null } } @@ -90883,8 +93350,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerLabelUpdatedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectManagerLabel`.", + "name": "CifUserCifUsersByProjectManagerCreatedByAndCifUserIdManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectManager`.", "fields": [ { "name": "cursor", @@ -90911,8 +93378,8 @@ "deprecationReason": null }, { - "name": "projectManagerLabelsByCreatedBy", - "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", + "name": "projectManagersByCifUserId", + "description": "Reads and enables pagination through a set of `ProjectManager`.", "args": [ { "name": "after", @@ -90939,7 +93406,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelCondition", + "name": "ProjectManagerCondition", "ofType": null }, "defaultValue": null @@ -90949,7 +93416,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelFilter", + "name": "ProjectManagerFilter", "ofType": null }, "defaultValue": null @@ -90996,7 +93463,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManagerLabel`.", + "description": "The method to use when ordering `ProjectManager`.", "type": { "kind": "LIST", "name": null, @@ -91005,7 +93472,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagerLabelsOrderBy", + "name": "ProjectManagersOrderBy", "ofType": null } } @@ -91018,7 +93485,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectManagerLabelsConnection", + "name": "ProjectManagersConnection", "ofType": null } }, @@ -91033,7 +93500,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerUpdatedByAndArchivedByManyToManyConnection", + "name": "CifUserCifUsersByProjectManagerCreatedByAndUpdatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `ProjectManager`.", "fields": [ { @@ -91051,7 +93518,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByProjectManagerCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -91120,7 +93587,7 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByProjectManagerCreatedByAndUpdatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `ProjectManager`.", "fields": [ { @@ -91148,7 +93615,7 @@ "deprecationReason": null }, { - "name": "projectManagersByArchivedBy", + "name": "projectManagersByUpdatedBy", "description": "Reads and enables pagination through a set of `ProjectManager`.", "args": [ { @@ -91270,12 +93737,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerUpdatedByAndCifUserIdManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectManager`.", + "name": "CifUserCifUsersByProjectManagerLabelArchivedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectManagerLabel`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectManager`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectManagerLabel`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -91288,7 +93755,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerUpdatedByAndCifUserIdManyToManyEdge", + "name": "CifUserCifUsersByProjectManagerLabelArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -91357,8 +93824,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerUpdatedByAndCifUserIdManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectManager`.", + "name": "CifUserCifUsersByProjectManagerLabelArchivedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectManagerLabel`.", "fields": [ { "name": "cursor", @@ -91385,8 +93852,8 @@ "deprecationReason": null }, { - "name": "projectManagersByCifUserId", - "description": "Reads and enables pagination through a set of `ProjectManager`.", + "name": "projectManagerLabelsByCreatedBy", + "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", "args": [ { "name": "after", @@ -91413,7 +93880,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerCondition", + "name": "ProjectManagerLabelCondition", "ofType": null }, "defaultValue": null @@ -91423,7 +93890,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerFilter", + "name": "ProjectManagerLabelFilter", "ofType": null }, "defaultValue": null @@ -91470,7 +93937,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManager`.", + "description": "The method to use when ordering `ProjectManagerLabel`.", "type": { "kind": "LIST", "name": null, @@ -91479,7 +93946,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagersOrderBy", + "name": "ProjectManagerLabelsOrderBy", "ofType": null } } @@ -91492,7 +93959,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectManagersConnection", + "name": "ProjectManagerLabelsConnection", "ofType": null } }, @@ -91507,12 +93974,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerUpdatedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectManager`.", + "name": "CifUserCifUsersByProjectManagerLabelArchivedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectManagerLabel`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectManager`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectManagerLabel`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -91525,7 +93992,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectManagerLabelArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -91594,8 +94061,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectManagerUpdatedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectManager`.", + "name": "CifUserCifUsersByProjectManagerLabelArchivedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectManagerLabel`.", "fields": [ { "name": "cursor", @@ -91622,8 +94089,8 @@ "deprecationReason": null }, { - "name": "projectManagersByCreatedBy", - "description": "Reads and enables pagination through a set of `ProjectManager`.", + "name": "projectManagerLabelsByUpdatedBy", + "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", "args": [ { "name": "after", @@ -91650,7 +94117,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerCondition", + "name": "ProjectManagerLabelCondition", "ofType": null }, "defaultValue": null @@ -91660,7 +94127,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerFilter", + "name": "ProjectManagerLabelFilter", "ofType": null }, "defaultValue": null @@ -91707,7 +94174,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManager`.", + "description": "The method to use when ordering `ProjectManagerLabel`.", "type": { "kind": "LIST", "name": null, @@ -91716,7 +94183,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagersOrderBy", + "name": "ProjectManagerLabelsOrderBy", "ofType": null } } @@ -91729,7 +94196,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectManagersConnection", + "name": "ProjectManagerLabelsConnection", "ofType": null } }, @@ -91744,12 +94211,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionAmendmentTypeArchivedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectRevisionAmendmentType`.", + "name": "CifUserCifUsersByProjectManagerLabelCreatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectManagerLabel`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectRevisionAmendmentType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectManagerLabel`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -91762,7 +94229,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionAmendmentTypeArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectManagerLabelCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -91831,8 +94298,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionAmendmentTypeArchivedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectRevisionAmendmentType`.", + "name": "CifUserCifUsersByProjectManagerLabelCreatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectManagerLabel`.", "fields": [ { "name": "cursor", @@ -91859,8 +94326,8 @@ "deprecationReason": null }, { - "name": "projectRevisionAmendmentTypesByCreatedBy", - "description": "Reads and enables pagination through a set of `ProjectRevisionAmendmentType`.", + "name": "projectManagerLabelsByArchivedBy", + "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", "args": [ { "name": "after", @@ -91887,7 +94354,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionAmendmentTypeCondition", + "name": "ProjectManagerLabelCondition", "ofType": null }, "defaultValue": null @@ -91897,7 +94364,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionAmendmentTypeFilter", + "name": "ProjectManagerLabelFilter", "ofType": null }, "defaultValue": null @@ -91944,7 +94411,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectRevisionAmendmentType`.", + "description": "The method to use when ordering `ProjectManagerLabel`.", "type": { "kind": "LIST", "name": null, @@ -91953,7 +94420,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectRevisionAmendmentTypesOrderBy", + "name": "ProjectManagerLabelsOrderBy", "ofType": null } } @@ -91966,7 +94433,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectRevisionAmendmentTypesConnection", + "name": "ProjectManagerLabelsConnection", "ofType": null } }, @@ -91981,12 +94448,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionAmendmentTypeArchivedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectRevisionAmendmentType`.", + "name": "CifUserCifUsersByProjectManagerLabelCreatedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectManagerLabel`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectRevisionAmendmentType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectManagerLabel`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -91999,7 +94466,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionAmendmentTypeArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectManagerLabelCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -92068,8 +94535,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionAmendmentTypeArchivedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectRevisionAmendmentType`.", + "name": "CifUserCifUsersByProjectManagerLabelCreatedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectManagerLabel`.", "fields": [ { "name": "cursor", @@ -92096,8 +94563,8 @@ "deprecationReason": null }, { - "name": "projectRevisionAmendmentTypesByUpdatedBy", - "description": "Reads and enables pagination through a set of `ProjectRevisionAmendmentType`.", + "name": "projectManagerLabelsByUpdatedBy", + "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", "args": [ { "name": "after", @@ -92124,7 +94591,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionAmendmentTypeCondition", + "name": "ProjectManagerLabelCondition", "ofType": null }, "defaultValue": null @@ -92134,7 +94601,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionAmendmentTypeFilter", + "name": "ProjectManagerLabelFilter", "ofType": null }, "defaultValue": null @@ -92181,7 +94648,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectRevisionAmendmentType`.", + "description": "The method to use when ordering `ProjectManagerLabel`.", "type": { "kind": "LIST", "name": null, @@ -92190,7 +94657,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectRevisionAmendmentTypesOrderBy", + "name": "ProjectManagerLabelsOrderBy", "ofType": null } } @@ -92203,7 +94670,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectRevisionAmendmentTypesConnection", + "name": "ProjectManagerLabelsConnection", "ofType": null } }, @@ -92218,12 +94685,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionAmendmentTypeCreatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectRevisionAmendmentType`.", + "name": "CifUserCifUsersByProjectManagerLabelUpdatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectManagerLabel`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectRevisionAmendmentType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectManagerLabel`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -92236,7 +94703,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionAmendmentTypeCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByProjectManagerLabelUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -92305,8 +94772,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionAmendmentTypeCreatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectRevisionAmendmentType`.", + "name": "CifUserCifUsersByProjectManagerLabelUpdatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectManagerLabel`.", "fields": [ { "name": "cursor", @@ -92333,8 +94800,8 @@ "deprecationReason": null }, { - "name": "projectRevisionAmendmentTypesByArchivedBy", - "description": "Reads and enables pagination through a set of `ProjectRevisionAmendmentType`.", + "name": "projectManagerLabelsByArchivedBy", + "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", "args": [ { "name": "after", @@ -92361,7 +94828,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionAmendmentTypeCondition", + "name": "ProjectManagerLabelCondition", "ofType": null }, "defaultValue": null @@ -92371,7 +94838,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionAmendmentTypeFilter", + "name": "ProjectManagerLabelFilter", "ofType": null }, "defaultValue": null @@ -92418,7 +94885,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectRevisionAmendmentType`.", + "description": "The method to use when ordering `ProjectManagerLabel`.", "type": { "kind": "LIST", "name": null, @@ -92427,7 +94894,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectRevisionAmendmentTypesOrderBy", + "name": "ProjectManagerLabelsOrderBy", "ofType": null } } @@ -92440,7 +94907,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectRevisionAmendmentTypesConnection", + "name": "ProjectManagerLabelsConnection", "ofType": null } }, @@ -92455,12 +94922,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionAmendmentTypeCreatedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectRevisionAmendmentType`.", + "name": "CifUserCifUsersByProjectManagerLabelUpdatedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectManagerLabel`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectRevisionAmendmentType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectManagerLabel`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -92473,7 +94940,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionAmendmentTypeCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectManagerLabelUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -92542,8 +95009,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionAmendmentTypeCreatedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectRevisionAmendmentType`.", + "name": "CifUserCifUsersByProjectManagerLabelUpdatedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectManagerLabel`.", "fields": [ { "name": "cursor", @@ -92570,8 +95037,8 @@ "deprecationReason": null }, { - "name": "projectRevisionAmendmentTypesByUpdatedBy", - "description": "Reads and enables pagination through a set of `ProjectRevisionAmendmentType`.", + "name": "projectManagerLabelsByCreatedBy", + "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", "args": [ { "name": "after", @@ -92598,7 +95065,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionAmendmentTypeCondition", + "name": "ProjectManagerLabelCondition", "ofType": null }, "defaultValue": null @@ -92608,7 +95075,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionAmendmentTypeFilter", + "name": "ProjectManagerLabelFilter", "ofType": null }, "defaultValue": null @@ -92655,7 +95122,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectRevisionAmendmentType`.", + "description": "The method to use when ordering `ProjectManagerLabel`.", "type": { "kind": "LIST", "name": null, @@ -92664,7 +95131,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectRevisionAmendmentTypesOrderBy", + "name": "ProjectManagerLabelsOrderBy", "ofType": null } } @@ -92677,7 +95144,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectRevisionAmendmentTypesConnection", + "name": "ProjectManagerLabelsConnection", "ofType": null } }, @@ -92692,12 +95159,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionAmendmentTypeUpdatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectRevisionAmendmentType`.", + "name": "CifUserCifUsersByProjectManagerUpdatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectManager`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectRevisionAmendmentType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectManager`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -92710,7 +95177,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionAmendmentTypeUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByProjectManagerUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -92779,8 +95246,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionAmendmentTypeUpdatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectRevisionAmendmentType`.", + "name": "CifUserCifUsersByProjectManagerUpdatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectManager`.", "fields": [ { "name": "cursor", @@ -92807,8 +95274,8 @@ "deprecationReason": null }, { - "name": "projectRevisionAmendmentTypesByArchivedBy", - "description": "Reads and enables pagination through a set of `ProjectRevisionAmendmentType`.", + "name": "projectManagersByArchivedBy", + "description": "Reads and enables pagination through a set of `ProjectManager`.", "args": [ { "name": "after", @@ -92835,7 +95302,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionAmendmentTypeCondition", + "name": "ProjectManagerCondition", "ofType": null }, "defaultValue": null @@ -92845,7 +95312,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionAmendmentTypeFilter", + "name": "ProjectManagerFilter", "ofType": null }, "defaultValue": null @@ -92892,7 +95359,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectRevisionAmendmentType`.", + "description": "The method to use when ordering `ProjectManager`.", "type": { "kind": "LIST", "name": null, @@ -92901,7 +95368,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectRevisionAmendmentTypesOrderBy", + "name": "ProjectManagersOrderBy", "ofType": null } } @@ -92914,7 +95381,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectRevisionAmendmentTypesConnection", + "name": "ProjectManagersConnection", "ofType": null } }, @@ -92929,12 +95396,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionAmendmentTypeUpdatedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectRevisionAmendmentType`.", + "name": "CifUserCifUsersByProjectManagerUpdatedByAndCifUserIdManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectManager`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectRevisionAmendmentType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectManager`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -92947,7 +95414,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionAmendmentTypeUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectManagerUpdatedByAndCifUserIdManyToManyEdge", "ofType": null } } @@ -93016,8 +95483,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionAmendmentTypeUpdatedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectRevisionAmendmentType`.", + "name": "CifUserCifUsersByProjectManagerUpdatedByAndCifUserIdManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectManager`.", "fields": [ { "name": "cursor", @@ -93044,8 +95511,8 @@ "deprecationReason": null }, { - "name": "projectRevisionAmendmentTypesByCreatedBy", - "description": "Reads and enables pagination through a set of `ProjectRevisionAmendmentType`.", + "name": "projectManagersByCifUserId", + "description": "Reads and enables pagination through a set of `ProjectManager`.", "args": [ { "name": "after", @@ -93072,7 +95539,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionAmendmentTypeCondition", + "name": "ProjectManagerCondition", "ofType": null }, "defaultValue": null @@ -93082,7 +95549,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionAmendmentTypeFilter", + "name": "ProjectManagerFilter", "ofType": null }, "defaultValue": null @@ -93129,7 +95596,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectRevisionAmendmentType`.", + "description": "The method to use when ordering `ProjectManager`.", "type": { "kind": "LIST", "name": null, @@ -93138,7 +95605,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectRevisionAmendmentTypesOrderBy", + "name": "ProjectManagersOrderBy", "ofType": null } } @@ -93151,7 +95618,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectRevisionAmendmentTypesConnection", + "name": "ProjectManagersConnection", "ofType": null } }, @@ -93166,12 +95633,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionCreatedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectRevision`.", + "name": "CifUserCifUsersByProjectManagerUpdatedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectManager`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectRevision`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectManager`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -93184,7 +95651,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectManagerUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -93253,8 +95720,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionCreatedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectRevision`.", + "name": "CifUserCifUsersByProjectManagerUpdatedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectManager`.", "fields": [ { "name": "cursor", @@ -93281,8 +95748,8 @@ "deprecationReason": null }, { - "name": "projectRevisionsByUpdatedBy", - "description": "Reads and enables pagination through a set of `ProjectRevision`.", + "name": "projectManagersByCreatedBy", + "description": "Reads and enables pagination through a set of `ProjectManager`.", "args": [ { "name": "after", @@ -93309,7 +95776,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionCondition", + "name": "ProjectManagerCondition", "ofType": null }, "defaultValue": null @@ -93319,7 +95786,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionFilter", + "name": "ProjectManagerFilter", "ofType": null }, "defaultValue": null @@ -93334,6 +95801,16 @@ }, "defaultValue": null }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -93356,7 +95833,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectRevision`.", + "description": "The method to use when ordering `ProjectManager`.", "type": { "kind": "LIST", "name": null, @@ -93365,7 +95842,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectRevisionsOrderBy", + "name": "ProjectManagersOrderBy", "ofType": null } } @@ -93378,7 +95855,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectRevisionsConnection", + "name": "ProjectManagersConnection", "ofType": null } }, @@ -93393,12 +95870,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionUpdatedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectRevision`.", + "name": "CifUserCifUsersByProjectRevisionAmendmentTypeArchivedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectRevisionAmendmentType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectRevision`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectRevisionAmendmentType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -93411,7 +95888,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectRevisionAmendmentTypeArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -93480,8 +95957,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectRevisionUpdatedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectRevision`.", + "name": "CifUserCifUsersByProjectRevisionAmendmentTypeArchivedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectRevisionAmendmentType`.", "fields": [ { "name": "cursor", @@ -93508,8 +95985,8 @@ "deprecationReason": null }, { - "name": "projectRevisionsByCreatedBy", - "description": "Reads and enables pagination through a set of `ProjectRevision`.", + "name": "projectRevisionAmendmentTypesByCreatedBy", + "description": "Reads and enables pagination through a set of `ProjectRevisionAmendmentType`.", "args": [ { "name": "after", @@ -93536,7 +96013,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionCondition", + "name": "ProjectRevisionAmendmentTypeCondition", "ofType": null }, "defaultValue": null @@ -93546,7 +96023,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionFilter", + "name": "ProjectRevisionAmendmentTypeFilter", "ofType": null }, "defaultValue": null @@ -93561,6 +96038,16 @@ }, "defaultValue": null }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -93583,7 +96070,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectRevision`.", + "description": "The method to use when ordering `ProjectRevisionAmendmentType`.", "type": { "kind": "LIST", "name": null, @@ -93592,7 +96079,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectRevisionsOrderBy", + "name": "ProjectRevisionAmendmentTypesOrderBy", "ofType": null } } @@ -93605,7 +96092,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectRevisionsConnection", + "name": "ProjectRevisionAmendmentTypesConnection", "ofType": null } }, @@ -93620,12 +96107,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectStatusArchivedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectStatus`.", + "name": "CifUserCifUsersByProjectRevisionAmendmentTypeArchivedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectRevisionAmendmentType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectStatus`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectRevisionAmendmentType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -93638,7 +96125,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectStatusArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectRevisionAmendmentTypeArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -93707,8 +96194,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectStatusArchivedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectStatus`.", + "name": "CifUserCifUsersByProjectRevisionAmendmentTypeArchivedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectRevisionAmendmentType`.", "fields": [ { "name": "cursor", @@ -93735,8 +96222,8 @@ "deprecationReason": null }, { - "name": "projectStatusesByCreatedBy", - "description": "Reads and enables pagination through a set of `ProjectStatus`.", + "name": "projectRevisionAmendmentTypesByUpdatedBy", + "description": "Reads and enables pagination through a set of `ProjectRevisionAmendmentType`.", "args": [ { "name": "after", @@ -93763,7 +96250,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusCondition", + "name": "ProjectRevisionAmendmentTypeCondition", "ofType": null }, "defaultValue": null @@ -93773,7 +96260,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusFilter", + "name": "ProjectRevisionAmendmentTypeFilter", "ofType": null }, "defaultValue": null @@ -93820,7 +96307,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectStatus`.", + "description": "The method to use when ordering `ProjectRevisionAmendmentType`.", "type": { "kind": "LIST", "name": null, @@ -93829,7 +96316,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectStatusesOrderBy", + "name": "ProjectRevisionAmendmentTypesOrderBy", "ofType": null } } @@ -93842,7 +96329,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectStatusesConnection", + "name": "ProjectRevisionAmendmentTypesConnection", "ofType": null } }, @@ -93857,12 +96344,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectStatusArchivedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectStatus`.", + "name": "CifUserCifUsersByProjectRevisionAmendmentTypeCreatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectRevisionAmendmentType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectStatus`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectRevisionAmendmentType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -93875,7 +96362,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectStatusArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectRevisionAmendmentTypeCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -93944,8 +96431,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectStatusArchivedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectStatus`.", + "name": "CifUserCifUsersByProjectRevisionAmendmentTypeCreatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectRevisionAmendmentType`.", "fields": [ { "name": "cursor", @@ -93972,8 +96459,8 @@ "deprecationReason": null }, { - "name": "projectStatusesByUpdatedBy", - "description": "Reads and enables pagination through a set of `ProjectStatus`.", + "name": "projectRevisionAmendmentTypesByArchivedBy", + "description": "Reads and enables pagination through a set of `ProjectRevisionAmendmentType`.", "args": [ { "name": "after", @@ -94000,7 +96487,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusCondition", + "name": "ProjectRevisionAmendmentTypeCondition", "ofType": null }, "defaultValue": null @@ -94010,7 +96497,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusFilter", + "name": "ProjectRevisionAmendmentTypeFilter", "ofType": null }, "defaultValue": null @@ -94057,7 +96544,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectStatus`.", + "description": "The method to use when ordering `ProjectRevisionAmendmentType`.", "type": { "kind": "LIST", "name": null, @@ -94066,7 +96553,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectStatusesOrderBy", + "name": "ProjectRevisionAmendmentTypesOrderBy", "ofType": null } } @@ -94079,7 +96566,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectStatusesConnection", + "name": "ProjectRevisionAmendmentTypesConnection", "ofType": null } }, @@ -94094,12 +96581,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectStatusCreatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectStatus`.", + "name": "CifUserCifUsersByProjectRevisionAmendmentTypeCreatedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectRevisionAmendmentType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectStatus`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectRevisionAmendmentType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -94112,7 +96599,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectStatusCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByProjectRevisionAmendmentTypeCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -94181,8 +96668,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectStatusCreatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectStatus`.", + "name": "CifUserCifUsersByProjectRevisionAmendmentTypeCreatedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectRevisionAmendmentType`.", "fields": [ { "name": "cursor", @@ -94209,8 +96696,8 @@ "deprecationReason": null }, { - "name": "projectStatusesByArchivedBy", - "description": "Reads and enables pagination through a set of `ProjectStatus`.", + "name": "projectRevisionAmendmentTypesByUpdatedBy", + "description": "Reads and enables pagination through a set of `ProjectRevisionAmendmentType`.", "args": [ { "name": "after", @@ -94237,7 +96724,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusCondition", + "name": "ProjectRevisionAmendmentTypeCondition", "ofType": null }, "defaultValue": null @@ -94247,7 +96734,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusFilter", + "name": "ProjectRevisionAmendmentTypeFilter", "ofType": null }, "defaultValue": null @@ -94294,7 +96781,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectStatus`.", + "description": "The method to use when ordering `ProjectRevisionAmendmentType`.", "type": { "kind": "LIST", "name": null, @@ -94303,7 +96790,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectStatusesOrderBy", + "name": "ProjectRevisionAmendmentTypesOrderBy", "ofType": null } } @@ -94316,7 +96803,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectStatusesConnection", + "name": "ProjectRevisionAmendmentTypesConnection", "ofType": null } }, @@ -94331,12 +96818,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectStatusCreatedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectStatus`.", + "name": "CifUserCifUsersByProjectRevisionAmendmentTypeUpdatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectRevisionAmendmentType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectStatus`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectRevisionAmendmentType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -94349,7 +96836,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectStatusCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectRevisionAmendmentTypeUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -94418,8 +96905,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectStatusCreatedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectStatus`.", + "name": "CifUserCifUsersByProjectRevisionAmendmentTypeUpdatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectRevisionAmendmentType`.", "fields": [ { "name": "cursor", @@ -94446,8 +96933,8 @@ "deprecationReason": null }, { - "name": "projectStatusesByUpdatedBy", - "description": "Reads and enables pagination through a set of `ProjectStatus`.", + "name": "projectRevisionAmendmentTypesByArchivedBy", + "description": "Reads and enables pagination through a set of `ProjectRevisionAmendmentType`.", "args": [ { "name": "after", @@ -94474,7 +96961,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusCondition", + "name": "ProjectRevisionAmendmentTypeCondition", "ofType": null }, "defaultValue": null @@ -94484,7 +96971,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusFilter", + "name": "ProjectRevisionAmendmentTypeFilter", "ofType": null }, "defaultValue": null @@ -94531,7 +97018,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectStatus`.", + "description": "The method to use when ordering `ProjectRevisionAmendmentType`.", "type": { "kind": "LIST", "name": null, @@ -94540,7 +97027,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectStatusesOrderBy", + "name": "ProjectRevisionAmendmentTypesOrderBy", "ofType": null } } @@ -94553,7 +97040,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectStatusesConnection", + "name": "ProjectRevisionAmendmentTypesConnection", "ofType": null } }, @@ -94568,12 +97055,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectStatusUpdatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectStatus`.", + "name": "CifUserCifUsersByProjectRevisionAmendmentTypeUpdatedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectRevisionAmendmentType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectStatus`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectRevisionAmendmentType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -94586,7 +97073,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectStatusUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByProjectRevisionAmendmentTypeUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -94655,8 +97142,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectStatusUpdatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectStatus`.", + "name": "CifUserCifUsersByProjectRevisionAmendmentTypeUpdatedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectRevisionAmendmentType`.", "fields": [ { "name": "cursor", @@ -94683,8 +97170,8 @@ "deprecationReason": null }, { - "name": "projectStatusesByArchivedBy", - "description": "Reads and enables pagination through a set of `ProjectStatus`.", + "name": "projectRevisionAmendmentTypesByCreatedBy", + "description": "Reads and enables pagination through a set of `ProjectRevisionAmendmentType`.", "args": [ { "name": "after", @@ -94711,7 +97198,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusCondition", + "name": "ProjectRevisionAmendmentTypeCondition", "ofType": null }, "defaultValue": null @@ -94721,7 +97208,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusFilter", + "name": "ProjectRevisionAmendmentTypeFilter", "ofType": null }, "defaultValue": null @@ -94768,7 +97255,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectStatus`.", + "description": "The method to use when ordering `ProjectRevisionAmendmentType`.", "type": { "kind": "LIST", "name": null, @@ -94777,7 +97264,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectStatusesOrderBy", + "name": "ProjectRevisionAmendmentTypesOrderBy", "ofType": null } } @@ -94790,7 +97277,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectStatusesConnection", + "name": "ProjectRevisionAmendmentTypesConnection", "ofType": null } }, @@ -94805,12 +97292,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectStatusUpdatedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectStatus`.", + "name": "CifUserCifUsersByProjectRevisionCreatedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectRevision`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectStatus`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectRevision`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -94823,7 +97310,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectStatusUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectRevisionCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -94892,8 +97379,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectStatusUpdatedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectStatus`.", + "name": "CifUserCifUsersByProjectRevisionCreatedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectRevision`.", "fields": [ { "name": "cursor", @@ -94920,8 +97407,8 @@ "deprecationReason": null }, { - "name": "projectStatusesByCreatedBy", - "description": "Reads and enables pagination through a set of `ProjectStatus`.", + "name": "projectRevisionsByUpdatedBy", + "description": "Reads and enables pagination through a set of `ProjectRevision`.", "args": [ { "name": "after", @@ -94948,7 +97435,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusCondition", + "name": "ProjectRevisionCondition", "ofType": null }, "defaultValue": null @@ -94958,7 +97445,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusFilter", + "name": "ProjectRevisionFilter", "ofType": null }, "defaultValue": null @@ -94973,16 +97460,6 @@ }, "defaultValue": null }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -95005,7 +97482,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectStatus`.", + "description": "The method to use when ordering `ProjectRevision`.", "type": { "kind": "LIST", "name": null, @@ -95014,7 +97491,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectStatusesOrderBy", + "name": "ProjectRevisionsOrderBy", "ofType": null } } @@ -95027,7 +97504,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectStatusesConnection", + "name": "ProjectRevisionsConnection", "ofType": null } }, @@ -95042,12 +97519,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectTypeArchivedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectType`.", + "name": "CifUserCifUsersByProjectRevisionUpdatedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectRevision`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectRevision`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -95060,7 +97537,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectTypeArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectRevisionUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -95129,8 +97606,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectTypeArchivedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectType`.", + "name": "CifUserCifUsersByProjectRevisionUpdatedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectRevision`.", "fields": [ { "name": "cursor", @@ -95157,8 +97634,8 @@ "deprecationReason": null }, { - "name": "projectTypesByCreatedBy", - "description": "Reads and enables pagination through a set of `ProjectType`.", + "name": "projectRevisionsByCreatedBy", + "description": "Reads and enables pagination through a set of `ProjectRevision`.", "args": [ { "name": "after", @@ -95185,7 +97662,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTypeCondition", + "name": "ProjectRevisionCondition", "ofType": null }, "defaultValue": null @@ -95195,7 +97672,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTypeFilter", + "name": "ProjectRevisionFilter", "ofType": null }, "defaultValue": null @@ -95210,16 +97687,6 @@ }, "defaultValue": null }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -95242,7 +97709,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectType`.", + "description": "The method to use when ordering `ProjectRevision`.", "type": { "kind": "LIST", "name": null, @@ -95251,7 +97718,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectTypesOrderBy", + "name": "ProjectRevisionsOrderBy", "ofType": null } } @@ -95264,7 +97731,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectTypesConnection", + "name": "ProjectRevisionsConnection", "ofType": null } }, @@ -95279,12 +97746,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectTypeArchivedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectType`.", + "name": "CifUserCifUsersByProjectStatusArchivedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectStatus`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectStatus`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -95297,7 +97764,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectTypeArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectStatusArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -95366,8 +97833,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectTypeArchivedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectType`.", + "name": "CifUserCifUsersByProjectStatusArchivedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectStatus`.", "fields": [ { "name": "cursor", @@ -95394,8 +97861,8 @@ "deprecationReason": null }, { - "name": "projectTypesByUpdatedBy", - "description": "Reads and enables pagination through a set of `ProjectType`.", + "name": "projectStatusesByCreatedBy", + "description": "Reads and enables pagination through a set of `ProjectStatus`.", "args": [ { "name": "after", @@ -95422,7 +97889,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTypeCondition", + "name": "ProjectStatusCondition", "ofType": null }, "defaultValue": null @@ -95432,7 +97899,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTypeFilter", + "name": "ProjectStatusFilter", "ofType": null }, "defaultValue": null @@ -95479,7 +97946,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectType`.", + "description": "The method to use when ordering `ProjectStatus`.", "type": { "kind": "LIST", "name": null, @@ -95488,7 +97955,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectTypesOrderBy", + "name": "ProjectStatusesOrderBy", "ofType": null } } @@ -95501,7 +97968,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectTypesConnection", + "name": "ProjectStatusesConnection", "ofType": null } }, @@ -95516,12 +97983,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectTypeCreatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectType`.", + "name": "CifUserCifUsersByProjectStatusArchivedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectStatus`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectStatus`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -95534,7 +98001,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectTypeCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByProjectStatusArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -95603,8 +98070,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectTypeCreatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectType`.", + "name": "CifUserCifUsersByProjectStatusArchivedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectStatus`.", "fields": [ { "name": "cursor", @@ -95631,8 +98098,8 @@ "deprecationReason": null }, { - "name": "projectTypesByArchivedBy", - "description": "Reads and enables pagination through a set of `ProjectType`.", + "name": "projectStatusesByUpdatedBy", + "description": "Reads and enables pagination through a set of `ProjectStatus`.", "args": [ { "name": "after", @@ -95659,7 +98126,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTypeCondition", + "name": "ProjectStatusCondition", "ofType": null }, "defaultValue": null @@ -95669,7 +98136,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTypeFilter", + "name": "ProjectStatusFilter", "ofType": null }, "defaultValue": null @@ -95716,7 +98183,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectType`.", + "description": "The method to use when ordering `ProjectStatus`.", "type": { "kind": "LIST", "name": null, @@ -95725,7 +98192,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectTypesOrderBy", + "name": "ProjectStatusesOrderBy", "ofType": null } } @@ -95738,7 +98205,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectTypesConnection", + "name": "ProjectStatusesConnection", "ofType": null } }, @@ -95753,12 +98220,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectTypeCreatedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectType`.", + "name": "CifUserCifUsersByProjectStatusCreatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectStatus`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectStatus`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -95771,7 +98238,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectTypeCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectStatusCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -95840,8 +98307,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectTypeCreatedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectType`.", + "name": "CifUserCifUsersByProjectStatusCreatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectStatus`.", "fields": [ { "name": "cursor", @@ -95868,8 +98335,8 @@ "deprecationReason": null }, { - "name": "projectTypesByUpdatedBy", - "description": "Reads and enables pagination through a set of `ProjectType`.", + "name": "projectStatusesByArchivedBy", + "description": "Reads and enables pagination through a set of `ProjectStatus`.", "args": [ { "name": "after", @@ -95896,7 +98363,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTypeCondition", + "name": "ProjectStatusCondition", "ofType": null }, "defaultValue": null @@ -95906,7 +98373,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTypeFilter", + "name": "ProjectStatusFilter", "ofType": null }, "defaultValue": null @@ -95953,7 +98420,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectType`.", + "description": "The method to use when ordering `ProjectStatus`.", "type": { "kind": "LIST", "name": null, @@ -95962,7 +98429,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectTypesOrderBy", + "name": "ProjectStatusesOrderBy", "ofType": null } } @@ -95975,7 +98442,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectTypesConnection", + "name": "ProjectStatusesConnection", "ofType": null } }, @@ -95990,12 +98457,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectTypeUpdatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectType`.", + "name": "CifUserCifUsersByProjectStatusCreatedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectStatus`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectStatus`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -96008,7 +98475,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectTypeUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByProjectStatusCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -96077,8 +98544,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectTypeUpdatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectType`.", + "name": "CifUserCifUsersByProjectStatusCreatedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectStatus`.", "fields": [ { "name": "cursor", @@ -96105,8 +98572,8 @@ "deprecationReason": null }, { - "name": "projectTypesByArchivedBy", - "description": "Reads and enables pagination through a set of `ProjectType`.", + "name": "projectStatusesByUpdatedBy", + "description": "Reads and enables pagination through a set of `ProjectStatus`.", "args": [ { "name": "after", @@ -96133,7 +98600,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTypeCondition", + "name": "ProjectStatusCondition", "ofType": null }, "defaultValue": null @@ -96143,7 +98610,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTypeFilter", + "name": "ProjectStatusFilter", "ofType": null }, "defaultValue": null @@ -96190,7 +98657,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectType`.", + "description": "The method to use when ordering `ProjectStatus`.", "type": { "kind": "LIST", "name": null, @@ -96199,7 +98666,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectTypesOrderBy", + "name": "ProjectStatusesOrderBy", "ofType": null } } @@ -96212,7 +98679,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectTypesConnection", + "name": "ProjectStatusesConnection", "ofType": null } }, @@ -96227,12 +98694,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectTypeUpdatedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ProjectType`.", + "name": "CifUserCifUsersByProjectStatusUpdatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectStatus`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ProjectType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectStatus`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -96245,7 +98712,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectTypeUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectStatusUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -96314,8 +98781,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectTypeUpdatedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ProjectType`.", + "name": "CifUserCifUsersByProjectStatusUpdatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectStatus`.", "fields": [ { "name": "cursor", @@ -96342,8 +98809,8 @@ "deprecationReason": null }, { - "name": "projectTypesByCreatedBy", - "description": "Reads and enables pagination through a set of `ProjectType`.", + "name": "projectStatusesByArchivedBy", + "description": "Reads and enables pagination through a set of `ProjectStatus`.", "args": [ { "name": "after", @@ -96370,7 +98837,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTypeCondition", + "name": "ProjectStatusCondition", "ofType": null }, "defaultValue": null @@ -96380,7 +98847,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTypeFilter", + "name": "ProjectStatusFilter", "ofType": null }, "defaultValue": null @@ -96427,7 +98894,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectType`.", + "description": "The method to use when ordering `ProjectStatus`.", "type": { "kind": "LIST", "name": null, @@ -96436,7 +98903,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectTypesOrderBy", + "name": "ProjectStatusesOrderBy", "ofType": null } } @@ -96449,7 +98916,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectTypesConnection", + "name": "ProjectStatusesConnection", "ofType": null } }, @@ -96464,12 +98931,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectUpdatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Project`.", + "name": "CifUserCifUsersByProjectStatusUpdatedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectStatus`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Project`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectStatus`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -96482,7 +98949,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByProjectStatusUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -96551,8 +99018,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectUpdatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `Project`.", + "name": "CifUserCifUsersByProjectStatusUpdatedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectStatus`.", "fields": [ { "name": "cursor", @@ -96579,8 +99046,8 @@ "deprecationReason": null }, { - "name": "projectsByArchivedBy", - "description": "Reads and enables pagination through a set of `Project`.", + "name": "projectStatusesByCreatedBy", + "description": "Reads and enables pagination through a set of `ProjectStatus`.", "args": [ { "name": "after", @@ -96607,7 +99074,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCondition", + "name": "ProjectStatusCondition", "ofType": null }, "defaultValue": null @@ -96617,7 +99084,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectFilter", + "name": "ProjectStatusFilter", "ofType": null }, "defaultValue": null @@ -96664,7 +99131,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Project`.", + "description": "The method to use when ordering `ProjectStatus`.", "type": { "kind": "LIST", "name": null, @@ -96673,7 +99140,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectsOrderBy", + "name": "ProjectStatusesOrderBy", "ofType": null } } @@ -96686,7 +99153,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectsConnection", + "name": "ProjectStatusesConnection", "ofType": null } }, @@ -96701,12 +99168,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectUpdatedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Project`.", + "name": "CifUserCifUsersByProjectTypeArchivedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Project`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -96719,7 +99186,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectTypeArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -96788,8 +99255,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByProjectUpdatedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `Project`.", + "name": "CifUserCifUsersByProjectTypeArchivedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectType`.", "fields": [ { "name": "cursor", @@ -96816,8 +99283,8 @@ "deprecationReason": null }, { - "name": "projectsByCreatedBy", - "description": "Reads and enables pagination through a set of `Project`.", + "name": "projectTypesByCreatedBy", + "description": "Reads and enables pagination through a set of `ProjectType`.", "args": [ { "name": "after", @@ -96844,7 +99311,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCondition", + "name": "ProjectTypeCondition", "ofType": null }, "defaultValue": null @@ -96854,7 +99321,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectFilter", + "name": "ProjectTypeFilter", "ofType": null }, "defaultValue": null @@ -96901,7 +99368,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Project`.", + "description": "The method to use when ordering `ProjectType`.", "type": { "kind": "LIST", "name": null, @@ -96910,7 +99377,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectsOrderBy", + "name": "ProjectTypesOrderBy", "ofType": null } } @@ -96923,7 +99390,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectsConnection", + "name": "ProjectTypesConnection", "ofType": null } }, @@ -96938,12 +99405,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByReportTypeArchivedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ReportType`.", + "name": "CifUserCifUsersByProjectTypeArchivedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ReportType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -96956,7 +99423,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByReportTypeArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectTypeArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -97025,8 +99492,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByReportTypeArchivedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ReportType`.", + "name": "CifUserCifUsersByProjectTypeArchivedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectType`.", "fields": [ { "name": "cursor", @@ -97053,8 +99520,8 @@ "deprecationReason": null }, { - "name": "reportTypesByCreatedBy", - "description": "Reads and enables pagination through a set of `ReportType`.", + "name": "projectTypesByUpdatedBy", + "description": "Reads and enables pagination through a set of `ProjectType`.", "args": [ { "name": "after", @@ -97081,7 +99548,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportTypeCondition", + "name": "ProjectTypeCondition", "ofType": null }, "defaultValue": null @@ -97091,7 +99558,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportTypeFilter", + "name": "ProjectTypeFilter", "ofType": null }, "defaultValue": null @@ -97138,7 +99605,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportType`.", + "description": "The method to use when ordering `ProjectType`.", "type": { "kind": "LIST", "name": null, @@ -97147,7 +99614,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportTypesOrderBy", + "name": "ProjectTypesOrderBy", "ofType": null } } @@ -97160,7 +99627,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ReportTypesConnection", + "name": "ProjectTypesConnection", "ofType": null } }, @@ -97175,12 +99642,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByReportTypeArchivedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ReportType`.", + "name": "CifUserCifUsersByProjectTypeCreatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ReportType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -97193,7 +99660,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByReportTypeArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectTypeCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -97262,8 +99729,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByReportTypeArchivedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ReportType`.", + "name": "CifUserCifUsersByProjectTypeCreatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectType`.", "fields": [ { "name": "cursor", @@ -97290,8 +99757,8 @@ "deprecationReason": null }, { - "name": "reportTypesByUpdatedBy", - "description": "Reads and enables pagination through a set of `ReportType`.", + "name": "projectTypesByArchivedBy", + "description": "Reads and enables pagination through a set of `ProjectType`.", "args": [ { "name": "after", @@ -97318,7 +99785,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportTypeCondition", + "name": "ProjectTypeCondition", "ofType": null }, "defaultValue": null @@ -97328,7 +99795,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportTypeFilter", + "name": "ProjectTypeFilter", "ofType": null }, "defaultValue": null @@ -97375,7 +99842,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportType`.", + "description": "The method to use when ordering `ProjectType`.", "type": { "kind": "LIST", "name": null, @@ -97384,7 +99851,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportTypesOrderBy", + "name": "ProjectTypesOrderBy", "ofType": null } } @@ -97397,7 +99864,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ReportTypesConnection", + "name": "ProjectTypesConnection", "ofType": null } }, @@ -97412,12 +99879,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByReportTypeCreatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ReportType`.", + "name": "CifUserCifUsersByProjectTypeCreatedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ReportType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -97430,7 +99897,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByReportTypeCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByProjectTypeCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -97499,8 +99966,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByReportTypeCreatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ReportType`.", + "name": "CifUserCifUsersByProjectTypeCreatedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectType`.", "fields": [ { "name": "cursor", @@ -97527,8 +99994,8 @@ "deprecationReason": null }, { - "name": "reportTypesByArchivedBy", - "description": "Reads and enables pagination through a set of `ReportType`.", + "name": "projectTypesByUpdatedBy", + "description": "Reads and enables pagination through a set of `ProjectType`.", "args": [ { "name": "after", @@ -97555,7 +100022,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportTypeCondition", + "name": "ProjectTypeCondition", "ofType": null }, "defaultValue": null @@ -97565,7 +100032,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportTypeFilter", + "name": "ProjectTypeFilter", "ofType": null }, "defaultValue": null @@ -97612,7 +100079,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportType`.", + "description": "The method to use when ordering `ProjectType`.", "type": { "kind": "LIST", "name": null, @@ -97621,7 +100088,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportTypesOrderBy", + "name": "ProjectTypesOrderBy", "ofType": null } } @@ -97634,7 +100101,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ReportTypesConnection", + "name": "ProjectTypesConnection", "ofType": null } }, @@ -97649,12 +100116,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByReportTypeCreatedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ReportType`.", + "name": "CifUserCifUsersByProjectTypeUpdatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ReportType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -97667,7 +100134,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByReportTypeCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectTypeUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -97736,8 +100203,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByReportTypeCreatedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ReportType`.", + "name": "CifUserCifUsersByProjectTypeUpdatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectType`.", "fields": [ { "name": "cursor", @@ -97764,8 +100231,8 @@ "deprecationReason": null }, { - "name": "reportTypesByUpdatedBy", - "description": "Reads and enables pagination through a set of `ReportType`.", + "name": "projectTypesByArchivedBy", + "description": "Reads and enables pagination through a set of `ProjectType`.", "args": [ { "name": "after", @@ -97792,7 +100259,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportTypeCondition", + "name": "ProjectTypeCondition", "ofType": null }, "defaultValue": null @@ -97802,7 +100269,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportTypeFilter", + "name": "ProjectTypeFilter", "ofType": null }, "defaultValue": null @@ -97849,7 +100316,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportType`.", + "description": "The method to use when ordering `ProjectType`.", "type": { "kind": "LIST", "name": null, @@ -97858,7 +100325,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportTypesOrderBy", + "name": "ProjectTypesOrderBy", "ofType": null } } @@ -97871,7 +100338,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ReportTypesConnection", + "name": "ProjectTypesConnection", "ofType": null } }, @@ -97886,12 +100353,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByReportTypeUpdatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ReportType`.", + "name": "CifUserCifUsersByProjectTypeUpdatedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ReportType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -97904,7 +100371,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByReportTypeUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByProjectTypeUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -97973,8 +100440,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByReportTypeUpdatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ReportType`.", + "name": "CifUserCifUsersByProjectTypeUpdatedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectType`.", "fields": [ { "name": "cursor", @@ -98001,8 +100468,8 @@ "deprecationReason": null }, { - "name": "reportTypesByArchivedBy", - "description": "Reads and enables pagination through a set of `ReportType`.", + "name": "projectTypesByCreatedBy", + "description": "Reads and enables pagination through a set of `ProjectType`.", "args": [ { "name": "after", @@ -98029,7 +100496,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportTypeCondition", + "name": "ProjectTypeCondition", "ofType": null }, "defaultValue": null @@ -98039,7 +100506,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportTypeFilter", + "name": "ProjectTypeFilter", "ofType": null }, "defaultValue": null @@ -98086,7 +100553,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportType`.", + "description": "The method to use when ordering `ProjectType`.", "type": { "kind": "LIST", "name": null, @@ -98095,7 +100562,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportTypesOrderBy", + "name": "ProjectTypesOrderBy", "ofType": null } } @@ -98108,7 +100575,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ReportTypesConnection", + "name": "ProjectTypesConnection", "ofType": null } }, @@ -98123,12 +100590,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByReportTypeUpdatedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ReportType`.", + "name": "CifUserCifUsersByProjectUpdatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Project`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ReportType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `Project`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -98141,7 +100608,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByReportTypeUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -98210,8 +100677,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByReportTypeUpdatedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ReportType`.", + "name": "CifUserCifUsersByProjectUpdatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `Project`.", "fields": [ { "name": "cursor", @@ -98238,8 +100705,8 @@ "deprecationReason": null }, { - "name": "reportTypesByCreatedBy", - "description": "Reads and enables pagination through a set of `ReportType`.", + "name": "projectsByArchivedBy", + "description": "Reads and enables pagination through a set of `Project`.", "args": [ { "name": "after", @@ -98266,7 +100733,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportTypeCondition", + "name": "ProjectCondition", "ofType": null }, "defaultValue": null @@ -98276,7 +100743,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportTypeFilter", + "name": "ProjectFilter", "ofType": null }, "defaultValue": null @@ -98323,7 +100790,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportType`.", + "description": "The method to use when ordering `Project`.", "type": { "kind": "LIST", "name": null, @@ -98332,7 +100799,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportTypesOrderBy", + "name": "ProjectsOrderBy", "ofType": null } } @@ -98345,7 +100812,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ReportTypesConnection", + "name": "ProjectsConnection", "ofType": null } }, @@ -98360,12 +100827,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByReportingRequirementArchivedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ReportingRequirement`.", + "name": "CifUserCifUsersByProjectUpdatedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Project`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ReportingRequirement`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `Project`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -98378,7 +100845,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByReportingRequirementArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByProjectUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -98447,8 +100914,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByReportingRequirementArchivedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ReportingRequirement`.", + "name": "CifUserCifUsersByProjectUpdatedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `Project`.", "fields": [ { "name": "cursor", @@ -98475,8 +100942,8 @@ "deprecationReason": null }, { - "name": "reportingRequirementsByCreatedBy", - "description": "Reads and enables pagination through a set of `ReportingRequirement`.", + "name": "projectsByCreatedBy", + "description": "Reads and enables pagination through a set of `Project`.", "args": [ { "name": "after", @@ -98503,7 +100970,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementCondition", + "name": "ProjectCondition", "ofType": null }, "defaultValue": null @@ -98513,7 +100980,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementFilter", + "name": "ProjectFilter", "ofType": null }, "defaultValue": null @@ -98560,7 +101027,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportingRequirement`.", + "description": "The method to use when ordering `Project`.", "type": { "kind": "LIST", "name": null, @@ -98569,7 +101036,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportingRequirementsOrderBy", + "name": "ProjectsOrderBy", "ofType": null } } @@ -98582,7 +101049,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ReportingRequirementsConnection", + "name": "ProjectsConnection", "ofType": null } }, @@ -98597,12 +101064,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByReportingRequirementArchivedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ReportingRequirement`.", + "name": "CifUserCifUsersByReportTypeArchivedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ReportType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ReportingRequirement`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ReportType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -98615,7 +101082,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByReportingRequirementArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByReportTypeArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -98684,8 +101151,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByReportingRequirementArchivedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ReportingRequirement`.", + "name": "CifUserCifUsersByReportTypeArchivedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ReportType`.", "fields": [ { "name": "cursor", @@ -98712,8 +101179,8 @@ "deprecationReason": null }, { - "name": "reportingRequirementsByUpdatedBy", - "description": "Reads and enables pagination through a set of `ReportingRequirement`.", + "name": "reportTypesByCreatedBy", + "description": "Reads and enables pagination through a set of `ReportType`.", "args": [ { "name": "after", @@ -98740,7 +101207,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementCondition", + "name": "ReportTypeCondition", "ofType": null }, "defaultValue": null @@ -98750,7 +101217,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementFilter", + "name": "ReportTypeFilter", "ofType": null }, "defaultValue": null @@ -98797,7 +101264,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportingRequirement`.", + "description": "The method to use when ordering `ReportType`.", "type": { "kind": "LIST", "name": null, @@ -98806,7 +101273,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportingRequirementsOrderBy", + "name": "ReportTypesOrderBy", "ofType": null } } @@ -98819,7 +101286,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ReportingRequirementsConnection", + "name": "ReportTypesConnection", "ofType": null } }, @@ -98834,12 +101301,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByReportingRequirementCreatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ReportingRequirement`.", + "name": "CifUserCifUsersByReportTypeArchivedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ReportType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ReportingRequirement`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ReportType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -98852,7 +101319,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByReportingRequirementCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByReportTypeArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -98921,8 +101388,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByReportingRequirementCreatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ReportingRequirement`.", + "name": "CifUserCifUsersByReportTypeArchivedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ReportType`.", "fields": [ { "name": "cursor", @@ -98949,8 +101416,8 @@ "deprecationReason": null }, { - "name": "reportingRequirementsByArchivedBy", - "description": "Reads and enables pagination through a set of `ReportingRequirement`.", + "name": "reportTypesByUpdatedBy", + "description": "Reads and enables pagination through a set of `ReportType`.", "args": [ { "name": "after", @@ -98977,7 +101444,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementCondition", + "name": "ReportTypeCondition", "ofType": null }, "defaultValue": null @@ -98987,7 +101454,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementFilter", + "name": "ReportTypeFilter", "ofType": null }, "defaultValue": null @@ -99034,7 +101501,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportingRequirement`.", + "description": "The method to use when ordering `ReportType`.", "type": { "kind": "LIST", "name": null, @@ -99043,7 +101510,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportingRequirementsOrderBy", + "name": "ReportTypesOrderBy", "ofType": null } } @@ -99056,7 +101523,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ReportingRequirementsConnection", + "name": "ReportTypesConnection", "ofType": null } }, @@ -99071,12 +101538,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByReportingRequirementCreatedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ReportingRequirement`.", + "name": "CifUserCifUsersByReportTypeCreatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ReportType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ReportingRequirement`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ReportType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -99089,7 +101556,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByReportingRequirementCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByReportTypeCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -99158,8 +101625,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByReportingRequirementCreatedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ReportingRequirement`.", + "name": "CifUserCifUsersByReportTypeCreatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ReportType`.", "fields": [ { "name": "cursor", @@ -99186,8 +101653,8 @@ "deprecationReason": null }, { - "name": "reportingRequirementsByUpdatedBy", - "description": "Reads and enables pagination through a set of `ReportingRequirement`.", + "name": "reportTypesByArchivedBy", + "description": "Reads and enables pagination through a set of `ReportType`.", "args": [ { "name": "after", @@ -99214,7 +101681,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementCondition", + "name": "ReportTypeCondition", "ofType": null }, "defaultValue": null @@ -99224,7 +101691,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementFilter", + "name": "ReportTypeFilter", "ofType": null }, "defaultValue": null @@ -99271,7 +101738,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportingRequirement`.", + "description": "The method to use when ordering `ReportType`.", "type": { "kind": "LIST", "name": null, @@ -99280,7 +101747,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportingRequirementsOrderBy", + "name": "ReportTypesOrderBy", "ofType": null } } @@ -99293,7 +101760,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ReportingRequirementsConnection", + "name": "ReportTypesConnection", "ofType": null } }, @@ -99308,12 +101775,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByReportingRequirementUpdatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ReportingRequirement`.", + "name": "CifUserCifUsersByReportTypeCreatedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ReportType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ReportingRequirement`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ReportType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -99326,7 +101793,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByReportingRequirementUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByReportTypeCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -99395,8 +101862,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByReportingRequirementUpdatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ReportingRequirement`.", + "name": "CifUserCifUsersByReportTypeCreatedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ReportType`.", "fields": [ { "name": "cursor", @@ -99423,8 +101890,8 @@ "deprecationReason": null }, { - "name": "reportingRequirementsByArchivedBy", - "description": "Reads and enables pagination through a set of `ReportingRequirement`.", + "name": "reportTypesByUpdatedBy", + "description": "Reads and enables pagination through a set of `ReportType`.", "args": [ { "name": "after", @@ -99451,7 +101918,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementCondition", + "name": "ReportTypeCondition", "ofType": null }, "defaultValue": null @@ -99461,7 +101928,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementFilter", + "name": "ReportTypeFilter", "ofType": null }, "defaultValue": null @@ -99508,7 +101975,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportingRequirement`.", + "description": "The method to use when ordering `ReportType`.", "type": { "kind": "LIST", "name": null, @@ -99517,7 +101984,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportingRequirementsOrderBy", + "name": "ReportTypesOrderBy", "ofType": null } } @@ -99530,7 +101997,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ReportingRequirementsConnection", + "name": "ReportTypesConnection", "ofType": null } }, @@ -99545,12 +102012,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByReportingRequirementUpdatedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `ReportingRequirement`.", + "name": "CifUserCifUsersByReportTypeUpdatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ReportType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `ReportingRequirement`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ReportType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -99563,7 +102030,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByReportingRequirementUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByReportTypeUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -99632,8 +102099,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByReportingRequirementUpdatedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `ReportingRequirement`.", + "name": "CifUserCifUsersByReportTypeUpdatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ReportType`.", "fields": [ { "name": "cursor", @@ -99660,8 +102127,8 @@ "deprecationReason": null }, { - "name": "reportingRequirementsByCreatedBy", - "description": "Reads and enables pagination through a set of `ReportingRequirement`.", + "name": "reportTypesByArchivedBy", + "description": "Reads and enables pagination through a set of `ReportType`.", "args": [ { "name": "after", @@ -99688,7 +102155,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementCondition", + "name": "ReportTypeCondition", "ofType": null }, "defaultValue": null @@ -99698,7 +102165,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementFilter", + "name": "ReportTypeFilter", "ofType": null }, "defaultValue": null @@ -99745,7 +102212,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportingRequirement`.", + "description": "The method to use when ordering `ReportType`.", "type": { "kind": "LIST", "name": null, @@ -99754,7 +102221,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportingRequirementsOrderBy", + "name": "ReportTypesOrderBy", "ofType": null } } @@ -99767,7 +102234,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ReportingRequirementsConnection", + "name": "ReportTypesConnection", "ofType": null } }, @@ -99782,12 +102249,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionStatusArchivedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `RevisionStatus`.", + "name": "CifUserCifUsersByReportTypeUpdatedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ReportType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `RevisionStatus`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ReportType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -99800,7 +102267,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionStatusArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByReportTypeUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -99869,8 +102336,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionStatusArchivedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `RevisionStatus`.", + "name": "CifUserCifUsersByReportTypeUpdatedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ReportType`.", "fields": [ { "name": "cursor", @@ -99897,8 +102364,8 @@ "deprecationReason": null }, { - "name": "revisionStatusesByCreatedBy", - "description": "Reads and enables pagination through a set of `RevisionStatus`.", + "name": "reportTypesByCreatedBy", + "description": "Reads and enables pagination through a set of `ReportType`.", "args": [ { "name": "after", @@ -99925,7 +102392,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionStatusCondition", + "name": "ReportTypeCondition", "ofType": null }, "defaultValue": null @@ -99935,7 +102402,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionStatusFilter", + "name": "ReportTypeFilter", "ofType": null }, "defaultValue": null @@ -99982,7 +102449,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `RevisionStatus`.", + "description": "The method to use when ordering `ReportType`.", "type": { "kind": "LIST", "name": null, @@ -99991,7 +102458,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "RevisionStatusesOrderBy", + "name": "ReportTypesOrderBy", "ofType": null } } @@ -100004,7 +102471,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RevisionStatusesConnection", + "name": "ReportTypesConnection", "ofType": null } }, @@ -100019,12 +102486,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionStatusArchivedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `RevisionStatus`.", + "name": "CifUserCifUsersByReportingRequirementArchivedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ReportingRequirement`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `RevisionStatus`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ReportingRequirement`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -100037,7 +102504,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionStatusArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByReportingRequirementArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -100106,8 +102573,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionStatusArchivedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `RevisionStatus`.", + "name": "CifUserCifUsersByReportingRequirementArchivedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ReportingRequirement`.", "fields": [ { "name": "cursor", @@ -100134,8 +102601,8 @@ "deprecationReason": null }, { - "name": "revisionStatusesByUpdatedBy", - "description": "Reads and enables pagination through a set of `RevisionStatus`.", + "name": "reportingRequirementsByCreatedBy", + "description": "Reads and enables pagination through a set of `ReportingRequirement`.", "args": [ { "name": "after", @@ -100162,7 +102629,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionStatusCondition", + "name": "ReportingRequirementCondition", "ofType": null }, "defaultValue": null @@ -100172,7 +102639,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionStatusFilter", + "name": "ReportingRequirementFilter", "ofType": null }, "defaultValue": null @@ -100219,7 +102686,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `RevisionStatus`.", + "description": "The method to use when ordering `ReportingRequirement`.", "type": { "kind": "LIST", "name": null, @@ -100228,7 +102695,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "RevisionStatusesOrderBy", + "name": "ReportingRequirementsOrderBy", "ofType": null } } @@ -100241,7 +102708,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RevisionStatusesConnection", + "name": "ReportingRequirementsConnection", "ofType": null } }, @@ -100256,12 +102723,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionStatusCreatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `RevisionStatus`.", + "name": "CifUserCifUsersByReportingRequirementArchivedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ReportingRequirement`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `RevisionStatus`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ReportingRequirement`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -100274,7 +102741,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionStatusCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByReportingRequirementArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -100343,8 +102810,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionStatusCreatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `RevisionStatus`.", + "name": "CifUserCifUsersByReportingRequirementArchivedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ReportingRequirement`.", "fields": [ { "name": "cursor", @@ -100371,8 +102838,8 @@ "deprecationReason": null }, { - "name": "revisionStatusesByArchivedBy", - "description": "Reads and enables pagination through a set of `RevisionStatus`.", + "name": "reportingRequirementsByUpdatedBy", + "description": "Reads and enables pagination through a set of `ReportingRequirement`.", "args": [ { "name": "after", @@ -100399,7 +102866,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionStatusCondition", + "name": "ReportingRequirementCondition", "ofType": null }, "defaultValue": null @@ -100409,7 +102876,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionStatusFilter", + "name": "ReportingRequirementFilter", "ofType": null }, "defaultValue": null @@ -100456,7 +102923,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `RevisionStatus`.", + "description": "The method to use when ordering `ReportingRequirement`.", "type": { "kind": "LIST", "name": null, @@ -100465,7 +102932,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "RevisionStatusesOrderBy", + "name": "ReportingRequirementsOrderBy", "ofType": null } } @@ -100478,7 +102945,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RevisionStatusesConnection", + "name": "ReportingRequirementsConnection", "ofType": null } }, @@ -100493,12 +102960,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionStatusCreatedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `RevisionStatus`.", + "name": "CifUserCifUsersByReportingRequirementCreatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ReportingRequirement`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `RevisionStatus`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ReportingRequirement`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -100511,7 +102978,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionStatusCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByReportingRequirementCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -100580,8 +103047,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionStatusCreatedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `RevisionStatus`.", + "name": "CifUserCifUsersByReportingRequirementCreatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ReportingRequirement`.", "fields": [ { "name": "cursor", @@ -100608,8 +103075,8 @@ "deprecationReason": null }, { - "name": "revisionStatusesByUpdatedBy", - "description": "Reads and enables pagination through a set of `RevisionStatus`.", + "name": "reportingRequirementsByArchivedBy", + "description": "Reads and enables pagination through a set of `ReportingRequirement`.", "args": [ { "name": "after", @@ -100636,7 +103103,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionStatusCondition", + "name": "ReportingRequirementCondition", "ofType": null }, "defaultValue": null @@ -100646,7 +103113,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionStatusFilter", + "name": "ReportingRequirementFilter", "ofType": null }, "defaultValue": null @@ -100693,7 +103160,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `RevisionStatus`.", + "description": "The method to use when ordering `ReportingRequirement`.", "type": { "kind": "LIST", "name": null, @@ -100702,7 +103169,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "RevisionStatusesOrderBy", + "name": "ReportingRequirementsOrderBy", "ofType": null } } @@ -100715,7 +103182,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RevisionStatusesConnection", + "name": "ReportingRequirementsConnection", "ofType": null } }, @@ -100730,12 +103197,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionStatusUpdatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `RevisionStatus`.", + "name": "CifUserCifUsersByReportingRequirementCreatedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ReportingRequirement`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `RevisionStatus`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ReportingRequirement`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -100748,7 +103215,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionStatusUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByReportingRequirementCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -100817,8 +103284,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionStatusUpdatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `RevisionStatus`.", + "name": "CifUserCifUsersByReportingRequirementCreatedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ReportingRequirement`.", "fields": [ { "name": "cursor", @@ -100845,8 +103312,8 @@ "deprecationReason": null }, { - "name": "revisionStatusesByArchivedBy", - "description": "Reads and enables pagination through a set of `RevisionStatus`.", + "name": "reportingRequirementsByUpdatedBy", + "description": "Reads and enables pagination through a set of `ReportingRequirement`.", "args": [ { "name": "after", @@ -100873,7 +103340,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionStatusCondition", + "name": "ReportingRequirementCondition", "ofType": null }, "defaultValue": null @@ -100883,7 +103350,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionStatusFilter", + "name": "ReportingRequirementFilter", "ofType": null }, "defaultValue": null @@ -100930,7 +103397,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `RevisionStatus`.", + "description": "The method to use when ordering `ReportingRequirement`.", "type": { "kind": "LIST", "name": null, @@ -100939,7 +103406,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "RevisionStatusesOrderBy", + "name": "ReportingRequirementsOrderBy", "ofType": null } } @@ -100952,7 +103419,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RevisionStatusesConnection", + "name": "ReportingRequirementsConnection", "ofType": null } }, @@ -100967,12 +103434,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionStatusUpdatedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `RevisionStatus`.", + "name": "CifUserCifUsersByReportingRequirementUpdatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ReportingRequirement`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `RevisionStatus`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ReportingRequirement`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -100985,7 +103452,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionStatusUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByReportingRequirementUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -101054,8 +103521,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionStatusUpdatedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `RevisionStatus`.", + "name": "CifUserCifUsersByReportingRequirementUpdatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ReportingRequirement`.", "fields": [ { "name": "cursor", @@ -101082,8 +103549,8 @@ "deprecationReason": null }, { - "name": "revisionStatusesByCreatedBy", - "description": "Reads and enables pagination through a set of `RevisionStatus`.", + "name": "reportingRequirementsByArchivedBy", + "description": "Reads and enables pagination through a set of `ReportingRequirement`.", "args": [ { "name": "after", @@ -101110,7 +103577,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionStatusCondition", + "name": "ReportingRequirementCondition", "ofType": null }, "defaultValue": null @@ -101120,7 +103587,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionStatusFilter", + "name": "ReportingRequirementFilter", "ofType": null }, "defaultValue": null @@ -101167,7 +103634,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `RevisionStatus`.", + "description": "The method to use when ordering `ReportingRequirement`.", "type": { "kind": "LIST", "name": null, @@ -101176,7 +103643,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "RevisionStatusesOrderBy", + "name": "ReportingRequirementsOrderBy", "ofType": null } } @@ -101189,7 +103656,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RevisionStatusesConnection", + "name": "ReportingRequirementsConnection", "ofType": null } }, @@ -101204,12 +103671,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionTypeArchivedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `RevisionType`.", + "name": "CifUserCifUsersByReportingRequirementUpdatedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ReportingRequirement`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `RevisionType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ReportingRequirement`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -101222,7 +103689,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionTypeArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByReportingRequirementUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -101291,8 +103758,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionTypeArchivedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `RevisionType`.", + "name": "CifUserCifUsersByReportingRequirementUpdatedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ReportingRequirement`.", "fields": [ { "name": "cursor", @@ -101319,8 +103786,8 @@ "deprecationReason": null }, { - "name": "revisionTypesByCreatedBy", - "description": "Reads and enables pagination through a set of `RevisionType`.", + "name": "reportingRequirementsByCreatedBy", + "description": "Reads and enables pagination through a set of `ReportingRequirement`.", "args": [ { "name": "after", @@ -101347,7 +103814,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionTypeCondition", + "name": "ReportingRequirementCondition", "ofType": null }, "defaultValue": null @@ -101357,7 +103824,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionTypeFilter", + "name": "ReportingRequirementFilter", "ofType": null }, "defaultValue": null @@ -101404,7 +103871,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `RevisionType`.", + "description": "The method to use when ordering `ReportingRequirement`.", "type": { "kind": "LIST", "name": null, @@ -101413,7 +103880,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "RevisionTypesOrderBy", + "name": "ReportingRequirementsOrderBy", "ofType": null } } @@ -101426,7 +103893,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RevisionTypesConnection", + "name": "ReportingRequirementsConnection", "ofType": null } }, @@ -101441,12 +103908,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionTypeArchivedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `RevisionType`.", + "name": "CifUserCifUsersByRevisionStatusArchivedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `RevisionStatus`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `RevisionType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `RevisionStatus`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -101459,7 +103926,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionTypeArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByRevisionStatusArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -101528,8 +103995,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionTypeArchivedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `RevisionType`.", + "name": "CifUserCifUsersByRevisionStatusArchivedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `RevisionStatus`.", "fields": [ { "name": "cursor", @@ -101556,8 +104023,8 @@ "deprecationReason": null }, { - "name": "revisionTypesByUpdatedBy", - "description": "Reads and enables pagination through a set of `RevisionType`.", + "name": "revisionStatusesByCreatedBy", + "description": "Reads and enables pagination through a set of `RevisionStatus`.", "args": [ { "name": "after", @@ -101584,7 +104051,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionTypeCondition", + "name": "RevisionStatusCondition", "ofType": null }, "defaultValue": null @@ -101594,7 +104061,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionTypeFilter", + "name": "RevisionStatusFilter", "ofType": null }, "defaultValue": null @@ -101641,7 +104108,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `RevisionType`.", + "description": "The method to use when ordering `RevisionStatus`.", "type": { "kind": "LIST", "name": null, @@ -101650,7 +104117,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "RevisionTypesOrderBy", + "name": "RevisionStatusesOrderBy", "ofType": null } } @@ -101663,7 +104130,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RevisionTypesConnection", + "name": "RevisionStatusesConnection", "ofType": null } }, @@ -101678,12 +104145,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionTypeCreatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `RevisionType`.", + "name": "CifUserCifUsersByRevisionStatusArchivedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `RevisionStatus`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `RevisionType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `RevisionStatus`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -101696,7 +104163,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionTypeCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByRevisionStatusArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -101765,8 +104232,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionTypeCreatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `RevisionType`.", + "name": "CifUserCifUsersByRevisionStatusArchivedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `RevisionStatus`.", "fields": [ { "name": "cursor", @@ -101793,8 +104260,8 @@ "deprecationReason": null }, { - "name": "revisionTypesByArchivedBy", - "description": "Reads and enables pagination through a set of `RevisionType`.", + "name": "revisionStatusesByUpdatedBy", + "description": "Reads and enables pagination through a set of `RevisionStatus`.", "args": [ { "name": "after", @@ -101821,7 +104288,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionTypeCondition", + "name": "RevisionStatusCondition", "ofType": null }, "defaultValue": null @@ -101831,7 +104298,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionTypeFilter", + "name": "RevisionStatusFilter", "ofType": null }, "defaultValue": null @@ -101878,7 +104345,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `RevisionType`.", + "description": "The method to use when ordering `RevisionStatus`.", "type": { "kind": "LIST", "name": null, @@ -101887,7 +104354,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "RevisionTypesOrderBy", + "name": "RevisionStatusesOrderBy", "ofType": null } } @@ -101900,7 +104367,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RevisionTypesConnection", + "name": "RevisionStatusesConnection", "ofType": null } }, @@ -101915,12 +104382,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionTypeCreatedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `RevisionType`.", + "name": "CifUserCifUsersByRevisionStatusCreatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `RevisionStatus`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `RevisionType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `RevisionStatus`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -101933,7 +104400,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionTypeCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByRevisionStatusCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -102002,8 +104469,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionTypeCreatedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `RevisionType`.", + "name": "CifUserCifUsersByRevisionStatusCreatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `RevisionStatus`.", "fields": [ { "name": "cursor", @@ -102030,8 +104497,8 @@ "deprecationReason": null }, { - "name": "revisionTypesByUpdatedBy", - "description": "Reads and enables pagination through a set of `RevisionType`.", + "name": "revisionStatusesByArchivedBy", + "description": "Reads and enables pagination through a set of `RevisionStatus`.", "args": [ { "name": "after", @@ -102058,7 +104525,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionTypeCondition", + "name": "RevisionStatusCondition", "ofType": null }, "defaultValue": null @@ -102068,7 +104535,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionTypeFilter", + "name": "RevisionStatusFilter", "ofType": null }, "defaultValue": null @@ -102115,7 +104582,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `RevisionType`.", + "description": "The method to use when ordering `RevisionStatus`.", "type": { "kind": "LIST", "name": null, @@ -102124,7 +104591,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "RevisionTypesOrderBy", + "name": "RevisionStatusesOrderBy", "ofType": null } } @@ -102137,7 +104604,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RevisionTypesConnection", + "name": "RevisionStatusesConnection", "ofType": null } }, @@ -102152,12 +104619,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionTypeUpdatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `RevisionType`.", + "name": "CifUserCifUsersByRevisionStatusCreatedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `RevisionStatus`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `RevisionType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `RevisionStatus`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -102170,7 +104637,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionTypeUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByRevisionStatusCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -102239,8 +104706,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionTypeUpdatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `RevisionType`.", + "name": "CifUserCifUsersByRevisionStatusCreatedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `RevisionStatus`.", "fields": [ { "name": "cursor", @@ -102267,8 +104734,8 @@ "deprecationReason": null }, { - "name": "revisionTypesByArchivedBy", - "description": "Reads and enables pagination through a set of `RevisionType`.", + "name": "revisionStatusesByUpdatedBy", + "description": "Reads and enables pagination through a set of `RevisionStatus`.", "args": [ { "name": "after", @@ -102295,7 +104762,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionTypeCondition", + "name": "RevisionStatusCondition", "ofType": null }, "defaultValue": null @@ -102305,7 +104772,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionTypeFilter", + "name": "RevisionStatusFilter", "ofType": null }, "defaultValue": null @@ -102352,7 +104819,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `RevisionType`.", + "description": "The method to use when ordering `RevisionStatus`.", "type": { "kind": "LIST", "name": null, @@ -102361,7 +104828,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "RevisionTypesOrderBy", + "name": "RevisionStatusesOrderBy", "ofType": null } } @@ -102374,7 +104841,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RevisionTypesConnection", + "name": "RevisionStatusesConnection", "ofType": null } }, @@ -102389,12 +104856,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionTypeUpdatedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `RevisionType`.", + "name": "CifUserCifUsersByRevisionStatusUpdatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `RevisionStatus`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `RevisionType`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `RevisionStatus`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -102407,7 +104874,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionTypeUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByRevisionStatusUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -102476,8 +104943,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersByRevisionTypeUpdatedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `RevisionType`.", + "name": "CifUserCifUsersByRevisionStatusUpdatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `RevisionStatus`.", "fields": [ { "name": "cursor", @@ -102504,8 +104971,8 @@ "deprecationReason": null }, { - "name": "revisionTypesByCreatedBy", - "description": "Reads and enables pagination through a set of `RevisionType`.", + "name": "revisionStatusesByArchivedBy", + "description": "Reads and enables pagination through a set of `RevisionStatus`.", "args": [ { "name": "after", @@ -102532,7 +104999,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionTypeCondition", + "name": "RevisionStatusCondition", "ofType": null }, "defaultValue": null @@ -102542,7 +105009,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionTypeFilter", + "name": "RevisionStatusFilter", "ofType": null }, "defaultValue": null @@ -102589,7 +105056,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `RevisionType`.", + "description": "The method to use when ordering `RevisionStatus`.", "type": { "kind": "LIST", "name": null, @@ -102598,7 +105065,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "RevisionTypesOrderBy", + "name": "RevisionStatusesOrderBy", "ofType": null } } @@ -102611,7 +105078,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RevisionTypesConnection", + "name": "RevisionStatusesConnection", "ofType": null } }, @@ -102626,12 +105093,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersBySectorArchivedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Sector`.", + "name": "CifUserCifUsersByRevisionStatusUpdatedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `RevisionStatus`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Sector`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `RevisionStatus`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -102644,7 +105111,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersBySectorArchivedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByRevisionStatusUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -102713,8 +105180,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersBySectorArchivedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `Sector`.", + "name": "CifUserCifUsersByRevisionStatusUpdatedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `RevisionStatus`.", "fields": [ { "name": "cursor", @@ -102741,8 +105208,8 @@ "deprecationReason": null }, { - "name": "sectorsByCreatedBy", - "description": "Reads and enables pagination through a set of `Sector`.", + "name": "revisionStatusesByCreatedBy", + "description": "Reads and enables pagination through a set of `RevisionStatus`.", "args": [ { "name": "after", @@ -102769,7 +105236,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "SectorCondition", + "name": "RevisionStatusCondition", "ofType": null }, "defaultValue": null @@ -102779,7 +105246,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "SectorFilter", + "name": "RevisionStatusFilter", "ofType": null }, "defaultValue": null @@ -102826,7 +105293,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Sector`.", + "description": "The method to use when ordering `RevisionStatus`.", "type": { "kind": "LIST", "name": null, @@ -102835,7 +105302,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "SectorsOrderBy", + "name": "RevisionStatusesOrderBy", "ofType": null } } @@ -102848,7 +105315,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SectorsConnection", + "name": "RevisionStatusesConnection", "ofType": null } }, @@ -102863,12 +105330,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersBySectorArchivedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Sector`.", + "name": "CifUserCifUsersByRevisionTypeArchivedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `RevisionType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Sector`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `RevisionType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -102881,7 +105348,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersBySectorArchivedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByRevisionTypeArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -102950,8 +105417,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersBySectorArchivedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `Sector`.", + "name": "CifUserCifUsersByRevisionTypeArchivedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `RevisionType`.", "fields": [ { "name": "cursor", @@ -102978,8 +105445,8 @@ "deprecationReason": null }, { - "name": "sectorsByUpdatedBy", - "description": "Reads and enables pagination through a set of `Sector`.", + "name": "revisionTypesByCreatedBy", + "description": "Reads and enables pagination through a set of `RevisionType`.", "args": [ { "name": "after", @@ -103006,7 +105473,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "SectorCondition", + "name": "RevisionTypeCondition", "ofType": null }, "defaultValue": null @@ -103016,7 +105483,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "SectorFilter", + "name": "RevisionTypeFilter", "ofType": null }, "defaultValue": null @@ -103063,7 +105530,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Sector`.", + "description": "The method to use when ordering `RevisionType`.", "type": { "kind": "LIST", "name": null, @@ -103072,7 +105539,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "SectorsOrderBy", + "name": "RevisionTypesOrderBy", "ofType": null } } @@ -103085,7 +105552,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SectorsConnection", + "name": "RevisionTypesConnection", "ofType": null } }, @@ -103100,12 +105567,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersBySectorCreatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Sector`.", + "name": "CifUserCifUsersByRevisionTypeArchivedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `RevisionType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Sector`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `RevisionType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -103118,7 +105585,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersBySectorCreatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByRevisionTypeArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -103187,8 +105654,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersBySectorCreatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `Sector`.", + "name": "CifUserCifUsersByRevisionTypeArchivedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `RevisionType`.", "fields": [ { "name": "cursor", @@ -103215,8 +105682,8 @@ "deprecationReason": null }, { - "name": "sectorsByArchivedBy", - "description": "Reads and enables pagination through a set of `Sector`.", + "name": "revisionTypesByUpdatedBy", + "description": "Reads and enables pagination through a set of `RevisionType`.", "args": [ { "name": "after", @@ -103243,7 +105710,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "SectorCondition", + "name": "RevisionTypeCondition", "ofType": null }, "defaultValue": null @@ -103253,7 +105720,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "SectorFilter", + "name": "RevisionTypeFilter", "ofType": null }, "defaultValue": null @@ -103300,7 +105767,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Sector`.", + "description": "The method to use when ordering `RevisionType`.", "type": { "kind": "LIST", "name": null, @@ -103309,7 +105776,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "SectorsOrderBy", + "name": "RevisionTypesOrderBy", "ofType": null } } @@ -103322,7 +105789,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SectorsConnection", + "name": "RevisionTypesConnection", "ofType": null } }, @@ -103337,12 +105804,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersBySectorCreatedByAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Sector`.", + "name": "CifUserCifUsersByRevisionTypeCreatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `RevisionType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Sector`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `RevisionType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -103355,7 +105822,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersBySectorCreatedByAndUpdatedByManyToManyEdge", + "name": "CifUserCifUsersByRevisionTypeCreatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -103424,8 +105891,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersBySectorCreatedByAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `Sector`.", + "name": "CifUserCifUsersByRevisionTypeCreatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `RevisionType`.", "fields": [ { "name": "cursor", @@ -103452,8 +105919,8 @@ "deprecationReason": null }, { - "name": "sectorsByUpdatedBy", - "description": "Reads and enables pagination through a set of `Sector`.", + "name": "revisionTypesByArchivedBy", + "description": "Reads and enables pagination through a set of `RevisionType`.", "args": [ { "name": "after", @@ -103480,7 +105947,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "SectorCondition", + "name": "RevisionTypeCondition", "ofType": null }, "defaultValue": null @@ -103490,7 +105957,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "SectorFilter", + "name": "RevisionTypeFilter", "ofType": null }, "defaultValue": null @@ -103537,7 +106004,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Sector`.", + "description": "The method to use when ordering `RevisionType`.", "type": { "kind": "LIST", "name": null, @@ -103546,7 +106013,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "SectorsOrderBy", + "name": "RevisionTypesOrderBy", "ofType": null } } @@ -103559,7 +106026,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SectorsConnection", + "name": "RevisionTypesConnection", "ofType": null } }, @@ -103574,12 +106041,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersBySectorUpdatedByAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Sector`.", + "name": "CifUserCifUsersByRevisionTypeCreatedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `RevisionType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Sector`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `RevisionType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -103592,7 +106059,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersBySectorUpdatedByAndArchivedByManyToManyEdge", + "name": "CifUserCifUsersByRevisionTypeCreatedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -103661,8 +106128,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersBySectorUpdatedByAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `Sector`.", + "name": "CifUserCifUsersByRevisionTypeCreatedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `RevisionType`.", "fields": [ { "name": "cursor", @@ -103689,8 +106156,8 @@ "deprecationReason": null }, { - "name": "sectorsByArchivedBy", - "description": "Reads and enables pagination through a set of `Sector`.", + "name": "revisionTypesByUpdatedBy", + "description": "Reads and enables pagination through a set of `RevisionType`.", "args": [ { "name": "after", @@ -103717,7 +106184,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "SectorCondition", + "name": "RevisionTypeCondition", "ofType": null }, "defaultValue": null @@ -103727,7 +106194,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "SectorFilter", + "name": "RevisionTypeFilter", "ofType": null }, "defaultValue": null @@ -103774,7 +106241,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Sector`.", + "description": "The method to use when ordering `RevisionType`.", "type": { "kind": "LIST", "name": null, @@ -103783,7 +106250,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "SectorsOrderBy", + "name": "RevisionTypesOrderBy", "ofType": null } } @@ -103796,7 +106263,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SectorsConnection", + "name": "RevisionTypesConnection", "ofType": null } }, @@ -103811,12 +106278,12 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersBySectorUpdatedByAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Sector`.", + "name": "CifUserCifUsersByRevisionTypeUpdatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `RevisionType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Sector`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `RevisionType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -103829,7 +106296,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserCifUsersBySectorUpdatedByAndCreatedByManyToManyEdge", + "name": "CifUserCifUsersByRevisionTypeUpdatedByAndArchivedByManyToManyEdge", "ofType": null } } @@ -103898,8 +106365,8 @@ }, { "kind": "OBJECT", - "name": "CifUserCifUsersBySectorUpdatedByAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `Sector`.", + "name": "CifUserCifUsersByRevisionTypeUpdatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `RevisionType`.", "fields": [ { "name": "cursor", @@ -103926,8 +106393,8 @@ "deprecationReason": null }, { - "name": "sectorsByCreatedBy", - "description": "Reads and enables pagination through a set of `Sector`.", + "name": "revisionTypesByArchivedBy", + "description": "Reads and enables pagination through a set of `RevisionType`.", "args": [ { "name": "after", @@ -103954,7 +106421,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "SectorCondition", + "name": "RevisionTypeCondition", "ofType": null }, "defaultValue": null @@ -103964,7 +106431,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "SectorFilter", + "name": "RevisionTypeFilter", "ofType": null }, "defaultValue": null @@ -104011,7 +106478,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Sector`.", + "description": "The method to use when ordering `RevisionType`.", "type": { "kind": "LIST", "name": null, @@ -104020,7 +106487,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "SectorsOrderBy", + "name": "RevisionTypesOrderBy", "ofType": null } } @@ -104033,7 +106500,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SectorsConnection", + "name": "RevisionTypesConnection", "ofType": null } }, @@ -104046,145 +106513,14 @@ "enumValues": null, "possibleTypes": null }, - { - "kind": "INPUT_OBJECT", - "name": "CifUserCondition", - "description": "A condition to be used against `CifUser` object types. All fields are tested for equality and combined with a logical ‘and.’", - "fields": null, - "inputFields": [ - { - "name": "allowSubUpdate", - "description": "Checks for equality with the object’s `allowSubUpdate` field.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "archivedAt", - "description": "Checks for equality with the object’s `archivedAt` field.", - "type": { - "kind": "SCALAR", - "name": "Datetime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "archivedBy", - "description": "Checks for equality with the object’s `archivedBy` field.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": "Checks for equality with the object’s `createdAt` field.", - "type": { - "kind": "SCALAR", - "name": "Datetime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdBy", - "description": "Checks for equality with the object’s `createdBy` field.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emailAddress", - "description": "Checks for equality with the object’s `emailAddress` field.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "familyName", - "description": "Checks for equality with the object’s `familyName` field.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "givenName", - "description": "Checks for equality with the object’s `givenName` field.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rowId", - "description": "Checks for equality with the object’s `rowId` field.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sessionSub", - "description": "Checks for equality with the object’s `sessionSub` field.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": "Checks for equality with the object’s `updatedAt` field.", - "type": { - "kind": "SCALAR", - "name": "Datetime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedBy", - "description": "Checks for equality with the object’s `updatedBy` field.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, { "kind": "OBJECT", - "name": "CifUserContactsByProjectContactArchivedByAndContactIdManyToManyConnection", - "description": "A connection to a list of `Contact` values, with data from `ProjectContact`.", + "name": "CifUserCifUsersByRevisionTypeUpdatedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `RevisionType`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `Contact`, info from the `ProjectContact`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `RevisionType`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -104197,7 +106533,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserContactsByProjectContactArchivedByAndContactIdManyToManyEdge", + "name": "CifUserCifUsersByRevisionTypeUpdatedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -104208,7 +106544,7 @@ }, { "name": "nodes", - "description": "A list of `Contact` objects.", + "description": "A list of `CifUser` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -104218,7 +106554,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Contact", + "name": "CifUser", "ofType": null } } @@ -104244,7 +106580,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `Contact` you could get from the connection.", + "description": "The count of *all* `CifUser` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -104266,8 +106602,8 @@ }, { "kind": "OBJECT", - "name": "CifUserContactsByProjectContactArchivedByAndContactIdManyToManyEdge", - "description": "A `Contact` edge in the connection, with data from `ProjectContact`.", + "name": "CifUserCifUsersByRevisionTypeUpdatedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `RevisionType`.", "fields": [ { "name": "cursor", @@ -104283,19 +106619,19 @@ }, { "name": "node", - "description": "The `Contact` at the end of the edge.", + "description": "The `CifUser` at the end of the edge.", "args": [], "type": { "kind": "OBJECT", - "name": "Contact", + "name": "CifUser", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectContactsByContactId", - "description": "Reads and enables pagination through a set of `ProjectContact`.", + "name": "revisionTypesByCreatedBy", + "description": "Reads and enables pagination through a set of `RevisionType`.", "args": [ { "name": "after", @@ -104322,7 +106658,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactCondition", + "name": "RevisionTypeCondition", "ofType": null }, "defaultValue": null @@ -104332,7 +106668,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactFilter", + "name": "RevisionTypeFilter", "ofType": null }, "defaultValue": null @@ -104379,7 +106715,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectContact`.", + "description": "The method to use when ordering `RevisionType`.", "type": { "kind": "LIST", "name": null, @@ -104388,7 +106724,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectContactsOrderBy", + "name": "RevisionTypesOrderBy", "ofType": null } } @@ -104401,7 +106737,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectContactsConnection", + "name": "RevisionTypesConnection", "ofType": null } }, @@ -104416,12 +106752,12 @@ }, { "kind": "OBJECT", - "name": "CifUserContactsByProjectContactCreatedByAndContactIdManyToManyConnection", - "description": "A connection to a list of `Contact` values, with data from `ProjectContact`.", + "name": "CifUserCifUsersBySectorArchivedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Sector`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `Contact`, info from the `ProjectContact`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `Sector`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -104434,7 +106770,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserContactsByProjectContactCreatedByAndContactIdManyToManyEdge", + "name": "CifUserCifUsersBySectorArchivedByAndCreatedByManyToManyEdge", "ofType": null } } @@ -104445,7 +106781,7 @@ }, { "name": "nodes", - "description": "A list of `Contact` objects.", + "description": "A list of `CifUser` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -104455,7 +106791,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Contact", + "name": "CifUser", "ofType": null } } @@ -104481,7 +106817,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `Contact` you could get from the connection.", + "description": "The count of *all* `CifUser` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -104503,8 +106839,8 @@ }, { "kind": "OBJECT", - "name": "CifUserContactsByProjectContactCreatedByAndContactIdManyToManyEdge", - "description": "A `Contact` edge in the connection, with data from `ProjectContact`.", + "name": "CifUserCifUsersBySectorArchivedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `Sector`.", "fields": [ { "name": "cursor", @@ -104520,19 +106856,19 @@ }, { "name": "node", - "description": "The `Contact` at the end of the edge.", + "description": "The `CifUser` at the end of the edge.", "args": [], "type": { "kind": "OBJECT", - "name": "Contact", + "name": "CifUser", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectContactsByContactId", - "description": "Reads and enables pagination through a set of `ProjectContact`.", + "name": "sectorsByCreatedBy", + "description": "Reads and enables pagination through a set of `Sector`.", "args": [ { "name": "after", @@ -104559,7 +106895,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactCondition", + "name": "SectorCondition", "ofType": null }, "defaultValue": null @@ -104569,7 +106905,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactFilter", + "name": "SectorFilter", "ofType": null }, "defaultValue": null @@ -104616,7 +106952,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectContact`.", + "description": "The method to use when ordering `Sector`.", "type": { "kind": "LIST", "name": null, @@ -104625,7 +106961,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectContactsOrderBy", + "name": "SectorsOrderBy", "ofType": null } } @@ -104638,7 +106974,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectContactsConnection", + "name": "SectorsConnection", "ofType": null } }, @@ -104653,12 +106989,12 @@ }, { "kind": "OBJECT", - "name": "CifUserContactsByProjectContactUpdatedByAndContactIdManyToManyConnection", - "description": "A connection to a list of `Contact` values, with data from `ProjectContact`.", + "name": "CifUserCifUsersBySectorArchivedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Sector`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `Contact`, info from the `ProjectContact`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `Sector`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -104671,7 +107007,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserContactsByProjectContactUpdatedByAndContactIdManyToManyEdge", + "name": "CifUserCifUsersBySectorArchivedByAndUpdatedByManyToManyEdge", "ofType": null } } @@ -104682,7 +107018,7 @@ }, { "name": "nodes", - "description": "A list of `Contact` objects.", + "description": "A list of `CifUser` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -104692,7 +107028,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Contact", + "name": "CifUser", "ofType": null } } @@ -104718,7 +107054,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `Contact` you could get from the connection.", + "description": "The count of *all* `CifUser` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -104740,8 +107076,8 @@ }, { "kind": "OBJECT", - "name": "CifUserContactsByProjectContactUpdatedByAndContactIdManyToManyEdge", - "description": "A `Contact` edge in the connection, with data from `ProjectContact`.", + "name": "CifUserCifUsersBySectorArchivedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `Sector`.", "fields": [ { "name": "cursor", @@ -104757,19 +107093,19 @@ }, { "name": "node", - "description": "The `Contact` at the end of the edge.", + "description": "The `CifUser` at the end of the edge.", "args": [], "type": { "kind": "OBJECT", - "name": "Contact", + "name": "CifUser", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectContactsByContactId", - "description": "Reads and enables pagination through a set of `ProjectContact`.", + "name": "sectorsByUpdatedBy", + "description": "Reads and enables pagination through a set of `Sector`.", "args": [ { "name": "after", @@ -104796,7 +107132,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactCondition", + "name": "SectorCondition", "ofType": null }, "defaultValue": null @@ -104806,7 +107142,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactFilter", + "name": "SectorFilter", "ofType": null }, "defaultValue": null @@ -104853,7 +107189,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectContact`.", + "description": "The method to use when ordering `Sector`.", "type": { "kind": "LIST", "name": null, @@ -104862,7 +107198,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectContactsOrderBy", + "name": "SectorsOrderBy", "ofType": null } } @@ -104875,7 +107211,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectContactsConnection", + "name": "SectorsConnection", "ofType": null } }, @@ -104889,352 +107225,962 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "CifUserFilter", - "description": "A filter to be used against `CifUser` object types. All fields are combined with a logical ‘and.’", - "fields": null, - "inputFields": [ - { - "name": "additionalFundingSourceStatusesByArchivedBy", - "description": "Filter by the object’s `additionalFundingSourceStatusesByArchivedBy` relation.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserToManyAdditionalFundingSourceStatusFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "additionalFundingSourceStatusesByArchivedByExist", - "description": "Some related `additionalFundingSourceStatusesByArchivedBy` exist.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "additionalFundingSourceStatusesByCreatedBy", - "description": "Filter by the object’s `additionalFundingSourceStatusesByCreatedBy` relation.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserToManyAdditionalFundingSourceStatusFilter", - "ofType": null - }, - "defaultValue": null - }, + "kind": "OBJECT", + "name": "CifUserCifUsersBySectorCreatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Sector`.", + "fields": [ { - "name": "additionalFundingSourceStatusesByCreatedByExist", - "description": "Some related `additionalFundingSourceStatusesByCreatedBy` exist.", + "name": "edges", + "description": "A list of edges which contains the `CifUser`, info from the `Sector`, and the cursor to aid in pagination.", + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CifUserCifUsersBySectorCreatedByAndArchivedByManyToManyEdge", + "ofType": null + } + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "additionalFundingSourceStatusesByUpdatedBy", - "description": "Filter by the object’s `additionalFundingSourceStatusesByUpdatedBy` relation.", + "name": "nodes", + "description": "A list of `CifUser` objects.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserToManyAdditionalFundingSourceStatusFilter", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CifUser", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "additionalFundingSourceStatusesByUpdatedByExist", - "description": "Some related `additionalFundingSourceStatusesByUpdatedBy` exist.", + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "additionalFundingSourcesByArchivedBy", - "description": "Filter by the object’s `additionalFundingSourcesByArchivedBy` relation.", + "name": "totalCount", + "description": "The count of *all* `CifUser` you could get from the connection.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserToManyAdditionalFundingSourceFilter", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CifUserCifUsersBySectorCreatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `Sector`.", + "fields": [ { - "name": "additionalFundingSourcesByArchivedByExist", - "description": "Some related `additionalFundingSourcesByArchivedBy` exist.", + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Cursor", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "additionalFundingSourcesByCreatedBy", - "description": "Filter by the object’s `additionalFundingSourcesByCreatedBy` relation.", + "name": "node", + "description": "The `CifUser` at the end of the edge.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserToManyAdditionalFundingSourceFilter", + "kind": "OBJECT", + "name": "CifUser", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "additionalFundingSourcesByCreatedByExist", - "description": "Some related `additionalFundingSourcesByCreatedBy` exist.", + "name": "sectorsByArchivedBy", + "description": "Reads and enables pagination through a set of `Sector`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SectorCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SectorFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `Sector`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SectorsOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SectorsConnection", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CifUserCifUsersBySectorCreatedByAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Sector`.", + "fields": [ { - "name": "additionalFundingSourcesByUpdatedBy", - "description": "Filter by the object’s `additionalFundingSourcesByUpdatedBy` relation.", + "name": "edges", + "description": "A list of edges which contains the `CifUser`, info from the `Sector`, and the cursor to aid in pagination.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserToManyAdditionalFundingSourceFilter", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CifUserCifUsersBySectorCreatedByAndUpdatedByManyToManyEdge", + "ofType": null + } + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "additionalFundingSourcesByUpdatedByExist", - "description": "Some related `additionalFundingSourcesByUpdatedBy` exist.", + "name": "nodes", + "description": "A list of `CifUser` objects.", + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CifUser", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "allowSubUpdate", - "description": "Filter by the object’s `allowSubUpdate` field.", + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "BooleanFilter", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "amendmentTypesByArchivedBy", - "description": "Filter by the object’s `amendmentTypesByArchivedBy` relation.", + "name": "totalCount", + "description": "The count of *all* `CifUser` you could get from the connection.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserToManyAmendmentTypeFilter", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CifUserCifUsersBySectorCreatedByAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `Sector`.", + "fields": [ { - "name": "amendmentTypesByArchivedByExist", - "description": "Some related `amendmentTypesByArchivedBy` exist.", + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amendmentTypesByCreatedBy", - "description": "Filter by the object’s `amendmentTypesByCreatedBy` relation.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserToManyAmendmentTypeFilter", + "name": "Cursor", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "amendmentTypesByCreatedByExist", - "description": "Some related `amendmentTypesByCreatedBy` exist.", + "name": "node", + "description": "The `CifUser` at the end of the edge.", + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "CifUser", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "amendmentTypesByUpdatedBy", - "description": "Filter by the object’s `amendmentTypesByUpdatedBy` relation.", + "name": "sectorsByUpdatedBy", + "description": "Reads and enables pagination through a set of `Sector`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SectorCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SectorFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `Sector`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SectorsOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserToManyAmendmentTypeFilter", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SectorsConnection", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CifUserCifUsersBySectorUpdatedByAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Sector`.", + "fields": [ { - "name": "amendmentTypesByUpdatedByExist", - "description": "Some related `amendmentTypesByUpdatedBy` exist.", + "name": "edges", + "description": "A list of edges which contains the `CifUser`, info from the `Sector`, and the cursor to aid in pagination.", + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CifUserCifUsersBySectorUpdatedByAndArchivedByManyToManyEdge", + "ofType": null + } + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "and", - "description": "Checks for all expressions in this list.", + "name": "nodes", + "description": "A list of `CifUser` objects.", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CifUserFilter", + "kind": "OBJECT", + "name": "CifUser", "ofType": null } } }, - "defaultValue": null - }, - { - "name": "archivedAt", - "description": "Filter by the object’s `archivedAt` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "DatetimeFilter", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "archivedBy", - "description": "Filter by the object’s `archivedBy` field.", + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "IntFilter", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "attachmentsByArchivedBy", - "description": "Filter by the object’s `attachmentsByArchivedBy` relation.", + "name": "totalCount", + "description": "The count of *all* `CifUser` you could get from the connection.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserToManyAttachmentFilter", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CifUserCifUsersBySectorUpdatedByAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `Sector`.", + "fields": [ { - "name": "attachmentsByArchivedByExist", - "description": "Some related `attachmentsByArchivedBy` exist.", + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Cursor", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "attachmentsByCreatedBy", - "description": "Filter by the object’s `attachmentsByCreatedBy` relation.", + "name": "node", + "description": "The `CifUser` at the end of the edge.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserToManyAttachmentFilter", + "kind": "OBJECT", + "name": "CifUser", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "attachmentsByCreatedByExist", - "description": "Some related `attachmentsByCreatedBy` exist.", + "name": "sectorsByArchivedBy", + "description": "Reads and enables pagination through a set of `Sector`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SectorCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SectorFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `Sector`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SectorsOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SectorsConnection", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CifUserCifUsersBySectorUpdatedByAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `Sector`.", + "fields": [ { - "name": "attachmentsByUpdatedBy", - "description": "Filter by the object’s `attachmentsByUpdatedBy` relation.", + "name": "edges", + "description": "A list of edges which contains the `CifUser`, info from the `Sector`, and the cursor to aid in pagination.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserToManyAttachmentFilter", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CifUserCifUsersBySectorUpdatedByAndCreatedByManyToManyEdge", + "ofType": null + } + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "attachmentsByUpdatedByExist", - "description": "Some related `attachmentsByUpdatedBy` exist.", + "name": "nodes", + "description": "A list of `CifUser` objects.", + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CifUser", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "changeStatusesByArchivedBy", - "description": "Filter by the object’s `changeStatusesByArchivedBy` relation.", + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserToManyChangeStatusFilter", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "changeStatusesByArchivedByExist", - "description": "Some related `changeStatusesByArchivedBy` exist.", + "name": "totalCount", + "description": "The count of *all* `CifUser` you could get from the connection.", + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CifUserCifUsersBySectorUpdatedByAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `Sector`.", + "fields": [ { - "name": "changeStatusesByCreatedBy", - "description": "Filter by the object’s `changeStatusesByCreatedBy` relation.", + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserToManyChangeStatusFilter", + "kind": "SCALAR", + "name": "Cursor", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "changeStatusesByCreatedByExist", - "description": "Some related `changeStatusesByCreatedBy` exist.", + "name": "node", + "description": "The `CifUser` at the end of the edge.", + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "CifUser", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "changeStatusesByUpdatedBy", - "description": "Filter by the object’s `changeStatusesByUpdatedBy` relation.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserToManyChangeStatusFilter", - "ofType": null - }, - "defaultValue": null - }, + "name": "sectorsByCreatedBy", + "description": "Reads and enables pagination through a set of `Sector`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SectorCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SectorFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `Sector`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SectorsOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SectorsConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CifUserCondition", + "description": "A condition to be used against `CifUser` object types. All fields are tested for equality and combined with a logical ‘and.’", + "fields": null, + "inputFields": [ { - "name": "changeStatusesByUpdatedByExist", - "description": "Some related `changeStatusesByUpdatedBy` exist.", + "name": "allowSubUpdate", + "description": "Checks for equality with the object’s `allowSubUpdate` field.", "type": { "kind": "SCALAR", "name": "Boolean", @@ -105243,228 +108189,850 @@ "defaultValue": null }, { - "name": "cifUserByArchivedBy", - "description": "Filter by the object’s `cifUserByArchivedBy` relation.", + "name": "archivedAt", + "description": "Checks for equality with the object’s `archivedAt` field.", "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserFilter", + "kind": "SCALAR", + "name": "Datetime", "ofType": null }, "defaultValue": null }, { - "name": "cifUserByArchivedByExists", - "description": "A related `cifUserByArchivedBy` exists.", + "name": "archivedBy", + "description": "Checks for equality with the object’s `archivedBy` field.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "cifUserByCreatedBy", - "description": "Filter by the object’s `cifUserByCreatedBy` relation.", + "name": "createdAt", + "description": "Checks for equality with the object’s `createdAt` field.", "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserFilter", + "kind": "SCALAR", + "name": "Datetime", "ofType": null }, "defaultValue": null }, { - "name": "cifUserByCreatedByExists", - "description": "A related `cifUserByCreatedBy` exists.", + "name": "createdBy", + "description": "Checks for equality with the object’s `createdBy` field.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "cifUserByUpdatedBy", - "description": "Filter by the object’s `cifUserByUpdatedBy` relation.", + "name": "emailAddress", + "description": "Checks for equality with the object’s `emailAddress` field.", "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserFilter", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "cifUserByUpdatedByExists", - "description": "A related `cifUserByUpdatedBy` exists.", + "name": "familyName", + "description": "Checks for equality with the object’s `familyName` field.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "cifUsersByArchivedBy", - "description": "Filter by the object’s `cifUsersByArchivedBy` relation.", + "name": "givenName", + "description": "Checks for equality with the object’s `givenName` field.", "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserToManyCifUserFilter", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "cifUsersByArchivedByExist", - "description": "Some related `cifUsersByArchivedBy` exist.", + "name": "rowId", + "description": "Checks for equality with the object’s `rowId` field.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "cifUsersByCreatedBy", - "description": "Filter by the object’s `cifUsersByCreatedBy` relation.", + "name": "sessionSub", + "description": "Checks for equality with the object’s `sessionSub` field.", "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserToManyCifUserFilter", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "cifUsersByCreatedByExist", - "description": "Some related `cifUsersByCreatedBy` exist.", + "name": "updatedAt", + "description": "Checks for equality with the object’s `updatedAt` field.", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Datetime", "ofType": null }, "defaultValue": null }, { - "name": "cifUsersByUpdatedBy", - "description": "Filter by the object’s `cifUsersByUpdatedBy` relation.", + "name": "updatedBy", + "description": "Checks for equality with the object’s `updatedBy` field.", "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserToManyCifUserFilter", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CifUserContactsByProjectContactArchivedByAndContactIdManyToManyConnection", + "description": "A connection to a list of `Contact` values, with data from `ProjectContact`.", + "fields": [ + { + "name": "edges", + "description": "A list of edges which contains the `Contact`, info from the `ProjectContact`, and the cursor to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CifUserContactsByProjectContactArchivedByAndContactIdManyToManyEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "cifUsersByUpdatedByExist", - "description": "Some related `cifUsersByUpdatedBy` exist.", + "name": "nodes", + "description": "A list of `Contact` objects.", + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Contact", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "contactsByArchivedBy", - "description": "Filter by the object’s `contactsByArchivedBy` relation.", + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserToManyContactFilter", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "contactsByArchivedByExist", - "description": "Some related `contactsByArchivedBy` exist.", + "name": "totalCount", + "description": "The count of *all* `Contact` you could get from the connection.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CifUserContactsByProjectContactArchivedByAndContactIdManyToManyEdge", + "description": "A `Contact` edge in the connection, with data from `ProjectContact`.", + "fields": [ + { + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Cursor", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "contactsByCreatedBy", - "description": "Filter by the object’s `contactsByCreatedBy` relation.", + "name": "node", + "description": "The `Contact` at the end of the edge.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserToManyContactFilter", + "kind": "OBJECT", + "name": "Contact", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "contactsByCreatedByExist", - "description": "Some related `contactsByCreatedBy` exist.", + "name": "projectContactsByContactId", + "description": "Reads and enables pagination through a set of `ProjectContact`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectContactCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectContactFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `ProjectContact`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectContactsOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectContactsConnection", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CifUserContactsByProjectContactCreatedByAndContactIdManyToManyConnection", + "description": "A connection to a list of `Contact` values, with data from `ProjectContact`.", + "fields": [ + { + "name": "edges", + "description": "A list of edges which contains the `Contact`, info from the `ProjectContact`, and the cursor to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CifUserContactsByProjectContactCreatedByAndContactIdManyToManyEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "contactsByUpdatedBy", - "description": "Filter by the object’s `contactsByUpdatedBy` relation.", + "name": "nodes", + "description": "A list of `Contact` objects.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserToManyContactFilter", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Contact", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "contactsByUpdatedByExist", - "description": "Some related `contactsByUpdatedBy` exist.", + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": "The count of *all* `Contact` you could get from the connection.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CifUserContactsByProjectContactCreatedByAndContactIdManyToManyEdge", + "description": "A `Contact` edge in the connection, with data from `ProjectContact`.", + "fields": [ + { + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Cursor", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "createdAt", - "description": "Filter by the object’s `createdAt` field.", + "name": "node", + "description": "The `Contact` at the end of the edge.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "DatetimeFilter", + "kind": "OBJECT", + "name": "Contact", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "createdBy", - "description": "Filter by the object’s `createdBy` field.", + "name": "projectContactsByContactId", + "description": "Reads and enables pagination through a set of `ProjectContact`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectContactCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectContactFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `ProjectContact`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectContactsOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "IntFilter", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectContactsConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CifUserContactsByProjectContactUpdatedByAndContactIdManyToManyConnection", + "description": "A connection to a list of `Contact` values, with data from `ProjectContact`.", + "fields": [ + { + "name": "edges", + "description": "A list of edges which contains the `Contact`, info from the `ProjectContact`, and the cursor to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CifUserContactsByProjectContactUpdatedByAndContactIdManyToManyEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": "A list of `Contact` objects.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Contact", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": "The count of *all* `Contact` you could get from the connection.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CifUserContactsByProjectContactUpdatedByAndContactIdManyToManyEdge", + "description": "A `Contact` edge in the connection, with data from `ProjectContact`.", + "fields": [ + { + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "emailAddress", - "description": "Filter by the object’s `emailAddress` field.", + "name": "node", + "description": "The `Contact` at the end of the edge.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", + "kind": "OBJECT", + "name": "Contact", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "emissionIntensityPaymentPercentsByArchivedBy", - "description": "Filter by the object’s `emissionIntensityPaymentPercentsByArchivedBy` relation.", + "name": "projectContactsByContactId", + "description": "Reads and enables pagination through a set of `ProjectContact`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectContactCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectContactFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `ProjectContact`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectContactsOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectContactsConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CifUserFilter", + "description": "A filter to be used against `CifUser` object types. All fields are combined with a logical ‘and.’", + "fields": null, + "inputFields": [ + { + "name": "additionalFundingSourceStatusesByArchivedBy", + "description": "Filter by the object’s `additionalFundingSourceStatusesByArchivedBy` relation.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserToManyEmissionIntensityPaymentPercentFilter", + "name": "CifUserToManyAdditionalFundingSourceStatusFilter", "ofType": null }, "defaultValue": null }, { - "name": "emissionIntensityPaymentPercentsByArchivedByExist", - "description": "Some related `emissionIntensityPaymentPercentsByArchivedBy` exist.", + "name": "additionalFundingSourceStatusesByArchivedByExist", + "description": "Some related `additionalFundingSourceStatusesByArchivedBy` exist.", "type": { "kind": "SCALAR", "name": "Boolean", @@ -105473,18 +109041,18 @@ "defaultValue": null }, { - "name": "emissionIntensityPaymentPercentsByCreatedBy", - "description": "Filter by the object’s `emissionIntensityPaymentPercentsByCreatedBy` relation.", + "name": "additionalFundingSourceStatusesByCreatedBy", + "description": "Filter by the object’s `additionalFundingSourceStatusesByCreatedBy` relation.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserToManyEmissionIntensityPaymentPercentFilter", + "name": "CifUserToManyAdditionalFundingSourceStatusFilter", "ofType": null }, "defaultValue": null }, { - "name": "emissionIntensityPaymentPercentsByCreatedByExist", - "description": "Some related `emissionIntensityPaymentPercentsByCreatedBy` exist.", + "name": "additionalFundingSourceStatusesByCreatedByExist", + "description": "Some related `additionalFundingSourceStatusesByCreatedBy` exist.", "type": { "kind": "SCALAR", "name": "Boolean", @@ -105493,18 +109061,18 @@ "defaultValue": null }, { - "name": "emissionIntensityPaymentPercentsByUpdatedBy", - "description": "Filter by the object’s `emissionIntensityPaymentPercentsByUpdatedBy` relation.", + "name": "additionalFundingSourceStatusesByUpdatedBy", + "description": "Filter by the object’s `additionalFundingSourceStatusesByUpdatedBy` relation.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserToManyEmissionIntensityPaymentPercentFilter", + "name": "CifUserToManyAdditionalFundingSourceStatusFilter", "ofType": null }, "defaultValue": null }, { - "name": "emissionIntensityPaymentPercentsByUpdatedByExist", - "description": "Some related `emissionIntensityPaymentPercentsByUpdatedBy` exist.", + "name": "additionalFundingSourceStatusesByUpdatedByExist", + "description": "Some related `additionalFundingSourceStatusesByUpdatedBy` exist.", "type": { "kind": "SCALAR", "name": "Boolean", @@ -105513,18 +109081,18 @@ "defaultValue": null }, { - "name": "emissionIntensityReportsByArchivedBy", - "description": "Filter by the object’s `emissionIntensityReportsByArchivedBy` relation.", + "name": "additionalFundingSourcesByArchivedBy", + "description": "Filter by the object’s `additionalFundingSourcesByArchivedBy` relation.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserToManyEmissionIntensityReportFilter", + "name": "CifUserToManyAdditionalFundingSourceFilter", "ofType": null }, "defaultValue": null }, { - "name": "emissionIntensityReportsByArchivedByExist", - "description": "Some related `emissionIntensityReportsByArchivedBy` exist.", + "name": "additionalFundingSourcesByArchivedByExist", + "description": "Some related `additionalFundingSourcesByArchivedBy` exist.", "type": { "kind": "SCALAR", "name": "Boolean", @@ -105533,18 +109101,18 @@ "defaultValue": null }, { - "name": "emissionIntensityReportsByCreatedBy", - "description": "Filter by the object’s `emissionIntensityReportsByCreatedBy` relation.", + "name": "additionalFundingSourcesByCreatedBy", + "description": "Filter by the object’s `additionalFundingSourcesByCreatedBy` relation.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserToManyEmissionIntensityReportFilter", + "name": "CifUserToManyAdditionalFundingSourceFilter", "ofType": null }, "defaultValue": null }, { - "name": "emissionIntensityReportsByCreatedByExist", - "description": "Some related `emissionIntensityReportsByCreatedBy` exist.", + "name": "additionalFundingSourcesByCreatedByExist", + "description": "Some related `additionalFundingSourcesByCreatedBy` exist.", "type": { "kind": "SCALAR", "name": "Boolean", @@ -105553,18 +109121,18 @@ "defaultValue": null }, { - "name": "emissionIntensityReportsByUpdatedBy", - "description": "Filter by the object’s `emissionIntensityReportsByUpdatedBy` relation.", + "name": "additionalFundingSourcesByUpdatedBy", + "description": "Filter by the object’s `additionalFundingSourcesByUpdatedBy` relation.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserToManyEmissionIntensityReportFilter", + "name": "CifUserToManyAdditionalFundingSourceFilter", "ofType": null }, "defaultValue": null }, { - "name": "emissionIntensityReportsByUpdatedByExist", - "description": "Some related `emissionIntensityReportsByUpdatedBy` exist.", + "name": "additionalFundingSourcesByUpdatedByExist", + "description": "Some related `additionalFundingSourcesByUpdatedBy` exist.", "type": { "kind": "SCALAR", "name": "Boolean", @@ -105573,28 +109141,28 @@ "defaultValue": null }, { - "name": "familyName", - "description": "Filter by the object’s `familyName` field.", + "name": "allowSubUpdate", + "description": "Filter by the object’s `allowSubUpdate` field.", "type": { "kind": "INPUT_OBJECT", - "name": "StringFilter", + "name": "BooleanFilter", "ofType": null }, "defaultValue": null }, { - "name": "formChangesByCreatedBy", - "description": "Filter by the object’s `formChangesByCreatedBy` relation.", + "name": "amendmentTypesByArchivedBy", + "description": "Filter by the object’s `amendmentTypesByArchivedBy` relation.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserToManyFormChangeFilter", + "name": "CifUserToManyAmendmentTypeFilter", "ofType": null }, "defaultValue": null }, { - "name": "formChangesByCreatedByExist", - "description": "Some related `formChangesByCreatedBy` exist.", + "name": "amendmentTypesByArchivedByExist", + "description": "Some related `amendmentTypesByArchivedBy` exist.", "type": { "kind": "SCALAR", "name": "Boolean", @@ -105603,18 +109171,18 @@ "defaultValue": null }, { - "name": "formChangesByUpdatedBy", - "description": "Filter by the object’s `formChangesByUpdatedBy` relation.", + "name": "amendmentTypesByCreatedBy", + "description": "Filter by the object’s `amendmentTypesByCreatedBy` relation.", "type": { "kind": "INPUT_OBJECT", - "name": "CifUserToManyFormChangeFilter", + "name": "CifUserToManyAmendmentTypeFilter", "ofType": null }, "defaultValue": null }, { - "name": "formChangesByUpdatedByExist", - "description": "Some related `formChangesByUpdatedBy` exist.", + "name": "amendmentTypesByCreatedByExist", + "description": "Some related `amendmentTypesByCreatedBy` exist.", "type": { "kind": "SCALAR", "name": "Boolean", @@ -105623,8 +109191,566 @@ "defaultValue": null }, { - "name": "formsByArchivedBy", - "description": "Filter by the object’s `formsByArchivedBy` relation.", + "name": "amendmentTypesByUpdatedBy", + "description": "Filter by the object’s `amendmentTypesByUpdatedBy` relation.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CifUserToManyAmendmentTypeFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amendmentTypesByUpdatedByExist", + "description": "Some related `amendmentTypesByUpdatedBy` exist.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": "Checks for all expressions in this list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CifUserFilter", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "archivedAt", + "description": "Filter by the object’s `archivedAt` field.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "archivedBy", + "description": "Filter by the object’s `archivedBy` field.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "attachmentsByArchivedBy", + "description": "Filter by the object’s `attachmentsByArchivedBy` relation.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CifUserToManyAttachmentFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "attachmentsByArchivedByExist", + "description": "Some related `attachmentsByArchivedBy` exist.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "attachmentsByCreatedBy", + "description": "Filter by the object’s `attachmentsByCreatedBy` relation.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CifUserToManyAttachmentFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "attachmentsByCreatedByExist", + "description": "Some related `attachmentsByCreatedBy` exist.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "attachmentsByUpdatedBy", + "description": "Filter by the object’s `attachmentsByUpdatedBy` relation.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CifUserToManyAttachmentFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "attachmentsByUpdatedByExist", + "description": "Some related `attachmentsByUpdatedBy` exist.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeStatusesByArchivedBy", + "description": "Filter by the object’s `changeStatusesByArchivedBy` relation.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CifUserToManyChangeStatusFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeStatusesByArchivedByExist", + "description": "Some related `changeStatusesByArchivedBy` exist.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeStatusesByCreatedBy", + "description": "Filter by the object’s `changeStatusesByCreatedBy` relation.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CifUserToManyChangeStatusFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeStatusesByCreatedByExist", + "description": "Some related `changeStatusesByCreatedBy` exist.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeStatusesByUpdatedBy", + "description": "Filter by the object’s `changeStatusesByUpdatedBy` relation.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CifUserToManyChangeStatusFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeStatusesByUpdatedByExist", + "description": "Some related `changeStatusesByUpdatedBy` exist.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "cifUserByArchivedBy", + "description": "Filter by the object’s `cifUserByArchivedBy` relation.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CifUserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "cifUserByArchivedByExists", + "description": "A related `cifUserByArchivedBy` exists.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "cifUserByCreatedBy", + "description": "Filter by the object’s `cifUserByCreatedBy` relation.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CifUserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "cifUserByCreatedByExists", + "description": "A related `cifUserByCreatedBy` exists.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "cifUserByUpdatedBy", + "description": "Filter by the object’s `cifUserByUpdatedBy` relation.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CifUserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "cifUserByUpdatedByExists", + "description": "A related `cifUserByUpdatedBy` exists.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "cifUsersByArchivedBy", + "description": "Filter by the object’s `cifUsersByArchivedBy` relation.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CifUserToManyCifUserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "cifUsersByArchivedByExist", + "description": "Some related `cifUsersByArchivedBy` exist.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "cifUsersByCreatedBy", + "description": "Filter by the object’s `cifUsersByCreatedBy` relation.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CifUserToManyCifUserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "cifUsersByCreatedByExist", + "description": "Some related `cifUsersByCreatedBy` exist.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "cifUsersByUpdatedBy", + "description": "Filter by the object’s `cifUsersByUpdatedBy` relation.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CifUserToManyCifUserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "cifUsersByUpdatedByExist", + "description": "Some related `cifUsersByUpdatedBy` exist.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "contactsByArchivedBy", + "description": "Filter by the object’s `contactsByArchivedBy` relation.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CifUserToManyContactFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "contactsByArchivedByExist", + "description": "Some related `contactsByArchivedBy` exist.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "contactsByCreatedBy", + "description": "Filter by the object’s `contactsByCreatedBy` relation.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CifUserToManyContactFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "contactsByCreatedByExist", + "description": "Some related `contactsByCreatedBy` exist.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "contactsByUpdatedBy", + "description": "Filter by the object’s `contactsByUpdatedBy` relation.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CifUserToManyContactFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "contactsByUpdatedByExist", + "description": "Some related `contactsByUpdatedBy` exist.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "Filter by the object’s `createdAt` field.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdBy", + "description": "Filter by the object’s `createdBy` field.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "emailAddress", + "description": "Filter by the object’s `emailAddress` field.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "emissionIntensityPaymentPercentsByArchivedBy", + "description": "Filter by the object’s `emissionIntensityPaymentPercentsByArchivedBy` relation.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CifUserToManyEmissionIntensityPaymentPercentFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "emissionIntensityPaymentPercentsByArchivedByExist", + "description": "Some related `emissionIntensityPaymentPercentsByArchivedBy` exist.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "emissionIntensityPaymentPercentsByCreatedBy", + "description": "Filter by the object’s `emissionIntensityPaymentPercentsByCreatedBy` relation.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CifUserToManyEmissionIntensityPaymentPercentFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "emissionIntensityPaymentPercentsByCreatedByExist", + "description": "Some related `emissionIntensityPaymentPercentsByCreatedBy` exist.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "emissionIntensityPaymentPercentsByUpdatedBy", + "description": "Filter by the object’s `emissionIntensityPaymentPercentsByUpdatedBy` relation.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CifUserToManyEmissionIntensityPaymentPercentFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "emissionIntensityPaymentPercentsByUpdatedByExist", + "description": "Some related `emissionIntensityPaymentPercentsByUpdatedBy` exist.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "emissionIntensityReportsByArchivedBy", + "description": "Filter by the object’s `emissionIntensityReportsByArchivedBy` relation.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CifUserToManyEmissionIntensityReportFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "emissionIntensityReportsByArchivedByExist", + "description": "Some related `emissionIntensityReportsByArchivedBy` exist.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "emissionIntensityReportsByCreatedBy", + "description": "Filter by the object’s `emissionIntensityReportsByCreatedBy` relation.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CifUserToManyEmissionIntensityReportFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "emissionIntensityReportsByCreatedByExist", + "description": "Some related `emissionIntensityReportsByCreatedBy` exist.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "emissionIntensityReportsByUpdatedBy", + "description": "Filter by the object’s `emissionIntensityReportsByUpdatedBy` relation.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CifUserToManyEmissionIntensityReportFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "emissionIntensityReportsByUpdatedByExist", + "description": "Some related `emissionIntensityReportsByUpdatedBy` exist.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "familyName", + "description": "Filter by the object’s `familyName` field.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "formChangesByCreatedBy", + "description": "Filter by the object’s `formChangesByCreatedBy` relation.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CifUserToManyFormChangeFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "formChangesByCreatedByExist", + "description": "Some related `formChangesByCreatedBy` exist.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "formChangesByUpdatedBy", + "description": "Filter by the object’s `formChangesByUpdatedBy` relation.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CifUserToManyFormChangeFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "formChangesByUpdatedByExist", + "description": "Some related `formChangesByUpdatedBy` exist.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "formsByArchivedBy", + "description": "Filter by the object’s `formsByArchivedBy` relation.", "type": { "kind": "INPUT_OBJECT", "name": "CifUserToManyFormFilter", @@ -106170,6 +110296,66 @@ }, "defaultValue": null }, + { + "name": "projectAttachmentsByArchivedBy", + "description": "Filter by the object’s `projectAttachmentsByArchivedBy` relation.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CifUserToManyProjectAttachmentFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectAttachmentsByArchivedByExist", + "description": "Some related `projectAttachmentsByArchivedBy` exist.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectAttachmentsByCreatedBy", + "description": "Filter by the object’s `projectAttachmentsByCreatedBy` relation.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CifUserToManyProjectAttachmentFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectAttachmentsByCreatedByExist", + "description": "Some related `projectAttachmentsByCreatedBy` exist.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectAttachmentsByUpdatedBy", + "description": "Filter by the object’s `projectAttachmentsByUpdatedBy` relation.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CifUserToManyProjectAttachmentFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectAttachmentsByUpdatedByExist", + "description": "Some related `projectAttachmentsByUpdatedBy` exist.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, { "name": "projectContactsByArchivedBy", "description": "Filter by the object’s `projectContactsByArchivedBy` relation.", @@ -113108,12 +117294,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectStatusesByAttachmentArchivedByAndProjectStatusIdManyToManyConnection", - "description": "A connection to a list of `ProjectStatus` values, with data from `Attachment`.", + "name": "CifUserProjectStatusesByFundingStreamProjectStatusArchivedByAndProjectStatusIdManyToManyConnection", + "description": "A connection to a list of `ProjectStatus` values, with data from `FundingStreamProjectStatus`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `ProjectStatus`, info from the `Attachment`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `ProjectStatus`, info from the `FundingStreamProjectStatus`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -113126,7 +117312,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectStatusesByAttachmentArchivedByAndProjectStatusIdManyToManyEdge", + "name": "CifUserProjectStatusesByFundingStreamProjectStatusArchivedByAndProjectStatusIdManyToManyEdge", "ofType": null } } @@ -113195,12 +117381,24 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectStatusesByAttachmentArchivedByAndProjectStatusIdManyToManyEdge", - "description": "A `ProjectStatus` edge in the connection, with data from `Attachment`.", + "name": "CifUserProjectStatusesByFundingStreamProjectStatusArchivedByAndProjectStatusIdManyToManyEdge", + "description": "A `ProjectStatus` edge in the connection, with data from `FundingStreamProjectStatus`.", "fields": [ { - "name": "attachmentsByProjectStatusId", - "description": "Reads and enables pagination through a set of `Attachment`.", + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fundingStreamProjectStatusesByProjectStatusId", + "description": "Reads and enables pagination through a set of `FundingStreamProjectStatus`.", "args": [ { "name": "after", @@ -113227,7 +117425,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AttachmentCondition", + "name": "FundingStreamProjectStatusCondition", "ofType": null }, "defaultValue": null @@ -113237,7 +117435,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AttachmentFilter", + "name": "FundingStreamProjectStatusFilter", "ofType": null }, "defaultValue": null @@ -113284,7 +117482,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Attachment`.", + "description": "The method to use when ordering `FundingStreamProjectStatus`.", "type": { "kind": "LIST", "name": null, @@ -113293,7 +117491,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AttachmentsOrderBy", + "name": "FundingStreamProjectStatusesOrderBy", "ofType": null } } @@ -113306,25 +117504,13 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AttachmentsConnection", + "name": "FundingStreamProjectStatusesConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "node", "description": "The `ProjectStatus` at the end of the edge.", @@ -113345,12 +117531,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectStatusesByAttachmentCreatedByAndProjectStatusIdManyToManyConnection", - "description": "A connection to a list of `ProjectStatus` values, with data from `Attachment`.", + "name": "CifUserProjectStatusesByFundingStreamProjectStatusCreatedByAndProjectStatusIdManyToManyConnection", + "description": "A connection to a list of `ProjectStatus` values, with data from `FundingStreamProjectStatus`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `ProjectStatus`, info from the `Attachment`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `ProjectStatus`, info from the `FundingStreamProjectStatus`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -113363,7 +117549,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectStatusesByAttachmentCreatedByAndProjectStatusIdManyToManyEdge", + "name": "CifUserProjectStatusesByFundingStreamProjectStatusCreatedByAndProjectStatusIdManyToManyEdge", "ofType": null } } @@ -113432,12 +117618,24 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectStatusesByAttachmentCreatedByAndProjectStatusIdManyToManyEdge", - "description": "A `ProjectStatus` edge in the connection, with data from `Attachment`.", + "name": "CifUserProjectStatusesByFundingStreamProjectStatusCreatedByAndProjectStatusIdManyToManyEdge", + "description": "A `ProjectStatus` edge in the connection, with data from `FundingStreamProjectStatus`.", "fields": [ { - "name": "attachmentsByProjectStatusId", - "description": "Reads and enables pagination through a set of `Attachment`.", + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fundingStreamProjectStatusesByProjectStatusId", + "description": "Reads and enables pagination through a set of `FundingStreamProjectStatus`.", "args": [ { "name": "after", @@ -113464,7 +117662,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AttachmentCondition", + "name": "FundingStreamProjectStatusCondition", "ofType": null }, "defaultValue": null @@ -113474,7 +117672,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AttachmentFilter", + "name": "FundingStreamProjectStatusFilter", "ofType": null }, "defaultValue": null @@ -113521,7 +117719,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Attachment`.", + "description": "The method to use when ordering `FundingStreamProjectStatus`.", "type": { "kind": "LIST", "name": null, @@ -113530,7 +117728,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AttachmentsOrderBy", + "name": "FundingStreamProjectStatusesOrderBy", "ofType": null } } @@ -113543,25 +117741,13 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AttachmentsConnection", + "name": "FundingStreamProjectStatusesConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "node", "description": "The `ProjectStatus` at the end of the edge.", @@ -113582,12 +117768,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectStatusesByAttachmentUpdatedByAndProjectStatusIdManyToManyConnection", - "description": "A connection to a list of `ProjectStatus` values, with data from `Attachment`.", + "name": "CifUserProjectStatusesByFundingStreamProjectStatusUpdatedByAndProjectStatusIdManyToManyConnection", + "description": "A connection to a list of `ProjectStatus` values, with data from `FundingStreamProjectStatus`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `ProjectStatus`, info from the `Attachment`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `ProjectStatus`, info from the `FundingStreamProjectStatus`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -113600,7 +117786,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectStatusesByAttachmentUpdatedByAndProjectStatusIdManyToManyEdge", + "name": "CifUserProjectStatusesByFundingStreamProjectStatusUpdatedByAndProjectStatusIdManyToManyEdge", "ofType": null } } @@ -113669,12 +117855,24 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectStatusesByAttachmentUpdatedByAndProjectStatusIdManyToManyEdge", - "description": "A `ProjectStatus` edge in the connection, with data from `Attachment`.", + "name": "CifUserProjectStatusesByFundingStreamProjectStatusUpdatedByAndProjectStatusIdManyToManyEdge", + "description": "A `ProjectStatus` edge in the connection, with data from `FundingStreamProjectStatus`.", "fields": [ { - "name": "attachmentsByProjectStatusId", - "description": "Reads and enables pagination through a set of `Attachment`.", + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fundingStreamProjectStatusesByProjectStatusId", + "description": "Reads and enables pagination through a set of `FundingStreamProjectStatus`.", "args": [ { "name": "after", @@ -113701,7 +117899,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AttachmentCondition", + "name": "FundingStreamProjectStatusCondition", "ofType": null }, "defaultValue": null @@ -113711,7 +117909,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AttachmentFilter", + "name": "FundingStreamProjectStatusFilter", "ofType": null }, "defaultValue": null @@ -113758,7 +117956,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Attachment`.", + "description": "The method to use when ordering `FundingStreamProjectStatus`.", "type": { "kind": "LIST", "name": null, @@ -113767,7 +117965,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AttachmentsOrderBy", + "name": "FundingStreamProjectStatusesOrderBy", "ofType": null } } @@ -113780,25 +117978,13 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AttachmentsConnection", + "name": "FundingStreamProjectStatusesConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "node", "description": "The `ProjectStatus` at the end of the edge.", @@ -113819,12 +118005,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectStatusesByFundingStreamProjectStatusArchivedByAndProjectStatusIdManyToManyConnection", - "description": "A connection to a list of `ProjectStatus` values, with data from `FundingStreamProjectStatus`.", + "name": "CifUserProjectStatusesByProjectArchivedByAndProjectStatusIdManyToManyConnection", + "description": "A connection to a list of `ProjectStatus` values, with data from `Project`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `ProjectStatus`, info from the `FundingStreamProjectStatus`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `ProjectStatus`, info from the `Project`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -113837,7 +118023,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectStatusesByFundingStreamProjectStatusArchivedByAndProjectStatusIdManyToManyEdge", + "name": "CifUserProjectStatusesByProjectArchivedByAndProjectStatusIdManyToManyEdge", "ofType": null } } @@ -113906,8 +118092,8 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectStatusesByFundingStreamProjectStatusArchivedByAndProjectStatusIdManyToManyEdge", - "description": "A `ProjectStatus` edge in the connection, with data from `FundingStreamProjectStatus`.", + "name": "CifUserProjectStatusesByProjectArchivedByAndProjectStatusIdManyToManyEdge", + "description": "A `ProjectStatus` edge in the connection, with data from `Project`.", "fields": [ { "name": "cursor", @@ -113922,8 +118108,20 @@ "deprecationReason": null }, { - "name": "fundingStreamProjectStatusesByProjectStatusId", - "description": "Reads and enables pagination through a set of `FundingStreamProjectStatus`.", + "name": "node", + "description": "The `ProjectStatus` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectStatus", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectsByProjectStatusId", + "description": "Reads and enables pagination through a set of `Project`.", "args": [ { "name": "after", @@ -113950,7 +118148,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamProjectStatusCondition", + "name": "ProjectCondition", "ofType": null }, "defaultValue": null @@ -113960,7 +118158,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamProjectStatusFilter", + "name": "ProjectFilter", "ofType": null }, "defaultValue": null @@ -114007,7 +118205,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStreamProjectStatus`.", + "description": "The method to use when ordering `Project`.", "type": { "kind": "LIST", "name": null, @@ -114016,7 +118214,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamProjectStatusesOrderBy", + "name": "ProjectsOrderBy", "ofType": null } } @@ -114029,24 +118227,12 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingStreamProjectStatusesConnection", + "name": "ProjectsConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "node", - "description": "The `ProjectStatus` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectStatus", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null } ], "inputFields": null, @@ -114056,12 +118242,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectStatusesByFundingStreamProjectStatusCreatedByAndProjectStatusIdManyToManyConnection", - "description": "A connection to a list of `ProjectStatus` values, with data from `FundingStreamProjectStatus`.", + "name": "CifUserProjectStatusesByProjectCreatedByAndProjectStatusIdManyToManyConnection", + "description": "A connection to a list of `ProjectStatus` values, with data from `Project`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `ProjectStatus`, info from the `FundingStreamProjectStatus`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `ProjectStatus`, info from the `Project`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -114074,7 +118260,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectStatusesByFundingStreamProjectStatusCreatedByAndProjectStatusIdManyToManyEdge", + "name": "CifUserProjectStatusesByProjectCreatedByAndProjectStatusIdManyToManyEdge", "ofType": null } } @@ -114143,8 +118329,8 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectStatusesByFundingStreamProjectStatusCreatedByAndProjectStatusIdManyToManyEdge", - "description": "A `ProjectStatus` edge in the connection, with data from `FundingStreamProjectStatus`.", + "name": "CifUserProjectStatusesByProjectCreatedByAndProjectStatusIdManyToManyEdge", + "description": "A `ProjectStatus` edge in the connection, with data from `Project`.", "fields": [ { "name": "cursor", @@ -114159,8 +118345,20 @@ "deprecationReason": null }, { - "name": "fundingStreamProjectStatusesByProjectStatusId", - "description": "Reads and enables pagination through a set of `FundingStreamProjectStatus`.", + "name": "node", + "description": "The `ProjectStatus` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectStatus", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectsByProjectStatusId", + "description": "Reads and enables pagination through a set of `Project`.", "args": [ { "name": "after", @@ -114187,7 +118385,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamProjectStatusCondition", + "name": "ProjectCondition", "ofType": null }, "defaultValue": null @@ -114197,7 +118395,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamProjectStatusFilter", + "name": "ProjectFilter", "ofType": null }, "defaultValue": null @@ -114244,7 +118442,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStreamProjectStatus`.", + "description": "The method to use when ordering `Project`.", "type": { "kind": "LIST", "name": null, @@ -114253,7 +118451,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamProjectStatusesOrderBy", + "name": "ProjectsOrderBy", "ofType": null } } @@ -114266,24 +118464,12 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingStreamProjectStatusesConnection", + "name": "ProjectsConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "node", - "description": "The `ProjectStatus` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectStatus", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null } ], "inputFields": null, @@ -114293,12 +118479,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectStatusesByFundingStreamProjectStatusUpdatedByAndProjectStatusIdManyToManyConnection", - "description": "A connection to a list of `ProjectStatus` values, with data from `FundingStreamProjectStatus`.", + "name": "CifUserProjectStatusesByProjectUpdatedByAndProjectStatusIdManyToManyConnection", + "description": "A connection to a list of `ProjectStatus` values, with data from `Project`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `ProjectStatus`, info from the `FundingStreamProjectStatus`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `ProjectStatus`, info from the `Project`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -114311,7 +118497,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectStatusesByFundingStreamProjectStatusUpdatedByAndProjectStatusIdManyToManyEdge", + "name": "CifUserProjectStatusesByProjectUpdatedByAndProjectStatusIdManyToManyEdge", "ofType": null } } @@ -114380,8 +118566,8 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectStatusesByFundingStreamProjectStatusUpdatedByAndProjectStatusIdManyToManyEdge", - "description": "A `ProjectStatus` edge in the connection, with data from `FundingStreamProjectStatus`.", + "name": "CifUserProjectStatusesByProjectUpdatedByAndProjectStatusIdManyToManyEdge", + "description": "A `ProjectStatus` edge in the connection, with data from `Project`.", "fields": [ { "name": "cursor", @@ -114396,8 +118582,20 @@ "deprecationReason": null }, { - "name": "fundingStreamProjectStatusesByProjectStatusId", - "description": "Reads and enables pagination through a set of `FundingStreamProjectStatus`.", + "name": "node", + "description": "The `ProjectStatus` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectStatus", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectsByProjectStatusId", + "description": "Reads and enables pagination through a set of `Project`.", "args": [ { "name": "after", @@ -114424,7 +118622,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamProjectStatusCondition", + "name": "ProjectCondition", "ofType": null }, "defaultValue": null @@ -114434,7 +118632,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamProjectStatusFilter", + "name": "ProjectFilter", "ofType": null }, "defaultValue": null @@ -114481,7 +118679,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStreamProjectStatus`.", + "description": "The method to use when ordering `Project`.", "type": { "kind": "LIST", "name": null, @@ -114490,7 +118688,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamProjectStatusesOrderBy", + "name": "ProjectsOrderBy", "ofType": null } } @@ -114503,24 +118701,12 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingStreamProjectStatusesConnection", + "name": "ProjectsConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "node", - "description": "The `ProjectStatus` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectStatus", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null } ], "inputFields": null, @@ -114530,12 +118716,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectStatusesByProjectArchivedByAndProjectStatusIdManyToManyConnection", - "description": "A connection to a list of `ProjectStatus` values, with data from `Project`.", + "name": "CifUserProjectTypesByProjectArchivedByAndProjectTypeManyToManyConnection", + "description": "A connection to a list of `ProjectType` values, with data from `Project`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `ProjectStatus`, info from the `Project`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `ProjectType`, info from the `Project`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -114548,7 +118734,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectStatusesByProjectArchivedByAndProjectStatusIdManyToManyEdge", + "name": "CifUserProjectTypesByProjectArchivedByAndProjectTypeManyToManyEdge", "ofType": null } } @@ -114559,7 +118745,7 @@ }, { "name": "nodes", - "description": "A list of `ProjectStatus` objects.", + "description": "A list of `ProjectType` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -114569,7 +118755,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectStatus", + "name": "ProjectType", "ofType": null } } @@ -114595,7 +118781,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `ProjectStatus` you could get from the connection.", + "description": "The count of *all* `ProjectType` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -114617,8 +118803,8 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectStatusesByProjectArchivedByAndProjectStatusIdManyToManyEdge", - "description": "A `ProjectStatus` edge in the connection, with data from `Project`.", + "name": "CifUserProjectTypesByProjectArchivedByAndProjectTypeManyToManyEdge", + "description": "A `ProjectType` edge in the connection, with data from `Project`.", "fields": [ { "name": "cursor", @@ -114634,18 +118820,18 @@ }, { "name": "node", - "description": "The `ProjectStatus` at the end of the edge.", + "description": "The `ProjectType` at the end of the edge.", "args": [], "type": { "kind": "OBJECT", - "name": "ProjectStatus", + "name": "ProjectType", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectsByProjectStatusId", + "name": "projectsByProjectType", "description": "Reads and enables pagination through a set of `Project`.", "args": [ { @@ -114767,12 +118953,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectStatusesByProjectCreatedByAndProjectStatusIdManyToManyConnection", - "description": "A connection to a list of `ProjectStatus` values, with data from `Project`.", + "name": "CifUserProjectTypesByProjectCreatedByAndProjectTypeManyToManyConnection", + "description": "A connection to a list of `ProjectType` values, with data from `Project`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `ProjectStatus`, info from the `Project`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `ProjectType`, info from the `Project`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -114785,7 +118971,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectStatusesByProjectCreatedByAndProjectStatusIdManyToManyEdge", + "name": "CifUserProjectTypesByProjectCreatedByAndProjectTypeManyToManyEdge", "ofType": null } } @@ -114796,7 +118982,7 @@ }, { "name": "nodes", - "description": "A list of `ProjectStatus` objects.", + "description": "A list of `ProjectType` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -114806,7 +118992,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectStatus", + "name": "ProjectType", "ofType": null } } @@ -114832,7 +119018,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `ProjectStatus` you could get from the connection.", + "description": "The count of *all* `ProjectType` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -114854,8 +119040,8 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectStatusesByProjectCreatedByAndProjectStatusIdManyToManyEdge", - "description": "A `ProjectStatus` edge in the connection, with data from `Project`.", + "name": "CifUserProjectTypesByProjectCreatedByAndProjectTypeManyToManyEdge", + "description": "A `ProjectType` edge in the connection, with data from `Project`.", "fields": [ { "name": "cursor", @@ -114871,18 +119057,18 @@ }, { "name": "node", - "description": "The `ProjectStatus` at the end of the edge.", + "description": "The `ProjectType` at the end of the edge.", "args": [], "type": { "kind": "OBJECT", - "name": "ProjectStatus", + "name": "ProjectType", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectsByProjectStatusId", + "name": "projectsByProjectType", "description": "Reads and enables pagination through a set of `Project`.", "args": [ { @@ -115004,12 +119190,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectStatusesByProjectUpdatedByAndProjectStatusIdManyToManyConnection", - "description": "A connection to a list of `ProjectStatus` values, with data from `Project`.", + "name": "CifUserProjectTypesByProjectUpdatedByAndProjectTypeManyToManyConnection", + "description": "A connection to a list of `ProjectType` values, with data from `Project`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `ProjectStatus`, info from the `Project`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `ProjectType`, info from the `Project`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -115022,7 +119208,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectStatusesByProjectUpdatedByAndProjectStatusIdManyToManyEdge", + "name": "CifUserProjectTypesByProjectUpdatedByAndProjectTypeManyToManyEdge", "ofType": null } } @@ -115033,7 +119219,7 @@ }, { "name": "nodes", - "description": "A list of `ProjectStatus` objects.", + "description": "A list of `ProjectType` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -115043,7 +119229,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectStatus", + "name": "ProjectType", "ofType": null } } @@ -115069,7 +119255,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `ProjectStatus` you could get from the connection.", + "description": "The count of *all* `ProjectType` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -115091,8 +119277,8 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectStatusesByProjectUpdatedByAndProjectStatusIdManyToManyEdge", - "description": "A `ProjectStatus` edge in the connection, with data from `Project`.", + "name": "CifUserProjectTypesByProjectUpdatedByAndProjectTypeManyToManyEdge", + "description": "A `ProjectType` edge in the connection, with data from `Project`.", "fields": [ { "name": "cursor", @@ -115108,18 +119294,18 @@ }, { "name": "node", - "description": "The `ProjectStatus` at the end of the edge.", + "description": "The `ProjectType` at the end of the edge.", "args": [], "type": { "kind": "OBJECT", - "name": "ProjectStatus", + "name": "ProjectType", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectsByProjectStatusId", + "name": "projectsByProjectType", "description": "Reads and enables pagination through a set of `Project`.", "args": [ { @@ -115241,12 +119427,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectTypesByProjectArchivedByAndProjectTypeManyToManyConnection", - "description": "A connection to a list of `ProjectType` values, with data from `Project`.", + "name": "CifUserProjectsByAdditionalFundingSourceArchivedByAndProjectIdManyToManyConnection", + "description": "A connection to a list of `Project` values, with data from `AdditionalFundingSource`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `ProjectType`, info from the `Project`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `Project`, info from the `AdditionalFundingSource`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -115259,7 +119445,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectTypesByProjectArchivedByAndProjectTypeManyToManyEdge", + "name": "CifUserProjectsByAdditionalFundingSourceArchivedByAndProjectIdManyToManyEdge", "ofType": null } } @@ -115270,7 +119456,7 @@ }, { "name": "nodes", - "description": "A list of `ProjectType` objects.", + "description": "A list of `Project` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -115280,7 +119466,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectType", + "name": "Project", "ofType": null } } @@ -115306,7 +119492,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `ProjectType` you could get from the connection.", + "description": "The count of *all* `Project` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -115328,36 +119514,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectTypesByProjectArchivedByAndProjectTypeManyToManyEdge", - "description": "A `ProjectType` edge in the connection, with data from `Project`.", + "name": "CifUserProjectsByAdditionalFundingSourceArchivedByAndProjectIdManyToManyEdge", + "description": "A `Project` edge in the connection, with data from `AdditionalFundingSource`.", "fields": [ { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `ProjectType` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectsByProjectType", - "description": "Reads and enables pagination through a set of `Project`.", + "name": "additionalFundingSourcesByProjectId", + "description": "Reads and enables pagination through a set of `AdditionalFundingSource`.", "args": [ { "name": "after", @@ -115384,7 +119546,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCondition", + "name": "AdditionalFundingSourceCondition", "ofType": null }, "defaultValue": null @@ -115394,7 +119556,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectFilter", + "name": "AdditionalFundingSourceFilter", "ofType": null }, "defaultValue": null @@ -115441,7 +119603,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Project`.", + "description": "The method to use when ordering `AdditionalFundingSource`.", "type": { "kind": "LIST", "name": null, @@ -115450,7 +119612,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectsOrderBy", + "name": "AdditionalFundingSourcesOrderBy", "ofType": null } } @@ -115463,12 +119625,36 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectsConnection", + "name": "AdditionalFundingSourcesConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": "The `Project` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -115478,12 +119664,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectTypesByProjectCreatedByAndProjectTypeManyToManyConnection", - "description": "A connection to a list of `ProjectType` values, with data from `Project`.", + "name": "CifUserProjectsByAdditionalFundingSourceCreatedByAndProjectIdManyToManyConnection", + "description": "A connection to a list of `Project` values, with data from `AdditionalFundingSource`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `ProjectType`, info from the `Project`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `Project`, info from the `AdditionalFundingSource`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -115496,7 +119682,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectTypesByProjectCreatedByAndProjectTypeManyToManyEdge", + "name": "CifUserProjectsByAdditionalFundingSourceCreatedByAndProjectIdManyToManyEdge", "ofType": null } } @@ -115507,7 +119693,7 @@ }, { "name": "nodes", - "description": "A list of `ProjectType` objects.", + "description": "A list of `Project` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -115517,7 +119703,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectType", + "name": "Project", "ofType": null } } @@ -115543,7 +119729,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `ProjectType` you could get from the connection.", + "description": "The count of *all* `Project` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -115565,36 +119751,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectTypesByProjectCreatedByAndProjectTypeManyToManyEdge", - "description": "A `ProjectType` edge in the connection, with data from `Project`.", + "name": "CifUserProjectsByAdditionalFundingSourceCreatedByAndProjectIdManyToManyEdge", + "description": "A `Project` edge in the connection, with data from `AdditionalFundingSource`.", "fields": [ { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `ProjectType` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectsByProjectType", - "description": "Reads and enables pagination through a set of `Project`.", + "name": "additionalFundingSourcesByProjectId", + "description": "Reads and enables pagination through a set of `AdditionalFundingSource`.", "args": [ { "name": "after", @@ -115621,7 +119783,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCondition", + "name": "AdditionalFundingSourceCondition", "ofType": null }, "defaultValue": null @@ -115631,7 +119793,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectFilter", + "name": "AdditionalFundingSourceFilter", "ofType": null }, "defaultValue": null @@ -115678,7 +119840,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Project`.", + "description": "The method to use when ordering `AdditionalFundingSource`.", "type": { "kind": "LIST", "name": null, @@ -115687,7 +119849,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectsOrderBy", + "name": "AdditionalFundingSourcesOrderBy", "ofType": null } } @@ -115700,12 +119862,36 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectsConnection", + "name": "AdditionalFundingSourcesConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": "The `Project` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -115715,12 +119901,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectTypesByProjectUpdatedByAndProjectTypeManyToManyConnection", - "description": "A connection to a list of `ProjectType` values, with data from `Project`.", + "name": "CifUserProjectsByAdditionalFundingSourceUpdatedByAndProjectIdManyToManyConnection", + "description": "A connection to a list of `Project` values, with data from `AdditionalFundingSource`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `ProjectType`, info from the `Project`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `Project`, info from the `AdditionalFundingSource`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -115733,7 +119919,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectTypesByProjectUpdatedByAndProjectTypeManyToManyEdge", + "name": "CifUserProjectsByAdditionalFundingSourceUpdatedByAndProjectIdManyToManyEdge", "ofType": null } } @@ -115744,7 +119930,7 @@ }, { "name": "nodes", - "description": "A list of `ProjectType` objects.", + "description": "A list of `Project` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -115754,7 +119940,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectType", + "name": "Project", "ofType": null } } @@ -115780,7 +119966,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `ProjectType` you could get from the connection.", + "description": "The count of *all* `Project` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -115802,36 +119988,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectTypesByProjectUpdatedByAndProjectTypeManyToManyEdge", - "description": "A `ProjectType` edge in the connection, with data from `Project`.", + "name": "CifUserProjectsByAdditionalFundingSourceUpdatedByAndProjectIdManyToManyEdge", + "description": "A `Project` edge in the connection, with data from `AdditionalFundingSource`.", "fields": [ { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `ProjectType` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectsByProjectType", - "description": "Reads and enables pagination through a set of `Project`.", + "name": "additionalFundingSourcesByProjectId", + "description": "Reads and enables pagination through a set of `AdditionalFundingSource`.", "args": [ { "name": "after", @@ -115858,7 +120020,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCondition", + "name": "AdditionalFundingSourceCondition", "ofType": null }, "defaultValue": null @@ -115868,7 +120030,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectFilter", + "name": "AdditionalFundingSourceFilter", "ofType": null }, "defaultValue": null @@ -115915,7 +120077,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Project`.", + "description": "The method to use when ordering `AdditionalFundingSource`.", "type": { "kind": "LIST", "name": null, @@ -115924,7 +120086,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectsOrderBy", + "name": "AdditionalFundingSourcesOrderBy", "ofType": null } } @@ -115937,12 +120099,36 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectsConnection", + "name": "AdditionalFundingSourcesConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": "The `Project` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -115952,12 +120138,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByAdditionalFundingSourceArchivedByAndProjectIdManyToManyConnection", - "description": "A connection to a list of `Project` values, with data from `AdditionalFundingSource`.", + "name": "CifUserProjectsByFundingParameterArchivedByAndProjectIdManyToManyConnection", + "description": "A connection to a list of `Project` values, with data from `FundingParameter`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `Project`, info from the `AdditionalFundingSource`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `Project`, info from the `FundingParameter`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -115970,7 +120156,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByAdditionalFundingSourceArchivedByAndProjectIdManyToManyEdge", + "name": "CifUserProjectsByFundingParameterArchivedByAndProjectIdManyToManyEdge", "ofType": null } } @@ -116039,12 +120225,24 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByAdditionalFundingSourceArchivedByAndProjectIdManyToManyEdge", - "description": "A `Project` edge in the connection, with data from `AdditionalFundingSource`.", + "name": "CifUserProjectsByFundingParameterArchivedByAndProjectIdManyToManyEdge", + "description": "A `Project` edge in the connection, with data from `FundingParameter`.", "fields": [ { - "name": "additionalFundingSourcesByProjectId", - "description": "Reads and enables pagination through a set of `AdditionalFundingSource`.", + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fundingParametersByProjectId", + "description": "Reads and enables pagination through a set of `FundingParameter`.", "args": [ { "name": "after", @@ -116071,7 +120269,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceCondition", + "name": "FundingParameterCondition", "ofType": null }, "defaultValue": null @@ -116081,7 +120279,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceFilter", + "name": "FundingParameterFilter", "ofType": null }, "defaultValue": null @@ -116128,7 +120326,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `AdditionalFundingSource`.", + "description": "The method to use when ordering `FundingParameter`.", "type": { "kind": "LIST", "name": null, @@ -116137,7 +120335,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AdditionalFundingSourcesOrderBy", + "name": "FundingParametersOrderBy", "ofType": null } } @@ -116150,25 +120348,13 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AdditionalFundingSourcesConnection", + "name": "FundingParametersConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "node", "description": "The `Project` at the end of the edge.", @@ -116189,12 +120375,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByAdditionalFundingSourceCreatedByAndProjectIdManyToManyConnection", - "description": "A connection to a list of `Project` values, with data from `AdditionalFundingSource`.", + "name": "CifUserProjectsByFundingParameterCreatedByAndProjectIdManyToManyConnection", + "description": "A connection to a list of `Project` values, with data from `FundingParameter`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `Project`, info from the `AdditionalFundingSource`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `Project`, info from the `FundingParameter`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -116207,7 +120393,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByAdditionalFundingSourceCreatedByAndProjectIdManyToManyEdge", + "name": "CifUserProjectsByFundingParameterCreatedByAndProjectIdManyToManyEdge", "ofType": null } } @@ -116276,12 +120462,24 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByAdditionalFundingSourceCreatedByAndProjectIdManyToManyEdge", - "description": "A `Project` edge in the connection, with data from `AdditionalFundingSource`.", + "name": "CifUserProjectsByFundingParameterCreatedByAndProjectIdManyToManyEdge", + "description": "A `Project` edge in the connection, with data from `FundingParameter`.", "fields": [ { - "name": "additionalFundingSourcesByProjectId", - "description": "Reads and enables pagination through a set of `AdditionalFundingSource`.", + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fundingParametersByProjectId", + "description": "Reads and enables pagination through a set of `FundingParameter`.", "args": [ { "name": "after", @@ -116308,7 +120506,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceCondition", + "name": "FundingParameterCondition", "ofType": null }, "defaultValue": null @@ -116318,7 +120516,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceFilter", + "name": "FundingParameterFilter", "ofType": null }, "defaultValue": null @@ -116365,7 +120563,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `AdditionalFundingSource`.", + "description": "The method to use when ordering `FundingParameter`.", "type": { "kind": "LIST", "name": null, @@ -116374,7 +120572,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AdditionalFundingSourcesOrderBy", + "name": "FundingParametersOrderBy", "ofType": null } } @@ -116387,25 +120585,13 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AdditionalFundingSourcesConnection", + "name": "FundingParametersConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "node", "description": "The `Project` at the end of the edge.", @@ -116426,12 +120612,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByAdditionalFundingSourceUpdatedByAndProjectIdManyToManyConnection", - "description": "A connection to a list of `Project` values, with data from `AdditionalFundingSource`.", + "name": "CifUserProjectsByFundingParameterUpdatedByAndProjectIdManyToManyConnection", + "description": "A connection to a list of `Project` values, with data from `FundingParameter`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `Project`, info from the `AdditionalFundingSource`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `Project`, info from the `FundingParameter`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -116444,7 +120630,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByAdditionalFundingSourceUpdatedByAndProjectIdManyToManyEdge", + "name": "CifUserProjectsByFundingParameterUpdatedByAndProjectIdManyToManyEdge", "ofType": null } } @@ -116513,12 +120699,24 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByAdditionalFundingSourceUpdatedByAndProjectIdManyToManyEdge", - "description": "A `Project` edge in the connection, with data from `AdditionalFundingSource`.", + "name": "CifUserProjectsByFundingParameterUpdatedByAndProjectIdManyToManyEdge", + "description": "A `Project` edge in the connection, with data from `FundingParameter`.", "fields": [ { - "name": "additionalFundingSourcesByProjectId", - "description": "Reads and enables pagination through a set of `AdditionalFundingSource`.", + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fundingParametersByProjectId", + "description": "Reads and enables pagination through a set of `FundingParameter`.", "args": [ { "name": "after", @@ -116545,7 +120743,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceCondition", + "name": "FundingParameterCondition", "ofType": null }, "defaultValue": null @@ -116555,7 +120753,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceFilter", + "name": "FundingParameterFilter", "ofType": null }, "defaultValue": null @@ -116602,7 +120800,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `AdditionalFundingSource`.", + "description": "The method to use when ordering `FundingParameter`.", "type": { "kind": "LIST", "name": null, @@ -116611,7 +120809,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AdditionalFundingSourcesOrderBy", + "name": "FundingParametersOrderBy", "ofType": null } } @@ -116624,25 +120822,13 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AdditionalFundingSourcesConnection", + "name": "FundingParametersConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "node", "description": "The `Project` at the end of the edge.", @@ -116663,12 +120849,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByAttachmentArchivedByAndProjectIdManyToManyConnection", - "description": "A connection to a list of `Project` values, with data from `Attachment`.", + "name": "CifUserProjectsByProjectAttachmentArchivedByAndProjectIdManyToManyConnection", + "description": "A connection to a list of `Project` values, with data from `ProjectAttachment`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `Project`, info from the `Attachment`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `Project`, info from the `ProjectAttachment`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -116681,7 +120867,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByAttachmentArchivedByAndProjectIdManyToManyEdge", + "name": "CifUserProjectsByProjectAttachmentArchivedByAndProjectIdManyToManyEdge", "ofType": null } } @@ -116750,12 +120936,36 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByAttachmentArchivedByAndProjectIdManyToManyEdge", - "description": "A `Project` edge in the connection, with data from `Attachment`.", + "name": "CifUserProjectsByProjectAttachmentArchivedByAndProjectIdManyToManyEdge", + "description": "A `Project` edge in the connection, with data from `ProjectAttachment`.", "fields": [ { - "name": "attachmentsByProjectId", - "description": "Reads and enables pagination through a set of `Attachment`.", + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": "The `Project` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectAttachmentsByProjectId", + "description": "Reads and enables pagination through a set of `ProjectAttachment`.", "args": [ { "name": "after", @@ -116782,7 +120992,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AttachmentCondition", + "name": "ProjectAttachmentCondition", "ofType": null }, "defaultValue": null @@ -116792,7 +121002,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AttachmentFilter", + "name": "ProjectAttachmentFilter", "ofType": null }, "defaultValue": null @@ -116839,7 +121049,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Attachment`.", + "description": "The method to use when ordering `ProjectAttachment`.", "type": { "kind": "LIST", "name": null, @@ -116848,7 +121058,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AttachmentsOrderBy", + "name": "ProjectAttachmentsOrderBy", "ofType": null } } @@ -116861,36 +121071,12 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AttachmentsConnection", + "name": "ProjectAttachmentsConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `Project` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Project", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null } ], "inputFields": null, @@ -116900,12 +121086,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByAttachmentCreatedByAndProjectIdManyToManyConnection", - "description": "A connection to a list of `Project` values, with data from `Attachment`.", + "name": "CifUserProjectsByProjectAttachmentCreatedByAndProjectIdManyToManyConnection", + "description": "A connection to a list of `Project` values, with data from `ProjectAttachment`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `Project`, info from the `Attachment`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `Project`, info from the `ProjectAttachment`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -116918,7 +121104,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByAttachmentCreatedByAndProjectIdManyToManyEdge", + "name": "CifUserProjectsByProjectAttachmentCreatedByAndProjectIdManyToManyEdge", "ofType": null } } @@ -116987,12 +121173,36 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByAttachmentCreatedByAndProjectIdManyToManyEdge", - "description": "A `Project` edge in the connection, with data from `Attachment`.", + "name": "CifUserProjectsByProjectAttachmentCreatedByAndProjectIdManyToManyEdge", + "description": "A `Project` edge in the connection, with data from `ProjectAttachment`.", "fields": [ { - "name": "attachmentsByProjectId", - "description": "Reads and enables pagination through a set of `Attachment`.", + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": "The `Project` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectAttachmentsByProjectId", + "description": "Reads and enables pagination through a set of `ProjectAttachment`.", "args": [ { "name": "after", @@ -117019,7 +121229,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AttachmentCondition", + "name": "ProjectAttachmentCondition", "ofType": null }, "defaultValue": null @@ -117029,7 +121239,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AttachmentFilter", + "name": "ProjectAttachmentFilter", "ofType": null }, "defaultValue": null @@ -117076,7 +121286,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Attachment`.", + "description": "The method to use when ordering `ProjectAttachment`.", "type": { "kind": "LIST", "name": null, @@ -117085,7 +121295,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AttachmentsOrderBy", + "name": "ProjectAttachmentsOrderBy", "ofType": null } } @@ -117098,36 +121308,12 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AttachmentsConnection", + "name": "ProjectAttachmentsConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `Project` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Project", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null } ], "inputFields": null, @@ -117137,12 +121323,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByAttachmentUpdatedByAndProjectIdManyToManyConnection", - "description": "A connection to a list of `Project` values, with data from `Attachment`.", + "name": "CifUserProjectsByProjectAttachmentUpdatedByAndProjectIdManyToManyConnection", + "description": "A connection to a list of `Project` values, with data from `ProjectAttachment`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `Project`, info from the `Attachment`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `Project`, info from the `ProjectAttachment`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -117155,7 +121341,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByAttachmentUpdatedByAndProjectIdManyToManyEdge", + "name": "CifUserProjectsByProjectAttachmentUpdatedByAndProjectIdManyToManyEdge", "ofType": null } } @@ -117224,12 +121410,36 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByAttachmentUpdatedByAndProjectIdManyToManyEdge", - "description": "A `Project` edge in the connection, with data from `Attachment`.", + "name": "CifUserProjectsByProjectAttachmentUpdatedByAndProjectIdManyToManyEdge", + "description": "A `Project` edge in the connection, with data from `ProjectAttachment`.", "fields": [ { - "name": "attachmentsByProjectId", - "description": "Reads and enables pagination through a set of `Attachment`.", + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": "The `Project` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectAttachmentsByProjectId", + "description": "Reads and enables pagination through a set of `ProjectAttachment`.", "args": [ { "name": "after", @@ -117256,7 +121466,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AttachmentCondition", + "name": "ProjectAttachmentCondition", "ofType": null }, "defaultValue": null @@ -117266,7 +121476,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AttachmentFilter", + "name": "ProjectAttachmentFilter", "ofType": null }, "defaultValue": null @@ -117313,7 +121523,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Attachment`.", + "description": "The method to use when ordering `ProjectAttachment`.", "type": { "kind": "LIST", "name": null, @@ -117322,7 +121532,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AttachmentsOrderBy", + "name": "ProjectAttachmentsOrderBy", "ofType": null } } @@ -117335,36 +121545,12 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AttachmentsConnection", + "name": "ProjectAttachmentsConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `Project` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Project", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null } ], "inputFields": null, @@ -117374,12 +121560,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByFundingParameterArchivedByAndProjectIdManyToManyConnection", - "description": "A connection to a list of `Project` values, with data from `FundingParameter`.", + "name": "CifUserProjectsByProjectContactArchivedByAndProjectIdManyToManyConnection", + "description": "A connection to a list of `Project` values, with data from `ProjectContact`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `Project`, info from the `FundingParameter`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `Project`, info from the `ProjectContact`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -117392,7 +121578,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByFundingParameterArchivedByAndProjectIdManyToManyEdge", + "name": "CifUserProjectsByProjectContactArchivedByAndProjectIdManyToManyEdge", "ofType": null } } @@ -117461,8 +121647,8 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByFundingParameterArchivedByAndProjectIdManyToManyEdge", - "description": "A `Project` edge in the connection, with data from `FundingParameter`.", + "name": "CifUserProjectsByProjectContactArchivedByAndProjectIdManyToManyEdge", + "description": "A `Project` edge in the connection, with data from `ProjectContact`.", "fields": [ { "name": "cursor", @@ -117477,8 +121663,20 @@ "deprecationReason": null }, { - "name": "fundingParametersByProjectId", - "description": "Reads and enables pagination through a set of `FundingParameter`.", + "name": "node", + "description": "The `Project` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectContactsByProjectId", + "description": "Reads and enables pagination through a set of `ProjectContact`.", "args": [ { "name": "after", @@ -117505,7 +121703,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingParameterCondition", + "name": "ProjectContactCondition", "ofType": null }, "defaultValue": null @@ -117515,7 +121713,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingParameterFilter", + "name": "ProjectContactFilter", "ofType": null }, "defaultValue": null @@ -117562,7 +121760,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingParameter`.", + "description": "The method to use when ordering `ProjectContact`.", "type": { "kind": "LIST", "name": null, @@ -117571,7 +121769,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingParametersOrderBy", + "name": "ProjectContactsOrderBy", "ofType": null } } @@ -117584,24 +121782,12 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingParametersConnection", + "name": "ProjectContactsConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "node", - "description": "The `Project` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Project", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null } ], "inputFields": null, @@ -117611,12 +121797,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByFundingParameterCreatedByAndProjectIdManyToManyConnection", - "description": "A connection to a list of `Project` values, with data from `FundingParameter`.", + "name": "CifUserProjectsByProjectContactCreatedByAndProjectIdManyToManyConnection", + "description": "A connection to a list of `Project` values, with data from `ProjectContact`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `Project`, info from the `FundingParameter`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `Project`, info from the `ProjectContact`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -117629,7 +121815,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByFundingParameterCreatedByAndProjectIdManyToManyEdge", + "name": "CifUserProjectsByProjectContactCreatedByAndProjectIdManyToManyEdge", "ofType": null } } @@ -117698,8 +121884,8 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByFundingParameterCreatedByAndProjectIdManyToManyEdge", - "description": "A `Project` edge in the connection, with data from `FundingParameter`.", + "name": "CifUserProjectsByProjectContactCreatedByAndProjectIdManyToManyEdge", + "description": "A `Project` edge in the connection, with data from `ProjectContact`.", "fields": [ { "name": "cursor", @@ -117714,8 +121900,20 @@ "deprecationReason": null }, { - "name": "fundingParametersByProjectId", - "description": "Reads and enables pagination through a set of `FundingParameter`.", + "name": "node", + "description": "The `Project` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectContactsByProjectId", + "description": "Reads and enables pagination through a set of `ProjectContact`.", "args": [ { "name": "after", @@ -117742,7 +121940,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingParameterCondition", + "name": "ProjectContactCondition", "ofType": null }, "defaultValue": null @@ -117752,7 +121950,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingParameterFilter", + "name": "ProjectContactFilter", "ofType": null }, "defaultValue": null @@ -117799,7 +121997,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingParameter`.", + "description": "The method to use when ordering `ProjectContact`.", "type": { "kind": "LIST", "name": null, @@ -117808,7 +122006,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingParametersOrderBy", + "name": "ProjectContactsOrderBy", "ofType": null } } @@ -117821,24 +122019,12 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingParametersConnection", + "name": "ProjectContactsConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "node", - "description": "The `Project` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Project", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null } ], "inputFields": null, @@ -117848,12 +122034,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByFundingParameterUpdatedByAndProjectIdManyToManyConnection", - "description": "A connection to a list of `Project` values, with data from `FundingParameter`.", + "name": "CifUserProjectsByProjectContactUpdatedByAndProjectIdManyToManyConnection", + "description": "A connection to a list of `Project` values, with data from `ProjectContact`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `Project`, info from the `FundingParameter`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `Project`, info from the `ProjectContact`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -117866,7 +122052,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByFundingParameterUpdatedByAndProjectIdManyToManyEdge", + "name": "CifUserProjectsByProjectContactUpdatedByAndProjectIdManyToManyEdge", "ofType": null } } @@ -117935,8 +122121,8 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByFundingParameterUpdatedByAndProjectIdManyToManyEdge", - "description": "A `Project` edge in the connection, with data from `FundingParameter`.", + "name": "CifUserProjectsByProjectContactUpdatedByAndProjectIdManyToManyEdge", + "description": "A `Project` edge in the connection, with data from `ProjectContact`.", "fields": [ { "name": "cursor", @@ -117951,8 +122137,20 @@ "deprecationReason": null }, { - "name": "fundingParametersByProjectId", - "description": "Reads and enables pagination through a set of `FundingParameter`.", + "name": "node", + "description": "The `Project` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectContactsByProjectId", + "description": "Reads and enables pagination through a set of `ProjectContact`.", "args": [ { "name": "after", @@ -117979,7 +122177,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingParameterCondition", + "name": "ProjectContactCondition", "ofType": null }, "defaultValue": null @@ -117989,7 +122187,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingParameterFilter", + "name": "ProjectContactFilter", "ofType": null }, "defaultValue": null @@ -118036,7 +122234,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingParameter`.", + "description": "The method to use when ordering `ProjectContact`.", "type": { "kind": "LIST", "name": null, @@ -118045,7 +122243,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingParametersOrderBy", + "name": "ProjectContactsOrderBy", "ofType": null } } @@ -118058,24 +122256,12 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingParametersConnection", + "name": "ProjectContactsConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "node", - "description": "The `Project` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Project", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null } ], "inputFields": null, @@ -118085,12 +122271,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByProjectContactArchivedByAndProjectIdManyToManyConnection", - "description": "A connection to a list of `Project` values, with data from `ProjectContact`.", + "name": "CifUserProjectsByProjectManagerArchivedByAndProjectIdManyToManyConnection", + "description": "A connection to a list of `Project` values, with data from `ProjectManager`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `Project`, info from the `ProjectContact`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `Project`, info from the `ProjectManager`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -118103,7 +122289,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByProjectContactArchivedByAndProjectIdManyToManyEdge", + "name": "CifUserProjectsByProjectManagerArchivedByAndProjectIdManyToManyEdge", "ofType": null } } @@ -118172,8 +122358,8 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByProjectContactArchivedByAndProjectIdManyToManyEdge", - "description": "A `Project` edge in the connection, with data from `ProjectContact`.", + "name": "CifUserProjectsByProjectManagerArchivedByAndProjectIdManyToManyEdge", + "description": "A `Project` edge in the connection, with data from `ProjectManager`.", "fields": [ { "name": "cursor", @@ -118200,8 +122386,8 @@ "deprecationReason": null }, { - "name": "projectContactsByProjectId", - "description": "Reads and enables pagination through a set of `ProjectContact`.", + "name": "projectManagersByProjectId", + "description": "Reads and enables pagination through a set of `ProjectManager`.", "args": [ { "name": "after", @@ -118228,7 +122414,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactCondition", + "name": "ProjectManagerCondition", "ofType": null }, "defaultValue": null @@ -118238,7 +122424,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactFilter", + "name": "ProjectManagerFilter", "ofType": null }, "defaultValue": null @@ -118285,7 +122471,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectContact`.", + "description": "The method to use when ordering `ProjectManager`.", "type": { "kind": "LIST", "name": null, @@ -118294,7 +122480,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectContactsOrderBy", + "name": "ProjectManagersOrderBy", "ofType": null } } @@ -118307,7 +122493,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectContactsConnection", + "name": "ProjectManagersConnection", "ofType": null } }, @@ -118322,12 +122508,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByProjectContactCreatedByAndProjectIdManyToManyConnection", - "description": "A connection to a list of `Project` values, with data from `ProjectContact`.", + "name": "CifUserProjectsByProjectManagerCifUserIdAndProjectIdManyToManyConnection", + "description": "A connection to a list of `Project` values, with data from `ProjectManager`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `Project`, info from the `ProjectContact`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `Project`, info from the `ProjectManager`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -118340,7 +122526,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByProjectContactCreatedByAndProjectIdManyToManyEdge", + "name": "CifUserProjectsByProjectManagerCifUserIdAndProjectIdManyToManyEdge", "ofType": null } } @@ -118409,8 +122595,8 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByProjectContactCreatedByAndProjectIdManyToManyEdge", - "description": "A `Project` edge in the connection, with data from `ProjectContact`.", + "name": "CifUserProjectsByProjectManagerCifUserIdAndProjectIdManyToManyEdge", + "description": "A `Project` edge in the connection, with data from `ProjectManager`.", "fields": [ { "name": "cursor", @@ -118437,8 +122623,8 @@ "deprecationReason": null }, { - "name": "projectContactsByProjectId", - "description": "Reads and enables pagination through a set of `ProjectContact`.", + "name": "projectManagersByProjectId", + "description": "Reads and enables pagination through a set of `ProjectManager`.", "args": [ { "name": "after", @@ -118465,7 +122651,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactCondition", + "name": "ProjectManagerCondition", "ofType": null }, "defaultValue": null @@ -118475,7 +122661,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactFilter", + "name": "ProjectManagerFilter", "ofType": null }, "defaultValue": null @@ -118522,7 +122708,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectContact`.", + "description": "The method to use when ordering `ProjectManager`.", "type": { "kind": "LIST", "name": null, @@ -118531,7 +122717,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectContactsOrderBy", + "name": "ProjectManagersOrderBy", "ofType": null } } @@ -118544,7 +122730,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectContactsConnection", + "name": "ProjectManagersConnection", "ofType": null } }, @@ -118559,12 +122745,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByProjectContactUpdatedByAndProjectIdManyToManyConnection", - "description": "A connection to a list of `Project` values, with data from `ProjectContact`.", + "name": "CifUserProjectsByProjectManagerCreatedByAndProjectIdManyToManyConnection", + "description": "A connection to a list of `Project` values, with data from `ProjectManager`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `Project`, info from the `ProjectContact`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `Project`, info from the `ProjectManager`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -118577,7 +122763,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByProjectContactUpdatedByAndProjectIdManyToManyEdge", + "name": "CifUserProjectsByProjectManagerCreatedByAndProjectIdManyToManyEdge", "ofType": null } } @@ -118646,8 +122832,8 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByProjectContactUpdatedByAndProjectIdManyToManyEdge", - "description": "A `Project` edge in the connection, with data from `ProjectContact`.", + "name": "CifUserProjectsByProjectManagerCreatedByAndProjectIdManyToManyEdge", + "description": "A `Project` edge in the connection, with data from `ProjectManager`.", "fields": [ { "name": "cursor", @@ -118674,8 +122860,8 @@ "deprecationReason": null }, { - "name": "projectContactsByProjectId", - "description": "Reads and enables pagination through a set of `ProjectContact`.", + "name": "projectManagersByProjectId", + "description": "Reads and enables pagination through a set of `ProjectManager`.", "args": [ { "name": "after", @@ -118702,7 +122888,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactCondition", + "name": "ProjectManagerCondition", "ofType": null }, "defaultValue": null @@ -118712,7 +122898,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactFilter", + "name": "ProjectManagerFilter", "ofType": null }, "defaultValue": null @@ -118759,7 +122945,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectContact`.", + "description": "The method to use when ordering `ProjectManager`.", "type": { "kind": "LIST", "name": null, @@ -118768,7 +122954,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectContactsOrderBy", + "name": "ProjectManagersOrderBy", "ofType": null } } @@ -118781,7 +122967,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectContactsConnection", + "name": "ProjectManagersConnection", "ofType": null } }, @@ -118796,7 +122982,7 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByProjectManagerArchivedByAndProjectIdManyToManyConnection", + "name": "CifUserProjectsByProjectManagerUpdatedByAndProjectIdManyToManyConnection", "description": "A connection to a list of `Project` values, with data from `ProjectManager`.", "fields": [ { @@ -118814,7 +123000,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByProjectManagerArchivedByAndProjectIdManyToManyEdge", + "name": "CifUserProjectsByProjectManagerUpdatedByAndProjectIdManyToManyEdge", "ofType": null } } @@ -118883,7 +123069,7 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByProjectManagerArchivedByAndProjectIdManyToManyEdge", + "name": "CifUserProjectsByProjectManagerUpdatedByAndProjectIdManyToManyEdge", "description": "A `Project` edge in the connection, with data from `ProjectManager`.", "fields": [ { @@ -119033,12 +123219,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByProjectManagerCifUserIdAndProjectIdManyToManyConnection", - "description": "A connection to a list of `Project` values, with data from `ProjectManager`.", + "name": "CifUserProjectsByProjectRevisionCreatedByAndProjectIdManyToManyConnection", + "description": "A connection to a list of `Project` values, with data from `ProjectRevision`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `Project`, info from the `ProjectManager`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `Project`, info from the `ProjectRevision`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -119051,7 +123237,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByProjectManagerCifUserIdAndProjectIdManyToManyEdge", + "name": "CifUserProjectsByProjectRevisionCreatedByAndProjectIdManyToManyEdge", "ofType": null } } @@ -119120,8 +123306,8 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByProjectManagerCifUserIdAndProjectIdManyToManyEdge", - "description": "A `Project` edge in the connection, with data from `ProjectManager`.", + "name": "CifUserProjectsByProjectRevisionCreatedByAndProjectIdManyToManyEdge", + "description": "A `Project` edge in the connection, with data from `ProjectRevision`.", "fields": [ { "name": "cursor", @@ -119148,8 +123334,8 @@ "deprecationReason": null }, { - "name": "projectManagersByProjectId", - "description": "Reads and enables pagination through a set of `ProjectManager`.", + "name": "projectRevisionsByProjectId", + "description": "Reads and enables pagination through a set of `ProjectRevision`.", "args": [ { "name": "after", @@ -119176,7 +123362,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerCondition", + "name": "ProjectRevisionCondition", "ofType": null }, "defaultValue": null @@ -119186,7 +123372,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerFilter", + "name": "ProjectRevisionFilter", "ofType": null }, "defaultValue": null @@ -119201,16 +123387,6 @@ }, "defaultValue": null }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -119233,7 +123409,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManager`.", + "description": "The method to use when ordering `ProjectRevision`.", "type": { "kind": "LIST", "name": null, @@ -119242,7 +123418,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagersOrderBy", + "name": "ProjectRevisionsOrderBy", "ofType": null } } @@ -119255,7 +123431,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectManagersConnection", + "name": "ProjectRevisionsConnection", "ofType": null } }, @@ -119270,12 +123446,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByProjectManagerCreatedByAndProjectIdManyToManyConnection", - "description": "A connection to a list of `Project` values, with data from `ProjectManager`.", + "name": "CifUserProjectsByProjectRevisionUpdatedByAndProjectIdManyToManyConnection", + "description": "A connection to a list of `Project` values, with data from `ProjectRevision`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `Project`, info from the `ProjectManager`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `Project`, info from the `ProjectRevision`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -119288,7 +123464,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByProjectManagerCreatedByAndProjectIdManyToManyEdge", + "name": "CifUserProjectsByProjectRevisionUpdatedByAndProjectIdManyToManyEdge", "ofType": null } } @@ -119357,8 +123533,8 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByProjectManagerCreatedByAndProjectIdManyToManyEdge", - "description": "A `Project` edge in the connection, with data from `ProjectManager`.", + "name": "CifUserProjectsByProjectRevisionUpdatedByAndProjectIdManyToManyEdge", + "description": "A `Project` edge in the connection, with data from `ProjectRevision`.", "fields": [ { "name": "cursor", @@ -119385,8 +123561,8 @@ "deprecationReason": null }, { - "name": "projectManagersByProjectId", - "description": "Reads and enables pagination through a set of `ProjectManager`.", + "name": "projectRevisionsByProjectId", + "description": "Reads and enables pagination through a set of `ProjectRevision`.", "args": [ { "name": "after", @@ -119413,7 +123589,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerCondition", + "name": "ProjectRevisionCondition", "ofType": null }, "defaultValue": null @@ -119423,7 +123599,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerFilter", + "name": "ProjectRevisionFilter", "ofType": null }, "defaultValue": null @@ -119438,16 +123614,6 @@ }, "defaultValue": null }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -119470,7 +123636,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManager`.", + "description": "The method to use when ordering `ProjectRevision`.", "type": { "kind": "LIST", "name": null, @@ -119479,7 +123645,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagersOrderBy", + "name": "ProjectRevisionsOrderBy", "ofType": null } } @@ -119492,7 +123658,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectManagersConnection", + "name": "ProjectRevisionsConnection", "ofType": null } }, @@ -119507,12 +123673,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByProjectManagerUpdatedByAndProjectIdManyToManyConnection", - "description": "A connection to a list of `Project` values, with data from `ProjectManager`.", + "name": "CifUserProjectsByReportingRequirementArchivedByAndProjectIdManyToManyConnection", + "description": "A connection to a list of `Project` values, with data from `ReportingRequirement`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `Project`, info from the `ProjectManager`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `Project`, info from the `ReportingRequirement`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -119525,7 +123691,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByProjectManagerUpdatedByAndProjectIdManyToManyEdge", + "name": "CifUserProjectsByReportingRequirementArchivedByAndProjectIdManyToManyEdge", "ofType": null } } @@ -119594,8 +123760,8 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByProjectManagerUpdatedByAndProjectIdManyToManyEdge", - "description": "A `Project` edge in the connection, with data from `ProjectManager`.", + "name": "CifUserProjectsByReportingRequirementArchivedByAndProjectIdManyToManyEdge", + "description": "A `Project` edge in the connection, with data from `ReportingRequirement`.", "fields": [ { "name": "cursor", @@ -119622,8 +123788,8 @@ "deprecationReason": null }, { - "name": "projectManagersByProjectId", - "description": "Reads and enables pagination through a set of `ProjectManager`.", + "name": "reportingRequirementsByProjectId", + "description": "Reads and enables pagination through a set of `ReportingRequirement`.", "args": [ { "name": "after", @@ -119650,7 +123816,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerCondition", + "name": "ReportingRequirementCondition", "ofType": null }, "defaultValue": null @@ -119660,7 +123826,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerFilter", + "name": "ReportingRequirementFilter", "ofType": null }, "defaultValue": null @@ -119707,7 +123873,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManager`.", + "description": "The method to use when ordering `ReportingRequirement`.", "type": { "kind": "LIST", "name": null, @@ -119716,7 +123882,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagersOrderBy", + "name": "ReportingRequirementsOrderBy", "ofType": null } } @@ -119729,7 +123895,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectManagersConnection", + "name": "ReportingRequirementsConnection", "ofType": null } }, @@ -119744,12 +123910,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByProjectRevisionCreatedByAndProjectIdManyToManyConnection", - "description": "A connection to a list of `Project` values, with data from `ProjectRevision`.", + "name": "CifUserProjectsByReportingRequirementCreatedByAndProjectIdManyToManyConnection", + "description": "A connection to a list of `Project` values, with data from `ReportingRequirement`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `Project`, info from the `ProjectRevision`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `Project`, info from the `ReportingRequirement`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -119762,7 +123928,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByProjectRevisionCreatedByAndProjectIdManyToManyEdge", + "name": "CifUserProjectsByReportingRequirementCreatedByAndProjectIdManyToManyEdge", "ofType": null } } @@ -119831,8 +123997,8 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByProjectRevisionCreatedByAndProjectIdManyToManyEdge", - "description": "A `Project` edge in the connection, with data from `ProjectRevision`.", + "name": "CifUserProjectsByReportingRequirementCreatedByAndProjectIdManyToManyEdge", + "description": "A `Project` edge in the connection, with data from `ReportingRequirement`.", "fields": [ { "name": "cursor", @@ -119859,8 +124025,8 @@ "deprecationReason": null }, { - "name": "projectRevisionsByProjectId", - "description": "Reads and enables pagination through a set of `ProjectRevision`.", + "name": "reportingRequirementsByProjectId", + "description": "Reads and enables pagination through a set of `ReportingRequirement`.", "args": [ { "name": "after", @@ -119887,7 +124053,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionCondition", + "name": "ReportingRequirementCondition", "ofType": null }, "defaultValue": null @@ -119897,7 +124063,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionFilter", + "name": "ReportingRequirementFilter", "ofType": null }, "defaultValue": null @@ -119912,6 +124078,16 @@ }, "defaultValue": null }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -119934,7 +124110,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectRevision`.", + "description": "The method to use when ordering `ReportingRequirement`.", "type": { "kind": "LIST", "name": null, @@ -119943,7 +124119,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectRevisionsOrderBy", + "name": "ReportingRequirementsOrderBy", "ofType": null } } @@ -119956,7 +124132,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectRevisionsConnection", + "name": "ReportingRequirementsConnection", "ofType": null } }, @@ -119971,12 +124147,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByProjectRevisionUpdatedByAndProjectIdManyToManyConnection", - "description": "A connection to a list of `Project` values, with data from `ProjectRevision`.", + "name": "CifUserProjectsByReportingRequirementUpdatedByAndProjectIdManyToManyConnection", + "description": "A connection to a list of `Project` values, with data from `ReportingRequirement`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `Project`, info from the `ProjectRevision`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `Project`, info from the `ReportingRequirement`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -119989,7 +124165,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByProjectRevisionUpdatedByAndProjectIdManyToManyEdge", + "name": "CifUserProjectsByReportingRequirementUpdatedByAndProjectIdManyToManyEdge", "ofType": null } } @@ -120058,8 +124234,8 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByProjectRevisionUpdatedByAndProjectIdManyToManyEdge", - "description": "A `Project` edge in the connection, with data from `ProjectRevision`.", + "name": "CifUserProjectsByReportingRequirementUpdatedByAndProjectIdManyToManyEdge", + "description": "A `Project` edge in the connection, with data from `ReportingRequirement`.", "fields": [ { "name": "cursor", @@ -120086,8 +124262,8 @@ "deprecationReason": null }, { - "name": "projectRevisionsByProjectId", - "description": "Reads and enables pagination through a set of `ProjectRevision`.", + "name": "reportingRequirementsByProjectId", + "description": "Reads and enables pagination through a set of `ReportingRequirement`.", "args": [ { "name": "after", @@ -120114,7 +124290,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionCondition", + "name": "ReportingRequirementCondition", "ofType": null }, "defaultValue": null @@ -120124,7 +124300,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectRevisionFilter", + "name": "ReportingRequirementFilter", "ofType": null }, "defaultValue": null @@ -120139,6 +124315,16 @@ }, "defaultValue": null }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -120161,7 +124347,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectRevision`.", + "description": "The method to use when ordering `ReportingRequirement`.", "type": { "kind": "LIST", "name": null, @@ -120170,7 +124356,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectRevisionsOrderBy", + "name": "ReportingRequirementsOrderBy", "ofType": null } } @@ -120183,7 +124369,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectRevisionsConnection", + "name": "ReportingRequirementsConnection", "ofType": null } }, @@ -120198,12 +124384,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByReportingRequirementArchivedByAndProjectIdManyToManyConnection", - "description": "A connection to a list of `Project` values, with data from `ReportingRequirement`.", + "name": "CifUserReportTypesByReportingRequirementArchivedByAndReportTypeManyToManyConnection", + "description": "A connection to a list of `ReportType` values, with data from `ReportingRequirement`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `Project`, info from the `ReportingRequirement`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `ReportType`, info from the `ReportingRequirement`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -120216,7 +124402,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByReportingRequirementArchivedByAndProjectIdManyToManyEdge", + "name": "CifUserReportTypesByReportingRequirementArchivedByAndReportTypeManyToManyEdge", "ofType": null } } @@ -120227,7 +124413,7 @@ }, { "name": "nodes", - "description": "A list of `Project` objects.", + "description": "A list of `ReportType` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -120237,7 +124423,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Project", + "name": "ReportType", "ofType": null } } @@ -120263,7 +124449,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `Project` you could get from the connection.", + "description": "The count of *all* `ReportType` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -120285,8 +124471,8 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByReportingRequirementArchivedByAndProjectIdManyToManyEdge", - "description": "A `Project` edge in the connection, with data from `ReportingRequirement`.", + "name": "CifUserReportTypesByReportingRequirementArchivedByAndReportTypeManyToManyEdge", + "description": "A `ReportType` edge in the connection, with data from `ReportingRequirement`.", "fields": [ { "name": "cursor", @@ -120302,18 +124488,18 @@ }, { "name": "node", - "description": "The `Project` at the end of the edge.", + "description": "The `ReportType` at the end of the edge.", "args": [], "type": { "kind": "OBJECT", - "name": "Project", + "name": "ReportType", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "reportingRequirementsByProjectId", + "name": "reportingRequirementsByReportType", "description": "Reads and enables pagination through a set of `ReportingRequirement`.", "args": [ { @@ -120435,12 +124621,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByReportingRequirementCreatedByAndProjectIdManyToManyConnection", - "description": "A connection to a list of `Project` values, with data from `ReportingRequirement`.", + "name": "CifUserReportTypesByReportingRequirementCreatedByAndReportTypeManyToManyConnection", + "description": "A connection to a list of `ReportType` values, with data from `ReportingRequirement`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `Project`, info from the `ReportingRequirement`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `ReportType`, info from the `ReportingRequirement`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -120453,7 +124639,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByReportingRequirementCreatedByAndProjectIdManyToManyEdge", + "name": "CifUserReportTypesByReportingRequirementCreatedByAndReportTypeManyToManyEdge", "ofType": null } } @@ -120464,7 +124650,7 @@ }, { "name": "nodes", - "description": "A list of `Project` objects.", + "description": "A list of `ReportType` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -120474,7 +124660,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Project", + "name": "ReportType", "ofType": null } } @@ -120500,7 +124686,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `Project` you could get from the connection.", + "description": "The count of *all* `ReportType` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -120522,8 +124708,8 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByReportingRequirementCreatedByAndProjectIdManyToManyEdge", - "description": "A `Project` edge in the connection, with data from `ReportingRequirement`.", + "name": "CifUserReportTypesByReportingRequirementCreatedByAndReportTypeManyToManyEdge", + "description": "A `ReportType` edge in the connection, with data from `ReportingRequirement`.", "fields": [ { "name": "cursor", @@ -120539,18 +124725,18 @@ }, { "name": "node", - "description": "The `Project` at the end of the edge.", + "description": "The `ReportType` at the end of the edge.", "args": [], "type": { "kind": "OBJECT", - "name": "Project", + "name": "ReportType", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "reportingRequirementsByProjectId", + "name": "reportingRequirementsByReportType", "description": "Reads and enables pagination through a set of `ReportingRequirement`.", "args": [ { @@ -120672,12 +124858,12 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByReportingRequirementUpdatedByAndProjectIdManyToManyConnection", - "description": "A connection to a list of `Project` values, with data from `ReportingRequirement`.", + "name": "CifUserReportTypesByReportingRequirementUpdatedByAndReportTypeManyToManyConnection", + "description": "A connection to a list of `ReportType` values, with data from `ReportingRequirement`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `Project`, info from the `ReportingRequirement`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `ReportType`, info from the `ReportingRequirement`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -120690,7 +124876,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserProjectsByReportingRequirementUpdatedByAndProjectIdManyToManyEdge", + "name": "CifUserReportTypesByReportingRequirementUpdatedByAndReportTypeManyToManyEdge", "ofType": null } } @@ -120701,7 +124887,7 @@ }, { "name": "nodes", - "description": "A list of `Project` objects.", + "description": "A list of `ReportType` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -120711,7 +124897,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Project", + "name": "ReportType", "ofType": null } } @@ -120737,7 +124923,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `Project` you could get from the connection.", + "description": "The count of *all* `ReportType` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -120759,8 +124945,8 @@ }, { "kind": "OBJECT", - "name": "CifUserProjectsByReportingRequirementUpdatedByAndProjectIdManyToManyEdge", - "description": "A `Project` edge in the connection, with data from `ReportingRequirement`.", + "name": "CifUserReportTypesByReportingRequirementUpdatedByAndReportTypeManyToManyEdge", + "description": "A `ReportType` edge in the connection, with data from `ReportingRequirement`.", "fields": [ { "name": "cursor", @@ -120776,18 +124962,18 @@ }, { "name": "node", - "description": "The `Project` at the end of the edge.", + "description": "The `ReportType` at the end of the edge.", "args": [], "type": { "kind": "OBJECT", - "name": "Project", + "name": "ReportType", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "reportingRequirementsByProjectId", + "name": "reportingRequirementsByReportType", "description": "Reads and enables pagination through a set of `ReportingRequirement`.", "args": [ { @@ -120909,12 +125095,12 @@ }, { "kind": "OBJECT", - "name": "CifUserReportTypesByReportingRequirementArchivedByAndReportTypeManyToManyConnection", - "description": "A connection to a list of `ReportType` values, with data from `ReportingRequirement`.", + "name": "CifUserReportingRequirementsByEmissionIntensityReportArchivedByAndReportingRequirementIdManyToManyConnection", + "description": "A connection to a list of `ReportingRequirement` values, with data from `EmissionIntensityReport`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `ReportType`, info from the `ReportingRequirement`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `ReportingRequirement`, info from the `EmissionIntensityReport`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -120927,7 +125113,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserReportTypesByReportingRequirementArchivedByAndReportTypeManyToManyEdge", + "name": "CifUserReportingRequirementsByEmissionIntensityReportArchivedByAndReportingRequirementIdManyToManyEdge", "ofType": null } } @@ -120938,7 +125124,7 @@ }, { "name": "nodes", - "description": "A list of `ReportType` objects.", + "description": "A list of `ReportingRequirement` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -120948,7 +125134,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ReportType", + "name": "ReportingRequirement", "ofType": null } } @@ -120974,7 +125160,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `ReportType` you could get from the connection.", + "description": "The count of *all* `ReportingRequirement` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -120996,8 +125182,8 @@ }, { "kind": "OBJECT", - "name": "CifUserReportTypesByReportingRequirementArchivedByAndReportTypeManyToManyEdge", - "description": "A `ReportType` edge in the connection, with data from `ReportingRequirement`.", + "name": "CifUserReportingRequirementsByEmissionIntensityReportArchivedByAndReportingRequirementIdManyToManyEdge", + "description": "A `ReportingRequirement` edge in the connection, with data from `EmissionIntensityReport`.", "fields": [ { "name": "cursor", @@ -121012,20 +125198,8 @@ "deprecationReason": null }, { - "name": "node", - "description": "The `ReportType` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ReportType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reportingRequirementsByReportType", - "description": "Reads and enables pagination through a set of `ReportingRequirement`.", + "name": "emissionIntensityReportsByReportingRequirementId", + "description": "Reads and enables pagination through a set of `EmissionIntensityReport`.", "args": [ { "name": "after", @@ -121052,7 +125226,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementCondition", + "name": "EmissionIntensityReportCondition", "ofType": null }, "defaultValue": null @@ -121062,7 +125236,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementFilter", + "name": "EmissionIntensityReportFilter", "ofType": null }, "defaultValue": null @@ -121109,7 +125283,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportingRequirement`.", + "description": "The method to use when ordering `EmissionIntensityReport`.", "type": { "kind": "LIST", "name": null, @@ -121118,7 +125292,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportingRequirementsOrderBy", + "name": "EmissionIntensityReportsOrderBy", "ofType": null } } @@ -121131,12 +125305,24 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ReportingRequirementsConnection", + "name": "EmissionIntensityReportsConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "node", + "description": "The `ReportingRequirement` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ReportingRequirement", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -121146,12 +125332,12 @@ }, { "kind": "OBJECT", - "name": "CifUserReportTypesByReportingRequirementCreatedByAndReportTypeManyToManyConnection", - "description": "A connection to a list of `ReportType` values, with data from `ReportingRequirement`.", + "name": "CifUserReportingRequirementsByEmissionIntensityReportCreatedByAndReportingRequirementIdManyToManyConnection", + "description": "A connection to a list of `ReportingRequirement` values, with data from `EmissionIntensityReport`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `ReportType`, info from the `ReportingRequirement`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `ReportingRequirement`, info from the `EmissionIntensityReport`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -121164,7 +125350,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserReportTypesByReportingRequirementCreatedByAndReportTypeManyToManyEdge", + "name": "CifUserReportingRequirementsByEmissionIntensityReportCreatedByAndReportingRequirementIdManyToManyEdge", "ofType": null } } @@ -121175,7 +125361,7 @@ }, { "name": "nodes", - "description": "A list of `ReportType` objects.", + "description": "A list of `ReportingRequirement` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -121185,7 +125371,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ReportType", + "name": "ReportingRequirement", "ofType": null } } @@ -121211,7 +125397,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `ReportType` you could get from the connection.", + "description": "The count of *all* `ReportingRequirement` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -121233,8 +125419,8 @@ }, { "kind": "OBJECT", - "name": "CifUserReportTypesByReportingRequirementCreatedByAndReportTypeManyToManyEdge", - "description": "A `ReportType` edge in the connection, with data from `ReportingRequirement`.", + "name": "CifUserReportingRequirementsByEmissionIntensityReportCreatedByAndReportingRequirementIdManyToManyEdge", + "description": "A `ReportingRequirement` edge in the connection, with data from `EmissionIntensityReport`.", "fields": [ { "name": "cursor", @@ -121249,20 +125435,8 @@ "deprecationReason": null }, { - "name": "node", - "description": "The `ReportType` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ReportType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reportingRequirementsByReportType", - "description": "Reads and enables pagination through a set of `ReportingRequirement`.", + "name": "emissionIntensityReportsByReportingRequirementId", + "description": "Reads and enables pagination through a set of `EmissionIntensityReport`.", "args": [ { "name": "after", @@ -121289,7 +125463,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementCondition", + "name": "EmissionIntensityReportCondition", "ofType": null }, "defaultValue": null @@ -121299,7 +125473,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementFilter", + "name": "EmissionIntensityReportFilter", "ofType": null }, "defaultValue": null @@ -121346,7 +125520,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportingRequirement`.", + "description": "The method to use when ordering `EmissionIntensityReport`.", "type": { "kind": "LIST", "name": null, @@ -121355,7 +125529,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportingRequirementsOrderBy", + "name": "EmissionIntensityReportsOrderBy", "ofType": null } } @@ -121368,12 +125542,24 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ReportingRequirementsConnection", + "name": "EmissionIntensityReportsConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "node", + "description": "The `ReportingRequirement` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ReportingRequirement", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -121383,12 +125569,12 @@ }, { "kind": "OBJECT", - "name": "CifUserReportTypesByReportingRequirementUpdatedByAndReportTypeManyToManyConnection", - "description": "A connection to a list of `ReportType` values, with data from `ReportingRequirement`.", + "name": "CifUserReportingRequirementsByEmissionIntensityReportUpdatedByAndReportingRequirementIdManyToManyConnection", + "description": "A connection to a list of `ReportingRequirement` values, with data from `EmissionIntensityReport`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `ReportType`, info from the `ReportingRequirement`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `ReportingRequirement`, info from the `EmissionIntensityReport`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -121401,7 +125587,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserReportTypesByReportingRequirementUpdatedByAndReportTypeManyToManyEdge", + "name": "CifUserReportingRequirementsByEmissionIntensityReportUpdatedByAndReportingRequirementIdManyToManyEdge", "ofType": null } } @@ -121412,7 +125598,7 @@ }, { "name": "nodes", - "description": "A list of `ReportType` objects.", + "description": "A list of `ReportingRequirement` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -121422,7 +125608,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ReportType", + "name": "ReportingRequirement", "ofType": null } } @@ -121448,7 +125634,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `ReportType` you could get from the connection.", + "description": "The count of *all* `ReportingRequirement` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -121470,8 +125656,8 @@ }, { "kind": "OBJECT", - "name": "CifUserReportTypesByReportingRequirementUpdatedByAndReportTypeManyToManyEdge", - "description": "A `ReportType` edge in the connection, with data from `ReportingRequirement`.", + "name": "CifUserReportingRequirementsByEmissionIntensityReportUpdatedByAndReportingRequirementIdManyToManyEdge", + "description": "A `ReportingRequirement` edge in the connection, with data from `EmissionIntensityReport`.", "fields": [ { "name": "cursor", @@ -121486,20 +125672,8 @@ "deprecationReason": null }, { - "name": "node", - "description": "The `ReportType` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ReportType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reportingRequirementsByReportType", - "description": "Reads and enables pagination through a set of `ReportingRequirement`.", + "name": "emissionIntensityReportsByReportingRequirementId", + "description": "Reads and enables pagination through a set of `EmissionIntensityReport`.", "args": [ { "name": "after", @@ -121526,7 +125700,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementCondition", + "name": "EmissionIntensityReportCondition", "ofType": null }, "defaultValue": null @@ -121536,7 +125710,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementFilter", + "name": "EmissionIntensityReportFilter", "ofType": null }, "defaultValue": null @@ -121583,7 +125757,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportingRequirement`.", + "description": "The method to use when ordering `EmissionIntensityReport`.", "type": { "kind": "LIST", "name": null, @@ -121592,7 +125766,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportingRequirementsOrderBy", + "name": "EmissionIntensityReportsOrderBy", "ofType": null } } @@ -121605,12 +125779,24 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ReportingRequirementsConnection", + "name": "EmissionIntensityReportsConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "node", + "description": "The `ReportingRequirement` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ReportingRequirement", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -121620,12 +125806,12 @@ }, { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByEmissionIntensityReportArchivedByAndReportingRequirementIdManyToManyConnection", - "description": "A connection to a list of `ReportingRequirement` values, with data from `EmissionIntensityReport`.", + "name": "CifUserReportingRequirementsByMilestoneReportArchivedByAndReportingRequirementIdManyToManyConnection", + "description": "A connection to a list of `ReportingRequirement` values, with data from `MilestoneReport`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `ReportingRequirement`, info from the `EmissionIntensityReport`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `ReportingRequirement`, info from the `MilestoneReport`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -121638,7 +125824,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByEmissionIntensityReportArchivedByAndReportingRequirementIdManyToManyEdge", + "name": "CifUserReportingRequirementsByMilestoneReportArchivedByAndReportingRequirementIdManyToManyEdge", "ofType": null } } @@ -121707,8 +125893,8 @@ }, { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByEmissionIntensityReportArchivedByAndReportingRequirementIdManyToManyEdge", - "description": "A `ReportingRequirement` edge in the connection, with data from `EmissionIntensityReport`.", + "name": "CifUserReportingRequirementsByMilestoneReportArchivedByAndReportingRequirementIdManyToManyEdge", + "description": "A `ReportingRequirement` edge in the connection, with data from `MilestoneReport`.", "fields": [ { "name": "cursor", @@ -121723,8 +125909,8 @@ "deprecationReason": null }, { - "name": "emissionIntensityReportsByReportingRequirementId", - "description": "Reads and enables pagination through a set of `EmissionIntensityReport`.", + "name": "milestoneReportsByReportingRequirementId", + "description": "Reads and enables pagination through a set of `MilestoneReport`.", "args": [ { "name": "after", @@ -121751,7 +125937,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityReportCondition", + "name": "MilestoneReportCondition", "ofType": null }, "defaultValue": null @@ -121761,7 +125947,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityReportFilter", + "name": "MilestoneReportFilter", "ofType": null }, "defaultValue": null @@ -121808,7 +125994,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `EmissionIntensityReport`.", + "description": "The method to use when ordering `MilestoneReport`.", "type": { "kind": "LIST", "name": null, @@ -121817,7 +126003,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "EmissionIntensityReportsOrderBy", + "name": "MilestoneReportsOrderBy", "ofType": null } } @@ -121830,7 +126016,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "EmissionIntensityReportsConnection", + "name": "MilestoneReportsConnection", "ofType": null } }, @@ -121857,12 +126043,12 @@ }, { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByEmissionIntensityReportCreatedByAndReportingRequirementIdManyToManyConnection", - "description": "A connection to a list of `ReportingRequirement` values, with data from `EmissionIntensityReport`.", + "name": "CifUserReportingRequirementsByMilestoneReportCreatedByAndReportingRequirementIdManyToManyConnection", + "description": "A connection to a list of `ReportingRequirement` values, with data from `MilestoneReport`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `ReportingRequirement`, info from the `EmissionIntensityReport`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `ReportingRequirement`, info from the `MilestoneReport`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -121875,7 +126061,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByEmissionIntensityReportCreatedByAndReportingRequirementIdManyToManyEdge", + "name": "CifUserReportingRequirementsByMilestoneReportCreatedByAndReportingRequirementIdManyToManyEdge", "ofType": null } } @@ -121944,8 +126130,8 @@ }, { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByEmissionIntensityReportCreatedByAndReportingRequirementIdManyToManyEdge", - "description": "A `ReportingRequirement` edge in the connection, with data from `EmissionIntensityReport`.", + "name": "CifUserReportingRequirementsByMilestoneReportCreatedByAndReportingRequirementIdManyToManyEdge", + "description": "A `ReportingRequirement` edge in the connection, with data from `MilestoneReport`.", "fields": [ { "name": "cursor", @@ -121960,8 +126146,8 @@ "deprecationReason": null }, { - "name": "emissionIntensityReportsByReportingRequirementId", - "description": "Reads and enables pagination through a set of `EmissionIntensityReport`.", + "name": "milestoneReportsByReportingRequirementId", + "description": "Reads and enables pagination through a set of `MilestoneReport`.", "args": [ { "name": "after", @@ -121988,7 +126174,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityReportCondition", + "name": "MilestoneReportCondition", "ofType": null }, "defaultValue": null @@ -121998,7 +126184,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityReportFilter", + "name": "MilestoneReportFilter", "ofType": null }, "defaultValue": null @@ -122045,7 +126231,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `EmissionIntensityReport`.", + "description": "The method to use when ordering `MilestoneReport`.", "type": { "kind": "LIST", "name": null, @@ -122054,7 +126240,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "EmissionIntensityReportsOrderBy", + "name": "MilestoneReportsOrderBy", "ofType": null } } @@ -122067,7 +126253,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "EmissionIntensityReportsConnection", + "name": "MilestoneReportsConnection", "ofType": null } }, @@ -122094,12 +126280,12 @@ }, { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByEmissionIntensityReportUpdatedByAndReportingRequirementIdManyToManyConnection", - "description": "A connection to a list of `ReportingRequirement` values, with data from `EmissionIntensityReport`.", + "name": "CifUserReportingRequirementsByMilestoneReportUpdatedByAndReportingRequirementIdManyToManyConnection", + "description": "A connection to a list of `ReportingRequirement` values, with data from `MilestoneReport`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `ReportingRequirement`, info from the `EmissionIntensityReport`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `ReportingRequirement`, info from the `MilestoneReport`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -122112,7 +126298,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByEmissionIntensityReportUpdatedByAndReportingRequirementIdManyToManyEdge", + "name": "CifUserReportingRequirementsByMilestoneReportUpdatedByAndReportingRequirementIdManyToManyEdge", "ofType": null } } @@ -122181,8 +126367,8 @@ }, { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByEmissionIntensityReportUpdatedByAndReportingRequirementIdManyToManyEdge", - "description": "A `ReportingRequirement` edge in the connection, with data from `EmissionIntensityReport`.", + "name": "CifUserReportingRequirementsByMilestoneReportUpdatedByAndReportingRequirementIdManyToManyEdge", + "description": "A `ReportingRequirement` edge in the connection, with data from `MilestoneReport`.", "fields": [ { "name": "cursor", @@ -122197,8 +126383,8 @@ "deprecationReason": null }, { - "name": "emissionIntensityReportsByReportingRequirementId", - "description": "Reads and enables pagination through a set of `EmissionIntensityReport`.", + "name": "milestoneReportsByReportingRequirementId", + "description": "Reads and enables pagination through a set of `MilestoneReport`.", "args": [ { "name": "after", @@ -122225,7 +126411,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityReportCondition", + "name": "MilestoneReportCondition", "ofType": null }, "defaultValue": null @@ -122235,7 +126421,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityReportFilter", + "name": "MilestoneReportFilter", "ofType": null }, "defaultValue": null @@ -122282,7 +126468,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `EmissionIntensityReport`.", + "description": "The method to use when ordering `MilestoneReport`.", "type": { "kind": "LIST", "name": null, @@ -122291,7 +126477,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "EmissionIntensityReportsOrderBy", + "name": "MilestoneReportsOrderBy", "ofType": null } } @@ -122304,7 +126490,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "EmissionIntensityReportsConnection", + "name": "MilestoneReportsConnection", "ofType": null } }, @@ -122331,12 +126517,12 @@ }, { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByMilestoneReportArchivedByAndReportingRequirementIdManyToManyConnection", - "description": "A connection to a list of `ReportingRequirement` values, with data from `MilestoneReport`.", + "name": "CifUserReportingRequirementsByPaymentArchivedByAndReportingRequirementIdManyToManyConnection", + "description": "A connection to a list of `ReportingRequirement` values, with data from `Payment`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `ReportingRequirement`, info from the `MilestoneReport`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `ReportingRequirement`, info from the `Payment`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -122349,7 +126535,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByMilestoneReportArchivedByAndReportingRequirementIdManyToManyEdge", + "name": "CifUserReportingRequirementsByPaymentArchivedByAndReportingRequirementIdManyToManyEdge", "ofType": null } } @@ -122418,8 +126604,8 @@ }, { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByMilestoneReportArchivedByAndReportingRequirementIdManyToManyEdge", - "description": "A `ReportingRequirement` edge in the connection, with data from `MilestoneReport`.", + "name": "CifUserReportingRequirementsByPaymentArchivedByAndReportingRequirementIdManyToManyEdge", + "description": "A `ReportingRequirement` edge in the connection, with data from `Payment`.", "fields": [ { "name": "cursor", @@ -122434,8 +126620,20 @@ "deprecationReason": null }, { - "name": "milestoneReportsByReportingRequirementId", - "description": "Reads and enables pagination through a set of `MilestoneReport`.", + "name": "node", + "description": "The `ReportingRequirement` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ReportingRequirement", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "paymentsByReportingRequirementId", + "description": "Reads and enables pagination through a set of `Payment`.", "args": [ { "name": "after", @@ -122462,7 +126660,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "MilestoneReportCondition", + "name": "PaymentCondition", "ofType": null }, "defaultValue": null @@ -122472,7 +126670,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "MilestoneReportFilter", + "name": "PaymentFilter", "ofType": null }, "defaultValue": null @@ -122519,7 +126717,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `MilestoneReport`.", + "description": "The method to use when ordering `Payment`.", "type": { "kind": "LIST", "name": null, @@ -122528,7 +126726,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "MilestoneReportsOrderBy", + "name": "PaymentsOrderBy", "ofType": null } } @@ -122541,24 +126739,12 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "MilestoneReportsConnection", + "name": "PaymentsConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "node", - "description": "The `ReportingRequirement` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ReportingRequirement", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null } ], "inputFields": null, @@ -122568,12 +126754,12 @@ }, { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByMilestoneReportCreatedByAndReportingRequirementIdManyToManyConnection", - "description": "A connection to a list of `ReportingRequirement` values, with data from `MilestoneReport`.", + "name": "CifUserReportingRequirementsByPaymentCreatedByAndReportingRequirementIdManyToManyConnection", + "description": "A connection to a list of `ReportingRequirement` values, with data from `Payment`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `ReportingRequirement`, info from the `MilestoneReport`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `ReportingRequirement`, info from the `Payment`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -122586,7 +126772,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByMilestoneReportCreatedByAndReportingRequirementIdManyToManyEdge", + "name": "CifUserReportingRequirementsByPaymentCreatedByAndReportingRequirementIdManyToManyEdge", "ofType": null } } @@ -122655,8 +126841,8 @@ }, { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByMilestoneReportCreatedByAndReportingRequirementIdManyToManyEdge", - "description": "A `ReportingRequirement` edge in the connection, with data from `MilestoneReport`.", + "name": "CifUserReportingRequirementsByPaymentCreatedByAndReportingRequirementIdManyToManyEdge", + "description": "A `ReportingRequirement` edge in the connection, with data from `Payment`.", "fields": [ { "name": "cursor", @@ -122671,8 +126857,20 @@ "deprecationReason": null }, { - "name": "milestoneReportsByReportingRequirementId", - "description": "Reads and enables pagination through a set of `MilestoneReport`.", + "name": "node", + "description": "The `ReportingRequirement` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ReportingRequirement", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "paymentsByReportingRequirementId", + "description": "Reads and enables pagination through a set of `Payment`.", "args": [ { "name": "after", @@ -122699,7 +126897,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "MilestoneReportCondition", + "name": "PaymentCondition", "ofType": null }, "defaultValue": null @@ -122709,7 +126907,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "MilestoneReportFilter", + "name": "PaymentFilter", "ofType": null }, "defaultValue": null @@ -122756,7 +126954,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `MilestoneReport`.", + "description": "The method to use when ordering `Payment`.", "type": { "kind": "LIST", "name": null, @@ -122765,7 +126963,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "MilestoneReportsOrderBy", + "name": "PaymentsOrderBy", "ofType": null } } @@ -122778,24 +126976,12 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "MilestoneReportsConnection", + "name": "PaymentsConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "node", - "description": "The `ReportingRequirement` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ReportingRequirement", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null } ], "inputFields": null, @@ -122805,12 +126991,12 @@ }, { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByMilestoneReportUpdatedByAndReportingRequirementIdManyToManyConnection", - "description": "A connection to a list of `ReportingRequirement` values, with data from `MilestoneReport`.", + "name": "CifUserReportingRequirementsByPaymentUpdatedByAndReportingRequirementIdManyToManyConnection", + "description": "A connection to a list of `ReportingRequirement` values, with data from `Payment`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `ReportingRequirement`, info from the `MilestoneReport`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `ReportingRequirement`, info from the `Payment`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -122823,7 +127009,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByMilestoneReportUpdatedByAndReportingRequirementIdManyToManyEdge", + "name": "CifUserReportingRequirementsByPaymentUpdatedByAndReportingRequirementIdManyToManyEdge", "ofType": null } } @@ -122892,8 +127078,8 @@ }, { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByMilestoneReportUpdatedByAndReportingRequirementIdManyToManyEdge", - "description": "A `ReportingRequirement` edge in the connection, with data from `MilestoneReport`.", + "name": "CifUserReportingRequirementsByPaymentUpdatedByAndReportingRequirementIdManyToManyEdge", + "description": "A `ReportingRequirement` edge in the connection, with data from `Payment`.", "fields": [ { "name": "cursor", @@ -122908,8 +127094,20 @@ "deprecationReason": null }, { - "name": "milestoneReportsByReportingRequirementId", - "description": "Reads and enables pagination through a set of `MilestoneReport`.", + "name": "node", + "description": "The `ReportingRequirement` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ReportingRequirement", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "paymentsByReportingRequirementId", + "description": "Reads and enables pagination through a set of `Payment`.", "args": [ { "name": "after", @@ -122936,7 +127134,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "MilestoneReportCondition", + "name": "PaymentCondition", "ofType": null }, "defaultValue": null @@ -122946,7 +127144,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "MilestoneReportFilter", + "name": "PaymentFilter", "ofType": null }, "defaultValue": null @@ -122993,7 +127191,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `MilestoneReport`.", + "description": "The method to use when ordering `Payment`.", "type": { "kind": "LIST", "name": null, @@ -123002,7 +127200,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "MilestoneReportsOrderBy", + "name": "PaymentsOrderBy", "ofType": null } } @@ -123015,24 +127213,12 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "MilestoneReportsConnection", + "name": "PaymentsConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "node", - "description": "The `ReportingRequirement` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ReportingRequirement", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null } ], "inputFields": null, @@ -123042,12 +127228,12 @@ }, { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByPaymentArchivedByAndReportingRequirementIdManyToManyConnection", - "description": "A connection to a list of `ReportingRequirement` values, with data from `Payment`.", + "name": "CifUserRevisionStatusesByProjectRevisionCreatedByAndRevisionStatusManyToManyConnection", + "description": "A connection to a list of `RevisionStatus` values, with data from `ProjectRevision`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `ReportingRequirement`, info from the `Payment`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `RevisionStatus`, info from the `ProjectRevision`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -123060,7 +127246,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByPaymentArchivedByAndReportingRequirementIdManyToManyEdge", + "name": "CifUserRevisionStatusesByProjectRevisionCreatedByAndRevisionStatusManyToManyEdge", "ofType": null } } @@ -123071,7 +127257,7 @@ }, { "name": "nodes", - "description": "A list of `ReportingRequirement` objects.", + "description": "A list of `RevisionStatus` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -123081,7 +127267,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ReportingRequirement", + "name": "RevisionStatus", "ofType": null } } @@ -123107,7 +127293,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `ReportingRequirement` you could get from the connection.", + "description": "The count of *all* `RevisionStatus` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -123129,8 +127315,8 @@ }, { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByPaymentArchivedByAndReportingRequirementIdManyToManyEdge", - "description": "A `ReportingRequirement` edge in the connection, with data from `Payment`.", + "name": "CifUserRevisionStatusesByProjectRevisionCreatedByAndRevisionStatusManyToManyEdge", + "description": "A `RevisionStatus` edge in the connection, with data from `ProjectRevision`.", "fields": [ { "name": "cursor", @@ -123146,19 +127332,19 @@ }, { "name": "node", - "description": "The `ReportingRequirement` at the end of the edge.", + "description": "The `RevisionStatus` at the end of the edge.", "args": [], "type": { "kind": "OBJECT", - "name": "ReportingRequirement", + "name": "RevisionStatus", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "paymentsByReportingRequirementId", - "description": "Reads and enables pagination through a set of `Payment`.", + "name": "projectRevisionsByRevisionStatus", + "description": "Reads and enables pagination through a set of `ProjectRevision`.", "args": [ { "name": "after", @@ -123185,7 +127371,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "PaymentCondition", + "name": "ProjectRevisionCondition", "ofType": null }, "defaultValue": null @@ -123195,7 +127381,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "PaymentFilter", + "name": "ProjectRevisionFilter", "ofType": null }, "defaultValue": null @@ -123210,16 +127396,6 @@ }, "defaultValue": null }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -123242,7 +127418,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Payment`.", + "description": "The method to use when ordering `ProjectRevision`.", "type": { "kind": "LIST", "name": null, @@ -123251,7 +127427,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "PaymentsOrderBy", + "name": "ProjectRevisionsOrderBy", "ofType": null } } @@ -123264,7 +127440,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PaymentsConnection", + "name": "ProjectRevisionsConnection", "ofType": null } }, @@ -123279,12 +127455,12 @@ }, { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByPaymentCreatedByAndReportingRequirementIdManyToManyConnection", - "description": "A connection to a list of `ReportingRequirement` values, with data from `Payment`.", + "name": "CifUserRevisionStatusesByProjectRevisionUpdatedByAndRevisionStatusManyToManyConnection", + "description": "A connection to a list of `RevisionStatus` values, with data from `ProjectRevision`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `ReportingRequirement`, info from the `Payment`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `RevisionStatus`, info from the `ProjectRevision`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -123297,7 +127473,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByPaymentCreatedByAndReportingRequirementIdManyToManyEdge", + "name": "CifUserRevisionStatusesByProjectRevisionUpdatedByAndRevisionStatusManyToManyEdge", "ofType": null } } @@ -123308,7 +127484,7 @@ }, { "name": "nodes", - "description": "A list of `ReportingRequirement` objects.", + "description": "A list of `RevisionStatus` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -123318,7 +127494,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ReportingRequirement", + "name": "RevisionStatus", "ofType": null } } @@ -123344,7 +127520,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `ReportingRequirement` you could get from the connection.", + "description": "The count of *all* `RevisionStatus` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -123366,8 +127542,8 @@ }, { "kind": "OBJECT", - "name": "CifUserReportingRequirementsByPaymentCreatedByAndReportingRequirementIdManyToManyEdge", - "description": "A `ReportingRequirement` edge in the connection, with data from `Payment`.", + "name": "CifUserRevisionStatusesByProjectRevisionUpdatedByAndRevisionStatusManyToManyEdge", + "description": "A `RevisionStatus` edge in the connection, with data from `ProjectRevision`.", "fields": [ { "name": "cursor", @@ -123383,19 +127559,19 @@ }, { "name": "node", - "description": "The `ReportingRequirement` at the end of the edge.", + "description": "The `RevisionStatus` at the end of the edge.", "args": [], "type": { "kind": "OBJECT", - "name": "ReportingRequirement", + "name": "RevisionStatus", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "paymentsByReportingRequirementId", - "description": "Reads and enables pagination through a set of `Payment`.", + "name": "projectRevisionsByRevisionStatus", + "description": "Reads and enables pagination through a set of `ProjectRevision`.", "args": [ { "name": "after", @@ -123422,244 +127598,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "PaymentCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "PaymentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Payment`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "PaymentsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PaymentsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CifUserReportingRequirementsByPaymentUpdatedByAndReportingRequirementIdManyToManyConnection", - "description": "A connection to a list of `ReportingRequirement` values, with data from `Payment`.", - "fields": [ - { - "name": "edges", - "description": "A list of edges which contains the `ReportingRequirement`, info from the `Payment`, and the cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CifUserReportingRequirementsByPaymentUpdatedByAndReportingRequirementIdManyToManyEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `ReportingRequirement` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ReportingRequirement", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `ReportingRequirement` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CifUserReportingRequirementsByPaymentUpdatedByAndReportingRequirementIdManyToManyEdge", - "description": "A `ReportingRequirement` edge in the connection, with data from `Payment`.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `ReportingRequirement` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ReportingRequirement", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "paymentsByReportingRequirementId", - "description": "Reads and enables pagination through a set of `Payment`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "PaymentCondition", + "name": "ProjectRevisionCondition", "ofType": null }, "defaultValue": null @@ -123669,7 +127608,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "PaymentFilter", + "name": "ProjectRevisionFilter", "ofType": null }, "defaultValue": null @@ -123684,16 +127623,6 @@ }, "defaultValue": null }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -123716,7 +127645,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Payment`.", + "description": "The method to use when ordering `ProjectRevision`.", "type": { "kind": "LIST", "name": null, @@ -123725,7 +127654,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "PaymentsOrderBy", + "name": "ProjectRevisionsOrderBy", "ofType": null } } @@ -123738,7 +127667,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PaymentsConnection", + "name": "ProjectRevisionsConnection", "ofType": null } }, @@ -123753,12 +127682,12 @@ }, { "kind": "OBJECT", - "name": "CifUserRevisionStatusesByProjectRevisionCreatedByAndRevisionStatusManyToManyConnection", - "description": "A connection to a list of `RevisionStatus` values, with data from `ProjectRevision`.", + "name": "CifUserRevisionTypesByProjectRevisionCreatedByAndRevisionTypeManyToManyConnection", + "description": "A connection to a list of `RevisionType` values, with data from `ProjectRevision`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `RevisionStatus`, info from the `ProjectRevision`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `RevisionType`, info from the `ProjectRevision`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -123771,7 +127700,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserRevisionStatusesByProjectRevisionCreatedByAndRevisionStatusManyToManyEdge", + "name": "CifUserRevisionTypesByProjectRevisionCreatedByAndRevisionTypeManyToManyEdge", "ofType": null } } @@ -123782,7 +127711,7 @@ }, { "name": "nodes", - "description": "A list of `RevisionStatus` objects.", + "description": "A list of `RevisionType` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -123792,7 +127721,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RevisionStatus", + "name": "RevisionType", "ofType": null } } @@ -123818,7 +127747,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `RevisionStatus` you could get from the connection.", + "description": "The count of *all* `RevisionType` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -123840,8 +127769,8 @@ }, { "kind": "OBJECT", - "name": "CifUserRevisionStatusesByProjectRevisionCreatedByAndRevisionStatusManyToManyEdge", - "description": "A `RevisionStatus` edge in the connection, with data from `ProjectRevision`.", + "name": "CifUserRevisionTypesByProjectRevisionCreatedByAndRevisionTypeManyToManyEdge", + "description": "A `RevisionType` edge in the connection, with data from `ProjectRevision`.", "fields": [ { "name": "cursor", @@ -123857,18 +127786,18 @@ }, { "name": "node", - "description": "The `RevisionStatus` at the end of the edge.", + "description": "The `RevisionType` at the end of the edge.", "args": [], "type": { "kind": "OBJECT", - "name": "RevisionStatus", + "name": "RevisionType", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectRevisionsByRevisionStatus", + "name": "projectRevisionsByRevisionType", "description": "Reads and enables pagination through a set of `ProjectRevision`.", "args": [ { @@ -123980,12 +127909,12 @@ }, { "kind": "OBJECT", - "name": "CifUserRevisionStatusesByProjectRevisionUpdatedByAndRevisionStatusManyToManyConnection", - "description": "A connection to a list of `RevisionStatus` values, with data from `ProjectRevision`.", + "name": "CifUserRevisionTypesByProjectRevisionUpdatedByAndRevisionTypeManyToManyConnection", + "description": "A connection to a list of `RevisionType` values, with data from `ProjectRevision`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `RevisionStatus`, info from the `ProjectRevision`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `RevisionType`, info from the `ProjectRevision`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -123998,7 +127927,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserRevisionStatusesByProjectRevisionUpdatedByAndRevisionStatusManyToManyEdge", + "name": "CifUserRevisionTypesByProjectRevisionUpdatedByAndRevisionTypeManyToManyEdge", "ofType": null } } @@ -124009,7 +127938,7 @@ }, { "name": "nodes", - "description": "A list of `RevisionStatus` objects.", + "description": "A list of `RevisionType` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -124019,7 +127948,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RevisionStatus", + "name": "RevisionType", "ofType": null } } @@ -124045,7 +127974,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `RevisionStatus` you could get from the connection.", + "description": "The count of *all* `RevisionType` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -124067,8 +127996,8 @@ }, { "kind": "OBJECT", - "name": "CifUserRevisionStatusesByProjectRevisionUpdatedByAndRevisionStatusManyToManyEdge", - "description": "A `RevisionStatus` edge in the connection, with data from `ProjectRevision`.", + "name": "CifUserRevisionTypesByProjectRevisionUpdatedByAndRevisionTypeManyToManyEdge", + "description": "A `RevisionType` edge in the connection, with data from `ProjectRevision`.", "fields": [ { "name": "cursor", @@ -124084,18 +128013,18 @@ }, { "name": "node", - "description": "The `RevisionStatus` at the end of the edge.", + "description": "The `RevisionType` at the end of the edge.", "args": [], "type": { "kind": "OBJECT", - "name": "RevisionStatus", + "name": "RevisionType", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectRevisionsByRevisionStatus", + "name": "projectRevisionsByRevisionType", "description": "Reads and enables pagination through a set of `ProjectRevision`.", "args": [ { @@ -124207,12 +128136,12 @@ }, { "kind": "OBJECT", - "name": "CifUserRevisionTypesByProjectRevisionCreatedByAndRevisionTypeManyToManyConnection", - "description": "A connection to a list of `RevisionType` values, with data from `ProjectRevision`.", + "name": "CifUserSectorsByProjectArchivedByAndSectorNameManyToManyConnection", + "description": "A connection to a list of `Sector` values, with data from `Project`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `RevisionType`, info from the `ProjectRevision`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `Sector`, info from the `Project`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -124225,7 +128154,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CifUserRevisionTypesByProjectRevisionCreatedByAndRevisionTypeManyToManyEdge", + "name": "CifUserSectorsByProjectArchivedByAndSectorNameManyToManyEdge", "ofType": null } } @@ -124236,7 +128165,7 @@ }, { "name": "nodes", - "description": "A list of `RevisionType` objects.", + "description": "A list of `Sector` objects.", "args": [], "type": { "kind": "NON_NULL", @@ -124246,7 +128175,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RevisionType", + "name": "Sector", "ofType": null } } @@ -124272,7 +128201,7 @@ }, { "name": "totalCount", - "description": "The count of *all* `RevisionType` you could get from the connection.", + "description": "The count of *all* `Sector` you could get from the connection.", "args": [], "type": { "kind": "NON_NULL", @@ -124294,8 +128223,8 @@ }, { "kind": "OBJECT", - "name": "CifUserRevisionTypesByProjectRevisionCreatedByAndRevisionTypeManyToManyEdge", - "description": "A `RevisionType` edge in the connection, with data from `ProjectRevision`.", + "name": "CifUserSectorsByProjectArchivedByAndSectorNameManyToManyEdge", + "description": "A `Sector` edge in the connection, with data from `Project`.", "fields": [ { "name": "cursor", @@ -124311,473 +128240,19 @@ }, { "name": "node", - "description": "The `RevisionType` at the end of the edge.", + "description": "The `Sector` at the end of the edge.", "args": [], "type": { "kind": "OBJECT", - "name": "RevisionType", + "name": "Sector", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectRevisionsByRevisionType", - "description": "Reads and enables pagination through a set of `ProjectRevision`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectRevisionCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectRevisionFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `ProjectRevision`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProjectRevisionsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectRevisionsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CifUserRevisionTypesByProjectRevisionUpdatedByAndRevisionTypeManyToManyConnection", - "description": "A connection to a list of `RevisionType` values, with data from `ProjectRevision`.", - "fields": [ - { - "name": "edges", - "description": "A list of edges which contains the `RevisionType`, info from the `ProjectRevision`, and the cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CifUserRevisionTypesByProjectRevisionUpdatedByAndRevisionTypeManyToManyEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `RevisionType` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "RevisionType", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `RevisionType` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CifUserRevisionTypesByProjectRevisionUpdatedByAndRevisionTypeManyToManyEdge", - "description": "A `RevisionType` edge in the connection, with data from `ProjectRevision`.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `RevisionType` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "RevisionType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectRevisionsByRevisionType", - "description": "Reads and enables pagination through a set of `ProjectRevision`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectRevisionCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectRevisionFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `ProjectRevision`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProjectRevisionsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectRevisionsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CifUserSectorsByProjectArchivedByAndSectorNameManyToManyConnection", - "description": "A connection to a list of `Sector` values, with data from `Project`.", - "fields": [ - { - "name": "edges", - "description": "A list of edges which contains the `Sector`, info from the `Project`, and the cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CifUserSectorsByProjectArchivedByAndSectorNameManyToManyEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `Sector` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Sector", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `Sector` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CifUserSectorsByProjectArchivedByAndSectorNameManyToManyEdge", - "description": "A `Sector` edge in the connection, with data from `Project`.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `Sector` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Sector", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectsBySectorName", - "description": "Reads and enables pagination through a set of `Project`.", + "name": "projectsBySectorName", + "description": "Reads and enables pagination through a set of `Project`.", "args": [ { "name": "after", @@ -126149,6 +129624,47 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "INPUT_OBJECT", + "name": "CifUserToManyProjectAttachmentFilter", + "description": "A filter to be used against many `ProjectAttachment` object types. All fields are combined with a logical ‘and.’", + "fields": null, + "inputFields": [ + { + "name": "every", + "description": "Every related `ProjectAttachment` matches the filter criteria. All fields are combined with a logical ‘and.’", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectAttachmentFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "none", + "description": "No related `ProjectAttachment` matches the filter criteria. All fields are combined with a logical ‘and.’", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectAttachmentFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "some", + "description": "Some related `ProjectAttachment` matches the filter criteria. All fields are combined with a logical ‘and.’", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectAttachmentFilter", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, { "kind": "INPUT_OBJECT", "name": "CifUserToManyProjectContactFilter", @@ -128102,6 +131618,42 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "PROJECT_ATTACHMENTS_BY_ARCHIVED_BY__COUNT_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_ATTACHMENTS_BY_ARCHIVED_BY__COUNT_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_ATTACHMENTS_BY_CREATED_BY__COUNT_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_ATTACHMENTS_BY_CREATED_BY__COUNT_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_ATTACHMENTS_BY_UPDATED_BY__COUNT_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_ATTACHMENTS_BY_UPDATED_BY__COUNT_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "PROJECT_CONTACTS_BY_ARCHIVED_BY__COUNT_ASC", "description": null, @@ -132727,30 +136279,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "projectByProjectId", - "description": "Reads a single `Project` that is related to this `Attachment`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Project", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectStatusByProjectStatusId", - "description": "Reads a single `ProjectStatus` that is related to this `Attachment`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectStatus", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "query", "description": "Our root query field type. Allows us to run any query from our mutation payload.", @@ -134608,6 +138136,179 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "INPUT_OBJECT", + "name": "CreateProjectAttachmentInput", + "description": "All input for the create `ProjectAttachment` mutation.", + "fields": null, + "inputFields": [ + { + "name": "clientMutationId", + "description": "An arbitrary string value with no semantic meaning. Will be included in the\npayload verbatim. May be used to track mutations by the client.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectAttachment", + "description": "The `ProjectAttachment` to be created by this mutation.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectAttachmentInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CreateProjectAttachmentPayload", + "description": "The output of our create `ProjectAttachment` mutation.", + "fields": [ + { + "name": "attachmentByAttachmentId", + "description": "Reads a single `Attachment` that is related to this `ProjectAttachment`.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Attachment", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cifUserByArchivedBy", + "description": "Reads a single `CifUser` that is related to this `ProjectAttachment`.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "CifUser", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cifUserByCreatedBy", + "description": "Reads a single `CifUser` that is related to this `ProjectAttachment`.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "CifUser", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cifUserByUpdatedBy", + "description": "Reads a single `CifUser` that is related to this `ProjectAttachment`.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "CifUser", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "clientMutationId", + "description": "The exact same `clientMutationId` that was provided in the mutation input,\nunchanged and unused. May be used by a client to track mutations.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectAttachment", + "description": "The `ProjectAttachment` that was created by this mutation.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectAttachment", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectAttachmentEdge", + "description": "An edge for our `ProjectAttachment`. May be used by Relay 1.", + "args": [ + { + "name": "orderBy", + "description": "The method to use when ordering `ProjectAttachment`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectAttachmentsOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], + "type": { + "kind": "OBJECT", + "name": "ProjectAttachmentsEdge", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectByProjectId", + "description": "Reads a single `Project` that is related to this `ProjectAttachment`.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "query", + "description": "Our root query field type. Allows us to run any query from our mutation payload.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, { "kind": "INPUT_OBJECT", "name": "CreateProjectContactInput", @@ -137523,30 +141224,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "projectByProjectId", - "description": "Reads a single `Project` that is related to this `Attachment`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Project", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectStatusByProjectStatusId", - "description": "Reads a single `ProjectStatus` that is related to this `Attachment`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectStatus", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "query", "description": "Our root query field type. Allows us to run any query from our mutation payload.", @@ -139899,6 +143576,226 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "INPUT_OBJECT", + "name": "DeleteProjectAttachmentByRowIdInput", + "description": "All input for the `deleteProjectAttachmentByRowId` mutation.", + "fields": null, + "inputFields": [ + { + "name": "clientMutationId", + "description": "An arbitrary string value with no semantic meaning. Will be included in the\npayload verbatim. May be used to track mutations by the client.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "rowId", + "description": "Unique ID for the project attachment record", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "DeleteProjectAttachmentInput", + "description": "All input for the `deleteProjectAttachment` mutation.", + "fields": null, + "inputFields": [ + { + "name": "clientMutationId", + "description": "An arbitrary string value with no semantic meaning. Will be included in the\npayload verbatim. May be used to track mutations by the client.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id", + "description": "The globally unique `ID` which will identify a single `ProjectAttachment` to be deleted.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DeleteProjectAttachmentPayload", + "description": "The output of our delete `ProjectAttachment` mutation.", + "fields": [ + { + "name": "attachmentByAttachmentId", + "description": "Reads a single `Attachment` that is related to this `ProjectAttachment`.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Attachment", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cifUserByArchivedBy", + "description": "Reads a single `CifUser` that is related to this `ProjectAttachment`.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "CifUser", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cifUserByCreatedBy", + "description": "Reads a single `CifUser` that is related to this `ProjectAttachment`.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "CifUser", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cifUserByUpdatedBy", + "description": "Reads a single `CifUser` that is related to this `ProjectAttachment`.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "CifUser", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "clientMutationId", + "description": "The exact same `clientMutationId` that was provided in the mutation input,\nunchanged and unused. May be used by a client to track mutations.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deletedProjectAttachmentId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectAttachment", + "description": "The `ProjectAttachment` that was deleted by this mutation.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectAttachment", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectAttachmentEdge", + "description": "An edge for our `ProjectAttachment`. May be used by Relay 1.", + "args": [ + { + "name": "orderBy", + "description": "The method to use when ordering `ProjectAttachment`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectAttachmentsOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], + "type": { + "kind": "OBJECT", + "name": "ProjectAttachmentsEdge", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectByProjectId", + "description": "Reads a single `Project` that is related to this `ProjectAttachment`.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "query", + "description": "Our root query field type. Allows us to run any query from our mutation payload.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, { "kind": "INPUT_OBJECT", "name": "DeleteProjectContactByRowIdInput", @@ -142244,6 +146141,191 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "INPUT_OBJECT", + "name": "DiscardProjectAttachmentFormChangeInput", + "description": "All input for the `discardProjectAttachmentFormChange` mutation.", + "fields": null, + "inputFields": [ + { + "name": "clientMutationId", + "description": "An arbitrary string value with no semantic meaning. Will be included in the\npayload verbatim. May be used to track mutations by the client.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "formChangeId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DiscardProjectAttachmentFormChangePayload", + "description": "The output of our `discardProjectAttachmentFormChange` mutation.", + "fields": [ + { + "name": "changeStatusByChangeStatus", + "description": "Reads a single `ChangeStatus` that is related to this `FormChange`.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ChangeStatus", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cifUserByCreatedBy", + "description": "Reads a single `CifUser` that is related to this `FormChange`.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "CifUser", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cifUserByUpdatedBy", + "description": "Reads a single `CifUser` that is related to this `FormChange`.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "CifUser", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "clientMutationId", + "description": "The exact same `clientMutationId` that was provided in the mutation input,\nunchanged and unused. May be used by a client to track mutations.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "formByJsonSchemaName", + "description": "Reads a single `Form` that is related to this `FormChange`.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Form", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "formChange", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "FormChange", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "formChangeByPreviousFormChangeId", + "description": "Reads a single `FormChange` that is related to this `FormChange`.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "FormChange", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "formChangeEdge", + "description": "An edge for our `FormChange`. May be used by Relay 1.", + "args": [ + { + "name": "orderBy", + "description": "The method to use when ordering `FormChange`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FormChangesOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], + "type": { + "kind": "OBJECT", + "name": "FormChangesEdge", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectRevisionByProjectRevisionId", + "description": "Reads a single `ProjectRevision` that is related to this `FormChange`.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectRevision", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "query", + "description": "Our root query field type. Allows us to run any query from our mutation payload.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, { "kind": "OBJECT", "name": "EmissionIntensityPaymentPercent", @@ -146816,6 +150898,95 @@ "name": "FormChange", "description": "Table tracking individual changes to database records", "fields": [ + { + "name": "actualPerformanceMilestoneAmount", + "description": " Computed column to return the actual performance milestone amount.\n Calculation:\n - Actual Performance Milestone Amount = (Maximum Performance Milestone Amount * Payment Percentage Of Performance Milestone Amount) / 100\n - Maximum Performance Milestone Amount is Holdback Amount To Date on front end code\n", + "args": [], + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "anticipatedFundingAmountPerFiscalYear", + "description": "Computed column to calculate the anticipated amount of funding for a project by fiscal year", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SumByFiscalYearFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SumByFiscalYearsConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "asEmissionIntensityReport", "description": null, @@ -146840,6 +151011,18 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "asProjectAttachment", + "description": "Computed column returns data from the new_form_data column as if it were an attachment record to allow graph traversal via the foreign keys.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectAttachment", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "asProjectContact", "description": "Computed column returns data from the new_form_data column as if it were a project_contact record to allow graph traversal via the foreign keys.", @@ -147675,7 +151858,7 @@ }, { "name": "holdbackAmountToDate", - "description": "Computed column returns sum all holdback amounts for a project. Preference for value selection is adjustedHoldbackAmount > calculuatedHoldbackAmount > amount calculated via maximum milestone amount", + "description": "Computed column returns sum all holdback amounts for a project. If any of the milestones have null values for adjustedHoldbackAmount and calculatedHoldbackAmount, then null is returned. Preference for value selection is adjustedHoldbackAmount > calculatedHoldbackAmount > amount calculated via maximum milestone amount", "args": [], "type": { "kind": "SCALAR", @@ -147756,6 +151939,18 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "maximumPerformanceMilestoneAmount", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "netPaymentsToDate", "description": "Computed column returns cumulative sum of all net payments. Preference for value selection is adjustedNetAmount > calculuatedNetAmount > amount calculated via maximum milestone amount", @@ -147976,6 +152171,30 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "proponentsSharePercentage", + "description": "Computed column returns the calculated proponents share percentage.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "rank", + "description": "Computed column to determine the rank of a project", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "reportingRequirementStatus", "description": "A computed column to return the status for a reporting requirement form_change record based on the report_due_date and submitted_date", @@ -148004,6 +152223,18 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "totalProjectValue", + "description": " Computed column to return the total project value.\n Calculation:\n - Total Project Value = Maximum Funding Amount + Proponent Cost + approved Additional Funding Amount(s)\n", + "args": [], + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "updatedAt", "description": "updated at timestamp", @@ -148904,6 +153135,16 @@ "description": "A filter to be used against `FormChange` object types. All fields are combined with a logical ‘and.’", "fields": null, "inputFields": [ + { + "name": "actualPerformanceMilestoneAmount", + "description": "Filter by the object’s `actualPerformanceMilestoneAmount` field.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BigFloatFilter", + "ofType": null + }, + "defaultValue": null + }, { "name": "and", "description": "Checks for all expressions in this list.", @@ -149182,6 +153423,16 @@ }, "defaultValue": null }, + { + "name": "maximumPerformanceMilestoneAmount", + "description": "Filter by the object’s `maximumPerformanceMilestoneAmount` field.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BigFloatFilter", + "ofType": null + }, + "defaultValue": null + }, { "name": "netPaymentsToDate", "description": "Filter by the object’s `netPaymentsToDate` field.", @@ -149290,6 +153541,26 @@ }, "defaultValue": null }, + { + "name": "proponentsSharePercentage", + "description": "Filter by the object’s `proponentsSharePercentage` field.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BigFloatFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "rank", + "description": "Filter by the object’s `rank` field.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + }, + "defaultValue": null + }, { "name": "reportingRequirementStatus", "description": "Filter by the object’s `reportingRequirementStatus` field.", @@ -149310,6 +153581,16 @@ }, "defaultValue": null }, + { + "name": "totalProjectValue", + "description": "Filter by the object’s `totalProjectValue` field.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BigFloatFilter", + "ofType": null + }, + "defaultValue": null + }, { "name": "updatedAt", "description": "Filter by the object’s `updatedAt` field.", @@ -166962,6 +171243,102 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "INPUT_OBJECT", + "name": "JsonbMinusInput", + "description": "All input for the `jsonbMinus` mutation.", + "fields": null, + "inputFields": [ + { + "name": "clientMutationId", + "description": "An arbitrary string value with no semantic meaning. Will be included in the\npayload verbatim. May be used to track mutations by the client.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "minuend", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "subtrahend", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "JsonbMinusPayload", + "description": "The output of our `jsonbMinus` mutation.", + "fields": [ + { + "name": "clientMutationId", + "description": "The exact same `clientMutationId` that was provided in the mutation input,\nunchanged and unused. May be used by a client to track mutations.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "json", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "query", + "description": "Our root query field type. Allows us to run any query from our mutation payload.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, { "kind": "OBJECT", "name": "KeycloakJwt", @@ -169828,33 +174205,6 @@ "name": "Mutation", "description": "The root mutation type which contains root level fields which mutate data.", "fields": [ - { - "name": "addAdditionalFundingSourceToRevision", - "description": null, - "args": [ - { - "name": "input", - "description": "The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AddAdditionalFundingSourceToRevisionInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "AddAdditionalFundingSourceToRevisionPayload", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "addContactToRevision", "description": null, @@ -169883,8 +174233,8 @@ "deprecationReason": null }, { - "name": "addEmissionIntensityReportToRevision", - "description": null, + "name": "addProjectAttachmentToRevision", + "description": " Creates a new project_attachment form_change record for the given revision_id and attachment_id.\n", "args": [ { "name": "input", @@ -169894,7 +174244,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "AddEmissionIntensityReportToRevisionInput", + "name": "AddProjectAttachmentToRevisionInput", "ofType": null } }, @@ -169903,7 +174253,7 @@ ], "type": { "kind": "OBJECT", - "name": "AddEmissionIntensityReportToRevisionPayload", + "name": "AddProjectAttachmentToRevisionPayload", "ofType": null }, "isDeprecated": false, @@ -170395,6 +174745,33 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "createProjectAttachment", + "description": "Creates a single `ProjectAttachment`.", + "args": [ + { + "name": "input", + "description": "The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateProjectAttachmentInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "CreateProjectAttachmentPayload", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "createProjectContact", "description": "Creates a single `ProjectContact`.", @@ -171556,6 +175933,60 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "deleteProjectAttachment", + "description": "Deletes a single `ProjectAttachment` using its globally unique id.", + "args": [ + { + "name": "input", + "description": "The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteProjectAttachmentInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "DeleteProjectAttachmentPayload", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteProjectAttachmentByRowId", + "description": "Deletes a single `ProjectAttachment` using a unique key.", + "args": [ + { + "name": "input", + "description": "The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteProjectAttachmentByRowIdInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "DeleteProjectAttachmentPayload", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "deleteProjectContact", "description": "Deletes a single `ProjectContact` using its globally unique id.", @@ -172204,6 +176635,33 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "discardProjectAttachmentFormChange", + "description": null, + "args": [ + { + "name": "input", + "description": "The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DiscardProjectAttachmentFormChangeInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "DiscardProjectAttachmentFormChangePayload", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "generateAnnualReports", "description": " Custom mutation to generate annual reports for a revision between emissions intensity report_due_date and project_assets_life_end_date.\n", @@ -172258,6 +176716,33 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "jsonbMinus", + "description": null, + "args": [ + { + "name": "input", + "description": "The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "JsonbMinusInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "JsonbMinusPayload", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "stageDirtyFormChanges", "description": null, @@ -173230,6 +177715,60 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "updateProjectAttachment", + "description": "Updates a single `ProjectAttachment` using its globally unique id and a patch.", + "args": [ + { + "name": "input", + "description": "The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateProjectAttachmentInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateProjectAttachmentPayload", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateProjectAttachmentByRowId", + "description": "Updates a single `ProjectAttachment` using a unique key and a patch.", + "args": [ + { + "name": "input", + "description": "The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateProjectAttachmentByRowIdInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateProjectAttachmentPayload", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "updateProjectContact", "description": "Updates a single `ProjectContact` using its globally unique id and a patch.", @@ -174005,6 +178544,11 @@ "name": "Project", "ofType": null }, + { + "kind": "OBJECT", + "name": "ProjectAttachment", + "ofType": null + }, { "kind": "OBJECT", "name": "ProjectContact", @@ -180025,7 +184569,7 @@ "deprecationReason": null }, { - "name": "attachmentsByProjectId", + "name": "attachmentsByProjectAttachmentProjectIdAndAttachmentId", "description": "Reads and enables pagination through a set of `Attachment`.", "args": [ { @@ -180086,7 +184630,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -180132,7 +184676,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AttachmentsConnection", + "name": "ProjectAttachmentsByProjectAttachmentProjectIdAndAttachmentIdManyToManyConnection", "ofType": null } }, @@ -180636,7 +185180,7 @@ "deprecationReason": null }, { - "name": "cifUsersByAttachmentProjectIdAndArchivedBy", + "name": "cifUsersByFundingParameterProjectIdAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -180743,7 +185287,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectCifUsersByAttachmentProjectIdAndArchivedByManyToManyConnection", + "name": "ProjectCifUsersByFundingParameterProjectIdAndArchivedByManyToManyConnection", "ofType": null } }, @@ -180751,7 +185295,7 @@ "deprecationReason": null }, { - "name": "cifUsersByAttachmentProjectIdAndCreatedBy", + "name": "cifUsersByFundingParameterProjectIdAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -180858,7 +185402,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectCifUsersByAttachmentProjectIdAndCreatedByManyToManyConnection", + "name": "ProjectCifUsersByFundingParameterProjectIdAndCreatedByManyToManyConnection", "ofType": null } }, @@ -180866,7 +185410,7 @@ "deprecationReason": null }, { - "name": "cifUsersByAttachmentProjectIdAndUpdatedBy", + "name": "cifUsersByFundingParameterProjectIdAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -180973,7 +185517,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectCifUsersByAttachmentProjectIdAndUpdatedByManyToManyConnection", + "name": "ProjectCifUsersByFundingParameterProjectIdAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -180981,7 +185525,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFundingParameterProjectIdAndArchivedBy", + "name": "cifUsersByProjectAttachmentProjectIdAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -181088,7 +185632,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectCifUsersByFundingParameterProjectIdAndArchivedByManyToManyConnection", + "name": "ProjectCifUsersByProjectAttachmentProjectIdAndArchivedByManyToManyConnection", "ofType": null } }, @@ -181096,7 +185640,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFundingParameterProjectIdAndCreatedBy", + "name": "cifUsersByProjectAttachmentProjectIdAndCreatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -181203,7 +185747,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectCifUsersByFundingParameterProjectIdAndCreatedByManyToManyConnection", + "name": "ProjectCifUsersByProjectAttachmentProjectIdAndCreatedByManyToManyConnection", "ofType": null } }, @@ -181211,7 +185755,7 @@ "deprecationReason": null }, { - "name": "cifUsersByFundingParameterProjectIdAndUpdatedBy", + "name": "cifUsersByProjectAttachmentProjectIdAndUpdatedBy", "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { @@ -181318,7 +185862,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectCifUsersByFundingParameterProjectIdAndUpdatedByManyToManyConnection", + "name": "ProjectCifUsersByProjectAttachmentProjectIdAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -183043,6 +187587,18 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "milestoneStatus", + "description": "Computed column returns the status of all milestones", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "nextMilestoneDueDate", "description": "Computed column to return the next milestone due date for a given project", @@ -183084,8 +187640,20 @@ "deprecationReason": null }, { - "name": "pendingProjectRevision", - "description": "Returns the pending project revision for the project", + "name": "pendingAmendment", + "description": "Returns the pending amendment for the project", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectRevision", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pendingGeneralRevision", + "description": "Returns the pending general revision for the project", "args": [], "type": { "kind": "OBJECT", @@ -183108,8 +187676,8 @@ "deprecationReason": null }, { - "name": "projectContactsByProjectId", - "description": "Reads and enables pagination through a set of `ProjectContact`.", + "name": "projectAttachmentsByProjectId", + "description": "Reads and enables pagination through a set of `ProjectAttachment`.", "args": [ { "name": "after", @@ -183136,7 +187704,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactCondition", + "name": "ProjectAttachmentCondition", "ofType": null }, "defaultValue": null @@ -183146,7 +187714,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectContactFilter", + "name": "ProjectAttachmentFilter", "ofType": null }, "defaultValue": null @@ -183193,7 +187761,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectContact`.", + "description": "The method to use when ordering `ProjectAttachment`.", "type": { "kind": "LIST", "name": null, @@ -183202,7 +187770,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectContactsOrderBy", + "name": "ProjectAttachmentsOrderBy", "ofType": null } } @@ -183215,7 +187783,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectContactsConnection", + "name": "ProjectAttachmentsConnection", "ofType": null } }, @@ -183223,8 +187791,8 @@ "deprecationReason": null }, { - "name": "projectManagerLabelsByProjectManagerProjectIdAndProjectManagerLabelId", - "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", + "name": "projectContactsByProjectId", + "description": "Reads and enables pagination through a set of `ProjectContact`.", "args": [ { "name": "after", @@ -183251,7 +187819,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelCondition", + "name": "ProjectContactCondition", "ofType": null }, "defaultValue": null @@ -183261,7 +187829,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerLabelFilter", + "name": "ProjectContactFilter", "ofType": null }, "defaultValue": null @@ -183284,7 +187852,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -183308,7 +187876,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManagerLabel`.", + "description": "The method to use when ordering `ProjectContact`.", "type": { "kind": "LIST", "name": null, @@ -183317,7 +187885,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectManagerLabelsOrderBy", + "name": "ProjectContactsOrderBy", "ofType": null } } @@ -183330,7 +187898,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectProjectManagerLabelsByProjectManagerProjectIdAndProjectManagerLabelIdManyToManyConnection", + "name": "ProjectContactsConnection", "ofType": null } }, @@ -183338,8 +187906,8 @@ "deprecationReason": null }, { - "name": "projectManagersByProjectId", - "description": "Reads and enables pagination through a set of `ProjectManager`.", + "name": "projectManagerLabelsByProjectManagerProjectIdAndProjectManagerLabelId", + "description": "Reads and enables pagination through a set of `ProjectManagerLabel`.", "args": [ { "name": "after", @@ -183366,7 +187934,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerCondition", + "name": "ProjectManagerLabelCondition", "ofType": null }, "defaultValue": null @@ -183376,7 +187944,122 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectManagerFilter", + "name": "ProjectManagerLabelFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `ProjectManagerLabel`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectManagerLabelsOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectProjectManagerLabelsByProjectManagerProjectIdAndProjectManagerLabelIdManyToManyConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectManagersByProjectId", + "description": "Reads and enables pagination through a set of `ProjectManager`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectManagerCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectManagerFilter", "ofType": null }, "defaultValue": null @@ -183602,8 +188285,48 @@ "deprecationReason": null }, { - "name": "projectStatusesByAttachmentProjectIdAndProjectStatusId", - "description": "Reads and enables pagination through a set of `ProjectStatus`.", + "name": "projectType", + "description": "The type of the project (e.g. fuel switching)", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectTypeByProjectType", + "description": "Reads a single `ProjectType` that is related to this `Project`.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "proposalReference", + "description": "Unique identifier internal to the CIF team. As of the 2022 RFPs, the current format is YYYY-RFP-0-ABCD-000. Projects for the 2019 and 2020 RFPs may use a different format.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reportTypesByReportingRequirementProjectIdAndReportType", + "description": "Reads and enables pagination through a set of `ReportType`.", "args": [ { "name": "after", @@ -183630,7 +188353,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusCondition", + "name": "ReportTypeCondition", "ofType": null }, "defaultValue": null @@ -183640,7 +188363,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectStatusFilter", + "name": "ReportTypeFilter", "ofType": null }, "defaultValue": null @@ -183687,7 +188410,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectStatus`.", + "description": "The method to use when ordering `ReportType`.", "type": { "kind": "LIST", "name": null, @@ -183696,7 +188419,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectStatusesOrderBy", + "name": "ReportTypesOrderBy", "ofType": null } } @@ -183709,7 +188432,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectProjectStatusesByAttachmentProjectIdAndProjectStatusIdManyToManyConnection", + "name": "ProjectReportTypesByReportingRequirementProjectIdAndReportTypeManyToManyConnection", "ofType": null } }, @@ -183717,39 +188440,114 @@ "deprecationReason": null }, { - "name": "projectType", - "description": "The type of the project (e.g. fuel switching)", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectTypeByProjectType", - "description": "Reads a single `ProjectType` that is related to this `Project`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "proposalReference", - "description": "Unique identifier internal to the CIF team. As of the 2022 RFPs, the current format is YYYY-RFP-0-ABCD-000. Projects for the 2019 and 2020 RFPs may use a different format.", - "args": [], + "name": "reportingRequirementsByProjectId", + "description": "Reads and enables pagination through a set of `ReportingRequirement`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ReportingRequirementCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ReportingRequirementFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "INHERIT" + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `ReportingRequirement`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ReportingRequirementsOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "ReportingRequirementsConnection", "ofType": null } }, @@ -183757,8 +188555,8 @@ "deprecationReason": null }, { - "name": "reportTypesByReportingRequirementProjectIdAndReportType", - "description": "Reads and enables pagination through a set of `ReportType`.", + "name": "revisionStatusesByProjectRevisionProjectIdAndRevisionStatus", + "description": "Reads and enables pagination through a set of `RevisionStatus`.", "args": [ { "name": "after", @@ -183785,7 +188583,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportTypeCondition", + "name": "RevisionStatusCondition", "ofType": null }, "defaultValue": null @@ -183795,7 +188593,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportTypeFilter", + "name": "RevisionStatusFilter", "ofType": null }, "defaultValue": null @@ -183842,7 +188640,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportType`.", + "description": "The method to use when ordering `RevisionStatus`.", "type": { "kind": "LIST", "name": null, @@ -183851,7 +188649,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportTypesOrderBy", + "name": "RevisionStatusesOrderBy", "ofType": null } } @@ -183864,7 +188662,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectReportTypesByReportingRequirementProjectIdAndReportTypeManyToManyConnection", + "name": "ProjectRevisionStatusesByProjectRevisionProjectIdAndRevisionStatusManyToManyConnection", "ofType": null } }, @@ -183872,8 +188670,8 @@ "deprecationReason": null }, { - "name": "reportingRequirementsByProjectId", - "description": "Reads and enables pagination through a set of `ReportingRequirement`.", + "name": "revisionTypesByProjectRevisionProjectIdAndRevisionType", + "description": "Reads and enables pagination through a set of `RevisionType`.", "args": [ { "name": "after", @@ -183900,7 +188698,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementCondition", + "name": "RevisionTypeCondition", "ofType": null }, "defaultValue": null @@ -183910,7 +188708,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ReportingRequirementFilter", + "name": "RevisionTypeFilter", "ofType": null }, "defaultValue": null @@ -183933,7 +188731,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -183957,7 +188755,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ReportingRequirement`.", + "description": "The method to use when ordering `RevisionType`.", "type": { "kind": "LIST", "name": null, @@ -183966,7 +188764,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ReportingRequirementsOrderBy", + "name": "RevisionTypesOrderBy", "ofType": null } } @@ -183979,7 +188777,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ReportingRequirementsConnection", + "name": "ProjectRevisionTypesByProjectRevisionProjectIdAndRevisionTypeManyToManyConnection", "ofType": null } }, @@ -183987,8 +188785,220 @@ "deprecationReason": null }, { - "name": "revisionStatusesByProjectRevisionProjectIdAndRevisionStatus", - "description": "Reads and enables pagination through a set of `RevisionStatus`.", + "name": "rowId", + "description": "Unique ID for the project", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "score", + "description": "The score of the project after evaluation by the CIF team", + "args": [], + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sectorBySectorName", + "description": "Reads a single `Sector` that is related to this `Project`.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Sector", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sectorName", + "description": "The industry sector this project relates to", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "summary", + "description": "Summary of the project", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalFundingRequest", + "description": "The total amount of funding requested for the project", + "args": [], + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "updated at timestamp", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedBy", + "description": "updated by user id", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectAdditionalFundingSourceStatusesByAdditionalFundingSourceProjectIdAndStatusManyToManyConnection", + "description": "A connection to a list of `AdditionalFundingSourceStatus` values, with data from `AdditionalFundingSource`.", + "fields": [ + { + "name": "edges", + "description": "A list of edges which contains the `AdditionalFundingSourceStatus`, info from the `AdditionalFundingSource`, and the cursor to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectAdditionalFundingSourceStatusesByAdditionalFundingSourceProjectIdAndStatusManyToManyEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": "A list of `AdditionalFundingSourceStatus` objects.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AdditionalFundingSourceStatus", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": "The count of *all* `AdditionalFundingSourceStatus` you could get from the connection.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectAdditionalFundingSourceStatusesByAdditionalFundingSourceProjectIdAndStatusManyToManyEdge", + "description": "A `AdditionalFundingSourceStatus` edge in the connection, with data from `AdditionalFundingSource`.", + "fields": [ + { + "name": "additionalFundingSourcesByStatus", + "description": "Reads and enables pagination through a set of `AdditionalFundingSource`.", "args": [ { "name": "after", @@ -184015,7 +189025,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionStatusCondition", + "name": "AdditionalFundingSourceCondition", "ofType": null }, "defaultValue": null @@ -184025,7 +189035,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "RevisionStatusFilter", + "name": "AdditionalFundingSourceFilter", "ofType": null }, "defaultValue": null @@ -184072,7 +189082,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `RevisionStatus`.", + "description": "The method to use when ordering `AdditionalFundingSource`.", "type": { "kind": "LIST", "name": null, @@ -184081,7 +189091,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "RevisionStatusesOrderBy", + "name": "AdditionalFundingSourcesOrderBy", "ofType": null } } @@ -184094,7 +189104,234 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectRevisionStatusesByProjectRevisionProjectIdAndRevisionStatusManyToManyConnection", + "name": "AdditionalFundingSourcesConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": "The `AdditionalFundingSourceStatus` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "AdditionalFundingSourceStatus", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectAttachment", + "description": "Join table to track assignment of attachments to projects", + "fields": [ + { + "name": "archivedAt", + "description": "archived at timestamp", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedBy", + "description": "archived by user id", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "attachmentByAttachmentId", + "description": "Reads a single `Attachment` that is related to this `ProjectAttachment`.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Attachment", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "attachmentId", + "description": "Foreign key to the attachment", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cifUserByArchivedBy", + "description": "Reads a single `CifUser` that is related to this `ProjectAttachment`.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "CifUser", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cifUserByCreatedBy", + "description": "Reads a single `CifUser` that is related to this `ProjectAttachment`.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "CifUser", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cifUserByUpdatedBy", + "description": "Reads a single `CifUser` that is related to this `ProjectAttachment`.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "CifUser", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "created at timestamp", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdBy", + "description": "created by user id", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "A globally unique identifier. Can be used in various places throughout the system to identify this single value.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectByProjectId", + "description": "Reads a single `Project` that is related to this `ProjectAttachment`.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectId", + "description": "Foreign key to the project", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "rowId", + "description": "Unique ID for the project attachment record", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "updated at timestamp", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", "ofType": null } }, @@ -184102,475 +189339,1905 @@ "deprecationReason": null }, { - "name": "revisionTypesByProjectRevisionProjectIdAndRevisionType", - "description": "Reads and enables pagination through a set of `RevisionType`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "RevisionTypeCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "RevisionTypeFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `RevisionType`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "RevisionTypesOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectRevisionTypesByProjectRevisionProjectIdAndRevisionTypeManyToManyConnection", - "ofType": null - } - }, + "name": "updatedBy", + "description": "updated by user id", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectAttachmentCondition", + "description": "A condition to be used against `ProjectAttachment` object types. All fields are\ntested for equality and combined with a logical ‘and.’", + "fields": null, + "inputFields": [ + { + "name": "archivedAt", + "description": "Checks for equality with the object’s `archivedAt` field.", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "archivedBy", + "description": "Checks for equality with the object’s `archivedBy` field.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "attachmentId", + "description": "Checks for equality with the object’s `attachmentId` field.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "Checks for equality with the object’s `createdAt` field.", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdBy", + "description": "Checks for equality with the object’s `createdBy` field.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectId", + "description": "Checks for equality with the object’s `projectId` field.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "rowId", + "description": "Checks for equality with the object’s `rowId` field.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": "Checks for equality with the object’s `updatedAt` field.", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedBy", + "description": "Checks for equality with the object’s `updatedBy` field.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectAttachmentFilter", + "description": "A filter to be used against `ProjectAttachment` object types. All fields are combined with a logical ‘and.’", + "fields": null, + "inputFields": [ + { + "name": "and", + "description": "Checks for all expressions in this list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectAttachmentFilter", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "archivedAt", + "description": "Filter by the object’s `archivedAt` field.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "archivedBy", + "description": "Filter by the object’s `archivedBy` field.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "attachmentByAttachmentId", + "description": "Filter by the object’s `attachmentByAttachmentId` relation.", + "type": { + "kind": "INPUT_OBJECT", + "name": "AttachmentFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "attachmentId", + "description": "Filter by the object’s `attachmentId` field.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "cifUserByArchivedBy", + "description": "Filter by the object’s `cifUserByArchivedBy` relation.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CifUserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "cifUserByArchivedByExists", + "description": "A related `cifUserByArchivedBy` exists.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "cifUserByCreatedBy", + "description": "Filter by the object’s `cifUserByCreatedBy` relation.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CifUserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "cifUserByCreatedByExists", + "description": "A related `cifUserByCreatedBy` exists.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "cifUserByUpdatedBy", + "description": "Filter by the object’s `cifUserByUpdatedBy` relation.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CifUserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "cifUserByUpdatedByExists", + "description": "A related `cifUserByUpdatedBy` exists.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "Filter by the object’s `createdAt` field.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdBy", + "description": "Filter by the object’s `createdBy` field.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "not", + "description": "Negates the expression.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectAttachmentFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "or", + "description": "Checks for any expressions in this list.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectAttachmentFilter", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "projectByProjectId", + "description": "Filter by the object’s `projectByProjectId` relation.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectId", + "description": "Filter by the object’s `projectId` field.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "rowId", + "description": "Filter by the object’s `rowId` field.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": "Filter by the object’s `updatedAt` field.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedBy", + "description": "Filter by the object’s `updatedBy` field.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectAttachmentInput", + "description": "An input for mutations affecting `ProjectAttachment`", + "fields": null, + "inputFields": [ + { + "name": "archivedAt", + "description": "archived at timestamp", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "archivedBy", + "description": "archived by user id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "attachmentId", + "description": "Foreign key to the attachment", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "created at timestamp", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdBy", + "description": "created by user id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectId", + "description": "Foreign key to the project", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": "updated at timestamp", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedBy", + "description": "updated by user id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectAttachmentPatch", + "description": "Represents an update to a `ProjectAttachment`. Fields that are set will be updated.", + "fields": null, + "inputFields": [ + { + "name": "archivedAt", + "description": "archived at timestamp", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "archivedBy", + "description": "archived by user id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "attachmentId", + "description": "Foreign key to the attachment", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "created at timestamp", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdBy", + "description": "created by user id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectId", + "description": "Foreign key to the project", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": "updated at timestamp", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedBy", + "description": "updated by user id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectAttachmentsByProjectAttachmentProjectIdAndAttachmentIdManyToManyConnection", + "description": "A connection to a list of `Attachment` values, with data from `ProjectAttachment`.", + "fields": [ + { + "name": "edges", + "description": "A list of edges which contains the `Attachment`, info from the `ProjectAttachment`, and the cursor to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectAttachmentsByProjectAttachmentProjectIdAndAttachmentIdManyToManyEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": "A list of `Attachment` objects.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Attachment", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": "The count of *all* `Attachment` you could get from the connection.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectAttachmentsByProjectAttachmentProjectIdAndAttachmentIdManyToManyEdge", + "description": "A `Attachment` edge in the connection, with data from `ProjectAttachment`.", + "fields": [ + { + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": "The `Attachment` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Attachment", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectAttachmentsByAttachmentId", + "description": "Reads and enables pagination through a set of `ProjectAttachment`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectAttachmentCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectAttachmentFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `ProjectAttachment`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectAttachmentsOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectAttachmentsConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectAttachmentsConnection", + "description": "A connection to a list of `ProjectAttachment` values.", + "fields": [ + { + "name": "edges", + "description": "A list of edges which contains the `ProjectAttachment` and cursor to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectAttachmentsEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": "A list of `ProjectAttachment` objects.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectAttachment", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": "The count of *all* `ProjectAttachment` you could get from the connection.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectAttachmentsEdge", + "description": "A `ProjectAttachment` edge in the connection.", + "fields": [ + { + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": "The `ProjectAttachment` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectAttachment", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "ProjectAttachmentsOrderBy", + "description": "Methods to use when ordering `ProjectAttachment`.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "ARCHIVED_AT_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ARCHIVED_AT_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ARCHIVED_BY_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ARCHIVED_BY_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ATTACHMENT_BY_ATTACHMENT_ID__ARCHIVED_AT_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ATTACHMENT_BY_ATTACHMENT_ID__ARCHIVED_AT_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ATTACHMENT_BY_ATTACHMENT_ID__ARCHIVED_BY_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ATTACHMENT_BY_ATTACHMENT_ID__ARCHIVED_BY_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ATTACHMENT_BY_ATTACHMENT_ID__CREATED_AT_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ATTACHMENT_BY_ATTACHMENT_ID__CREATED_AT_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ATTACHMENT_BY_ATTACHMENT_ID__CREATED_BY_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ATTACHMENT_BY_ATTACHMENT_ID__CREATED_BY_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ATTACHMENT_BY_ATTACHMENT_ID__DESCRIPTION_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ATTACHMENT_BY_ATTACHMENT_ID__DESCRIPTION_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ATTACHMENT_BY_ATTACHMENT_ID__FILE_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ATTACHMENT_BY_ATTACHMENT_ID__FILE_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ATTACHMENT_BY_ATTACHMENT_ID__FILE_NAME_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ATTACHMENT_BY_ATTACHMENT_ID__FILE_NAME_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ATTACHMENT_BY_ATTACHMENT_ID__FILE_SIZE_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ATTACHMENT_BY_ATTACHMENT_ID__FILE_SIZE_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ATTACHMENT_BY_ATTACHMENT_ID__FILE_TYPE_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ATTACHMENT_BY_ATTACHMENT_ID__FILE_TYPE_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ATTACHMENT_BY_ATTACHMENT_ID__ID_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ATTACHMENT_BY_ATTACHMENT_ID__ID_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ATTACHMENT_BY_ATTACHMENT_ID__UPDATED_AT_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ATTACHMENT_BY_ATTACHMENT_ID__UPDATED_AT_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ATTACHMENT_BY_ATTACHMENT_ID__UPDATED_BY_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ATTACHMENT_BY_ATTACHMENT_ID__UPDATED_BY_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ATTACHMENT_ID_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ATTACHMENT_ID_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_ARCHIVED_BY__ALLOW_SUB_UPDATE_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_ARCHIVED_BY__ALLOW_SUB_UPDATE_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_ARCHIVED_BY__ARCHIVED_AT_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_ARCHIVED_BY__ARCHIVED_AT_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_ARCHIVED_BY__ARCHIVED_BY_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_ARCHIVED_BY__ARCHIVED_BY_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_ARCHIVED_BY__CREATED_AT_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_ARCHIVED_BY__CREATED_AT_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_ARCHIVED_BY__CREATED_BY_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_ARCHIVED_BY__CREATED_BY_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_ARCHIVED_BY__EMAIL_ADDRESS_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_ARCHIVED_BY__EMAIL_ADDRESS_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_ARCHIVED_BY__FAMILY_NAME_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_ARCHIVED_BY__FAMILY_NAME_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_ARCHIVED_BY__FULL_NAME_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_ARCHIVED_BY__FULL_NAME_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_ARCHIVED_BY__GIVEN_NAME_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_ARCHIVED_BY__GIVEN_NAME_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_ARCHIVED_BY__ID_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_ARCHIVED_BY__ID_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_ARCHIVED_BY__SESSION_SUB_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_ARCHIVED_BY__SESSION_SUB_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_ARCHIVED_BY__UPDATED_AT_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_ARCHIVED_BY__UPDATED_AT_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_ARCHIVED_BY__UPDATED_BY_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_ARCHIVED_BY__UPDATED_BY_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_CREATED_BY__ALLOW_SUB_UPDATE_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_CREATED_BY__ALLOW_SUB_UPDATE_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_CREATED_BY__ARCHIVED_AT_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_CREATED_BY__ARCHIVED_AT_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_CREATED_BY__ARCHIVED_BY_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_CREATED_BY__ARCHIVED_BY_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_CREATED_BY__CREATED_AT_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_CREATED_BY__CREATED_AT_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_CREATED_BY__CREATED_BY_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_CREATED_BY__CREATED_BY_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_CREATED_BY__EMAIL_ADDRESS_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_CREATED_BY__EMAIL_ADDRESS_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_CREATED_BY__FAMILY_NAME_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_CREATED_BY__FAMILY_NAME_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_CREATED_BY__FULL_NAME_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_CREATED_BY__FULL_NAME_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_CREATED_BY__GIVEN_NAME_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_CREATED_BY__GIVEN_NAME_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_CREATED_BY__ID_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_CREATED_BY__ID_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_CREATED_BY__SESSION_SUB_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_CREATED_BY__SESSION_SUB_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_CREATED_BY__UPDATED_AT_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_CREATED_BY__UPDATED_AT_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_CREATED_BY__UPDATED_BY_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_CREATED_BY__UPDATED_BY_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_UPDATED_BY__ALLOW_SUB_UPDATE_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_UPDATED_BY__ALLOW_SUB_UPDATE_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_UPDATED_BY__ARCHIVED_AT_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_UPDATED_BY__ARCHIVED_AT_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_UPDATED_BY__ARCHIVED_BY_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_UPDATED_BY__ARCHIVED_BY_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_UPDATED_BY__CREATED_AT_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_UPDATED_BY__CREATED_AT_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_UPDATED_BY__CREATED_BY_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_UPDATED_BY__CREATED_BY_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_UPDATED_BY__EMAIL_ADDRESS_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_UPDATED_BY__EMAIL_ADDRESS_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_UPDATED_BY__FAMILY_NAME_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_UPDATED_BY__FAMILY_NAME_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_UPDATED_BY__FULL_NAME_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_UPDATED_BY__FULL_NAME_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_UPDATED_BY__GIVEN_NAME_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_UPDATED_BY__GIVEN_NAME_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_UPDATED_BY__ID_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_UPDATED_BY__ID_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_UPDATED_BY__SESSION_SUB_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_UPDATED_BY__SESSION_SUB_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_UPDATED_BY__UPDATED_AT_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_UPDATED_BY__UPDATED_AT_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_UPDATED_BY__UPDATED_BY_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CIF_USER_BY_UPDATED_BY__UPDATED_BY_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CREATED_AT_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CREATED_AT_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CREATED_BY_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CREATED_BY_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ID_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ID_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "NATURAL", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PRIMARY_KEY_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PRIMARY_KEY_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__ADDITIONAL_SECTOR_INFORMATION_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__ADDITIONAL_SECTOR_INFORMATION_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__ARCHIVED_AT_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__ARCHIVED_AT_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__ARCHIVED_BY_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__ARCHIVED_BY_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__COMMENTS_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__COMMENTS_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__CONTRACT_NUMBER_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__CONTRACT_NUMBER_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__CREATED_AT_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__CREATED_AT_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__CREATED_BY_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__CREATED_BY_DESC", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "rowId", - "description": "Unique ID for the project", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, + "name": "PROJECT_BY_PROJECT_ID__FUNDING_STREAM_RFP_ID_ASC", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "score", - "description": "The score of the project after evaluation by the CIF team", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, + "name": "PROJECT_BY_PROJECT_ID__FUNDING_STREAM_RFP_ID_DESC", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sectorBySectorName", - "description": "Reads a single `Sector` that is related to this `Project`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Sector", - "ofType": null - }, + "name": "PROJECT_BY_PROJECT_ID__ID_ASC", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sectorName", - "description": "The industry sector this project relates to", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "PROJECT_BY_PROJECT_ID__ID_DESC", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "summary", - "description": "Summary of the project", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, + "name": "PROJECT_BY_PROJECT_ID__NEXT_MILESTONE_DUE_DATE_ASC", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "totalFundingRequest", - "description": "The total amount of funding requested for the project", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, + "name": "PROJECT_BY_PROJECT_ID__NEXT_MILESTONE_DUE_DATE_DESC", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updatedAt", - "description": "updated at timestamp", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Datetime", - "ofType": null - } - }, + "name": "PROJECT_BY_PROJECT_ID__OPERATOR_ID_ASC", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updatedBy", - "description": "updated by user id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, + "name": "PROJECT_BY_PROJECT_ID__OPERATOR_ID_DESC", + "description": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ + }, { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectAdditionalFundingSourceStatusesByAdditionalFundingSourceProjectIdAndStatusManyToManyConnection", - "description": "A connection to a list of `AdditionalFundingSourceStatus` values, with data from `AdditionalFundingSource`.", - "fields": [ + "name": "PROJECT_BY_PROJECT_ID__PROJECT_NAME_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "edges", - "description": "A list of edges which contains the `AdditionalFundingSourceStatus`, info from the `AdditionalFundingSource`, and the cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectAdditionalFundingSourceStatusesByAdditionalFundingSourceProjectIdAndStatusManyToManyEdge", - "ofType": null - } - } - } - }, + "name": "PROJECT_BY_PROJECT_ID__PROJECT_NAME_DESC", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "nodes", - "description": "A list of `AdditionalFundingSourceStatus` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AdditionalFundingSourceStatus", - "ofType": null - } - } - }, + "name": "PROJECT_BY_PROJECT_ID__PROJECT_STATUS_ID_ASC", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, + "name": "PROJECT_BY_PROJECT_ID__PROJECT_STATUS_ID_DESC", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "totalCount", - "description": "The count of *all* `AdditionalFundingSourceStatus` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, + "name": "PROJECT_BY_PROJECT_ID__PROJECT_TYPE_ASC", + "description": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectAdditionalFundingSourceStatusesByAdditionalFundingSourceProjectIdAndStatusManyToManyEdge", - "description": "A `AdditionalFundingSourceStatus` edge in the connection, with data from `AdditionalFundingSource`.", - "fields": [ + }, { - "name": "additionalFundingSourcesByStatus", - "description": "Reads and enables pagination through a set of `AdditionalFundingSource`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `AdditionalFundingSource`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AdditionalFundingSourcesOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AdditionalFundingSourcesConnection", - "ofType": null - } - }, + "name": "PROJECT_BY_PROJECT_ID__PROJECT_TYPE_DESC", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, + "name": "PROJECT_BY_PROJECT_ID__PROPOSAL_REFERENCE_ASC", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "node", - "description": "The `AdditionalFundingSourceStatus` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "AdditionalFundingSourceStatus", - "ofType": null - }, + "name": "PROJECT_BY_PROJECT_ID__PROPOSAL_REFERENCE_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__SCORE_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__SCORE_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__SECTOR_NAME_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__SECTOR_NAME_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__SUMMARY_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__SUMMARY_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__TOTAL_FUNDING_REQUEST_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__TOTAL_FUNDING_REQUEST_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__UPDATED_AT_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__UPDATED_AT_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__UPDATED_BY_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_BY_PROJECT_ID__UPDATED_BY_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_ID_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_ID_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "UPDATED_AT_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "UPDATED_AT_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "UPDATED_BY_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "UPDATED_BY_DESC", + "description": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], - "enumValues": null, "possibleTypes": null }, { @@ -185215,481 +191882,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `AdditionalFundingSource`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AdditionalFundingSourcesOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AdditionalFundingSourcesConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `CifUser` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "CifUser", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectCifUsersByAdditionalFundingSourceProjectIdAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `AdditionalFundingSource`.", - "fields": [ - { - "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `AdditionalFundingSource`, and the cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectCifUsersByAdditionalFundingSourceProjectIdAndUpdatedByManyToManyEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `CifUser` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CifUser", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `CifUser` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectCifUsersByAdditionalFundingSourceProjectIdAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `AdditionalFundingSource`.", - "fields": [ - { - "name": "additionalFundingSourcesByUpdatedBy", - "description": "Reads and enables pagination through a set of `AdditionalFundingSource`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "AdditionalFundingSourceFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `AdditionalFundingSource`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AdditionalFundingSourcesOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AdditionalFundingSourcesConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `CifUser` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "CifUser", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectCifUsersByAttachmentProjectIdAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Attachment`.", - "fields": [ - { - "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Attachment`, and the cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectCifUsersByAttachmentProjectIdAndArchivedByManyToManyEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `CifUser` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CifUser", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `CifUser` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectCifUsersByAttachmentProjectIdAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `Attachment`.", - "fields": [ - { - "name": "attachmentsByArchivedBy", - "description": "Reads and enables pagination through a set of `Attachment`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "AttachmentCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "AttachmentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Attachment`.", + "description": "The method to use when ordering `AdditionalFundingSource`.", "type": { "kind": "LIST", "name": null, @@ -185698,7 +191891,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AttachmentsOrderBy", + "name": "AdditionalFundingSourcesOrderBy", "ofType": null } } @@ -185711,7 +191904,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AttachmentsConnection", + "name": "AdditionalFundingSourcesConnection", "ofType": null } }, @@ -185750,12 +191943,12 @@ }, { "kind": "OBJECT", - "name": "ProjectCifUsersByAttachmentProjectIdAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Attachment`.", + "name": "ProjectCifUsersByAdditionalFundingSourceProjectIdAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `AdditionalFundingSource`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Attachment`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `AdditionalFundingSource`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -185768,7 +191961,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectCifUsersByAttachmentProjectIdAndCreatedByManyToManyEdge", + "name": "ProjectCifUsersByAdditionalFundingSourceProjectIdAndUpdatedByManyToManyEdge", "ofType": null } } @@ -185837,12 +192030,12 @@ }, { "kind": "OBJECT", - "name": "ProjectCifUsersByAttachmentProjectIdAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `Attachment`.", + "name": "ProjectCifUsersByAdditionalFundingSourceProjectIdAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `AdditionalFundingSource`.", "fields": [ { - "name": "attachmentsByCreatedBy", - "description": "Reads and enables pagination through a set of `Attachment`.", + "name": "additionalFundingSourcesByUpdatedBy", + "description": "Reads and enables pagination through a set of `AdditionalFundingSource`.", "args": [ { "name": "after", @@ -185869,7 +192062,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AttachmentCondition", + "name": "AdditionalFundingSourceCondition", "ofType": null }, "defaultValue": null @@ -185879,7 +192072,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AttachmentFilter", + "name": "AdditionalFundingSourceFilter", "ofType": null }, "defaultValue": null @@ -185926,7 +192119,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Attachment`.", + "description": "The method to use when ordering `AdditionalFundingSource`.", "type": { "kind": "LIST", "name": null, @@ -185935,7 +192128,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AttachmentsOrderBy", + "name": "AdditionalFundingSourcesOrderBy", "ofType": null } } @@ -185948,7 +192141,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AttachmentsConnection", + "name": "AdditionalFundingSourcesConnection", "ofType": null } }, @@ -185987,12 +192180,12 @@ }, { "kind": "OBJECT", - "name": "ProjectCifUsersByAttachmentProjectIdAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Attachment`.", + "name": "ProjectCifUsersByFundingParameterProjectIdAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `FundingParameter`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Attachment`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `FundingParameter`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -186005,7 +192198,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectCifUsersByAttachmentProjectIdAndUpdatedByManyToManyEdge", + "name": "ProjectCifUsersByFundingParameterProjectIdAndArchivedByManyToManyEdge", "ofType": null } } @@ -186074,12 +192267,24 @@ }, { "kind": "OBJECT", - "name": "ProjectCifUsersByAttachmentProjectIdAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `Attachment`.", + "name": "ProjectCifUsersByFundingParameterProjectIdAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `FundingParameter`.", "fields": [ { - "name": "attachmentsByUpdatedBy", - "description": "Reads and enables pagination through a set of `Attachment`.", + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fundingParametersByArchivedBy", + "description": "Reads and enables pagination through a set of `FundingParameter`.", "args": [ { "name": "after", @@ -186106,7 +192311,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AttachmentCondition", + "name": "FundingParameterCondition", "ofType": null }, "defaultValue": null @@ -186116,7 +192321,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AttachmentFilter", + "name": "FundingParameterFilter", "ofType": null }, "defaultValue": null @@ -186163,7 +192368,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Attachment`.", + "description": "The method to use when ordering `FundingParameter`.", "type": { "kind": "LIST", "name": null, @@ -186172,7 +192377,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AttachmentsOrderBy", + "name": "FundingParametersOrderBy", "ofType": null } } @@ -186185,13 +192390,123 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AttachmentsConnection", + "name": "FundingParametersConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": "The `CifUser` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "CifUser", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectCifUsersByFundingParameterProjectIdAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `FundingParameter`.", + "fields": [ + { + "name": "edges", + "description": "A list of edges which contains the `CifUser`, info from the `FundingParameter`, and the cursor to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectCifUsersByFundingParameterProjectIdAndCreatedByManyToManyEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": "A list of `CifUser` objects.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CifUser", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, + { + "name": "totalCount", + "description": "The count of *all* `CifUser` you could get from the connection.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectCifUsersByFundingParameterProjectIdAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `FundingParameter`.", + "fields": [ { "name": "cursor", "description": "A cursor for use in pagination.", @@ -186204,6 +192519,121 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "fundingParametersByCreatedBy", + "description": "Reads and enables pagination through a set of `FundingParameter`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "FundingParameterCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "FundingParameterFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `FundingParameter`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FundingParametersOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FundingParametersConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "node", "description": "The `CifUser` at the end of the edge.", @@ -186224,7 +192654,7 @@ }, { "kind": "OBJECT", - "name": "ProjectCifUsersByFundingParameterProjectIdAndArchivedByManyToManyConnection", + "name": "ProjectCifUsersByFundingParameterProjectIdAndUpdatedByManyToManyConnection", "description": "A connection to a list of `CifUser` values, with data from `FundingParameter`.", "fields": [ { @@ -186242,7 +192672,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectCifUsersByFundingParameterProjectIdAndArchivedByManyToManyEdge", + "name": "ProjectCifUsersByFundingParameterProjectIdAndUpdatedByManyToManyEdge", "ofType": null } } @@ -186311,7 +192741,7 @@ }, { "kind": "OBJECT", - "name": "ProjectCifUsersByFundingParameterProjectIdAndArchivedByManyToManyEdge", + "name": "ProjectCifUsersByFundingParameterProjectIdAndUpdatedByManyToManyEdge", "description": "A `CifUser` edge in the connection, with data from `FundingParameter`.", "fields": [ { @@ -186327,7 +192757,7 @@ "deprecationReason": null }, { - "name": "fundingParametersByArchivedBy", + "name": "fundingParametersByUpdatedBy", "description": "Reads and enables pagination through a set of `FundingParameter`.", "args": [ { @@ -186461,12 +192891,12 @@ }, { "kind": "OBJECT", - "name": "ProjectCifUsersByFundingParameterProjectIdAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `FundingParameter`.", + "name": "ProjectCifUsersByProjectAttachmentProjectIdAndArchivedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectAttachment`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `FundingParameter`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectAttachment`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -186479,7 +192909,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectCifUsersByFundingParameterProjectIdAndCreatedByManyToManyEdge", + "name": "ProjectCifUsersByProjectAttachmentProjectIdAndArchivedByManyToManyEdge", "ofType": null } } @@ -186548,8 +192978,8 @@ }, { "kind": "OBJECT", - "name": "ProjectCifUsersByFundingParameterProjectIdAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `FundingParameter`.", + "name": "ProjectCifUsersByProjectAttachmentProjectIdAndArchivedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectAttachment`.", "fields": [ { "name": "cursor", @@ -186564,8 +192994,20 @@ "deprecationReason": null }, { - "name": "fundingParametersByCreatedBy", - "description": "Reads and enables pagination through a set of `FundingParameter`.", + "name": "node", + "description": "The `CifUser` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "CifUser", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectAttachmentsByArchivedBy", + "description": "Reads and enables pagination through a set of `ProjectAttachment`.", "args": [ { "name": "after", @@ -186592,7 +193034,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingParameterCondition", + "name": "ProjectAttachmentCondition", "ofType": null }, "defaultValue": null @@ -186602,7 +193044,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingParameterFilter", + "name": "ProjectAttachmentFilter", "ofType": null }, "defaultValue": null @@ -186649,7 +193091,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingParameter`.", + "description": "The method to use when ordering `ProjectAttachment`.", "type": { "kind": "LIST", "name": null, @@ -186658,7 +193100,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingParametersOrderBy", + "name": "ProjectAttachmentsOrderBy", "ofType": null } } @@ -186671,13 +193113,123 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingParametersConnection", + "name": "ProjectAttachmentsConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectCifUsersByProjectAttachmentProjectIdAndCreatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectAttachment`.", + "fields": [ + { + "name": "edges", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectAttachment`, and the cursor to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectCifUsersByProjectAttachmentProjectIdAndCreatedByManyToManyEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": "A list of `CifUser` objects.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CifUser", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": "Information to aid in pagination.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, + { + "name": "totalCount", + "description": "The count of *all* `CifUser` you could get from the connection.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectCifUsersByProjectAttachmentProjectIdAndCreatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectAttachment`.", + "fields": [ + { + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "node", "description": "The `CifUser` at the end of the edge.", @@ -186689,6 +193241,121 @@ }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "projectAttachmentsByCreatedBy", + "description": "Reads and enables pagination through a set of `ProjectAttachment`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectAttachmentCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectAttachmentFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `ProjectAttachment`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectAttachmentsOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectAttachmentsConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -186698,12 +193365,12 @@ }, { "kind": "OBJECT", - "name": "ProjectCifUsersByFundingParameterProjectIdAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `FundingParameter`.", + "name": "ProjectCifUsersByProjectAttachmentProjectIdAndUpdatedByManyToManyConnection", + "description": "A connection to a list of `CifUser` values, with data from `ProjectAttachment`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `FundingParameter`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `CifUser`, info from the `ProjectAttachment`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -186716,7 +193383,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectCifUsersByFundingParameterProjectIdAndUpdatedByManyToManyEdge", + "name": "ProjectCifUsersByProjectAttachmentProjectIdAndUpdatedByManyToManyEdge", "ofType": null } } @@ -186785,8 +193452,8 @@ }, { "kind": "OBJECT", - "name": "ProjectCifUsersByFundingParameterProjectIdAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `FundingParameter`.", + "name": "ProjectCifUsersByProjectAttachmentProjectIdAndUpdatedByManyToManyEdge", + "description": "A `CifUser` edge in the connection, with data from `ProjectAttachment`.", "fields": [ { "name": "cursor", @@ -186801,8 +193468,20 @@ "deprecationReason": null }, { - "name": "fundingParametersByUpdatedBy", - "description": "Reads and enables pagination through a set of `FundingParameter`.", + "name": "node", + "description": "The `CifUser` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "CifUser", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectAttachmentsByUpdatedBy", + "description": "Reads and enables pagination through a set of `ProjectAttachment`.", "args": [ { "name": "after", @@ -186829,7 +193508,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingParameterCondition", + "name": "ProjectAttachmentCondition", "ofType": null }, "defaultValue": null @@ -186839,7 +193518,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingParameterFilter", + "name": "ProjectAttachmentFilter", "ofType": null }, "defaultValue": null @@ -186886,7 +193565,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingParameter`.", + "description": "The method to use when ordering `ProjectAttachment`.", "type": { "kind": "LIST", "name": null, @@ -186895,7 +193574,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingParametersOrderBy", + "name": "ProjectAttachmentsOrderBy", "ofType": null } } @@ -186908,24 +193587,12 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingParametersConnection", + "name": "ProjectAttachmentsConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "node", - "description": "The `CifUser` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "CifUser", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null } ], "inputFields": null, @@ -192283,26 +198950,6 @@ }, "defaultValue": null }, - { - "name": "attachmentsByProjectId", - "description": "Filter by the object’s `attachmentsByProjectId` relation.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectToManyAttachmentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "attachmentsByProjectIdExist", - "description": "Some related `attachmentsByProjectId` exist.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, { "name": "cifUserByArchivedBy", "description": "Filter by the object’s `cifUserByArchivedBy` relation.", @@ -192443,6 +199090,16 @@ }, "defaultValue": null }, + { + "name": "milestoneStatus", + "description": "Filter by the object’s `milestoneStatus` field.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + }, + "defaultValue": null + }, { "name": "nextMilestoneDueDate", "description": "Filter by the object’s `nextMilestoneDueDate` field.", @@ -192511,6 +199168,26 @@ }, "defaultValue": null }, + { + "name": "projectAttachmentsByProjectId", + "description": "Filter by the object’s `projectAttachmentsByProjectId` relation.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectToManyProjectAttachmentFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectAttachmentsByProjectIdExist", + "description": "Some related `projectAttachmentsByProjectId` exist.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, { "name": "projectContactsByProjectId", "description": "Filter by the object’s `projectContactsByProjectId` relation.", @@ -198320,220 +204997,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectManager`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProjectManagersOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectManagersConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectProjectStatusesByAttachmentProjectIdAndProjectStatusIdManyToManyConnection", - "description": "A connection to a list of `ProjectStatus` values, with data from `Attachment`.", - "fields": [ - { - "name": "edges", - "description": "A list of edges which contains the `ProjectStatus`, info from the `Attachment`, and the cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectProjectStatusesByAttachmentProjectIdAndProjectStatusIdManyToManyEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `ProjectStatus` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectStatus", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `ProjectStatus` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectProjectStatusesByAttachmentProjectIdAndProjectStatusIdManyToManyEdge", - "description": "A `ProjectStatus` edge in the connection, with data from `Attachment`.", - "fields": [ - { - "name": "attachmentsByProjectStatusId", - "description": "Reads and enables pagination through a set of `Attachment`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "AttachmentCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "AttachmentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Attachment`.", + "description": "The method to use when ordering `ProjectManager`.", "type": { "kind": "LIST", "name": null, @@ -198542,7 +205006,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AttachmentsOrderBy", + "name": "ProjectManagersOrderBy", "ofType": null } } @@ -198555,36 +205019,12 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AttachmentsConnection", + "name": "ProjectManagersConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `ProjectStatus` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectStatus", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null } ], "inputFields": null, @@ -198949,83 +205389,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "anticipatedFundingAmountPerFiscalYear", - "description": "Computed column to calculate the anticipated amount of funding for a project by fiscal year", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SumByFiscalYearFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SumByFiscalYearsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "changeReason", "description": "Explanation of why the revision was made", @@ -200040,7 +206403,7 @@ }, { "name": "formChangesFor", - "description": "Computed column to dynamically retrieve the form_change records relating to the project_revision from a given table", + "description": "Computed column to dynamically retrieve the form_change record relating to the project_revision from a given table", "args": [ { "name": "after", @@ -200304,6 +206667,107 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "latestCommittedFormChangesFor", + "description": "Reads and enables pagination through a set of `FormChange`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "FormChangeFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "formDataTableName", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "reportType", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FormChangesConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "milestoneReportStatuses", "description": "Computed column to return both form completion statuses and reporting requirement statuses for individual milestones", @@ -200623,18 +207087,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "rank", - "description": "Computed column to determine the rank of a project", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "revisionStatus", "description": "The status of the revision of a project", @@ -200744,42 +207196,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "teimpPaymentAmount", - "description": " Computed column to return the TEIMP payment amount, based on:\n - X% being the TEIMP payment percentage calculated from the emissions performance (Schedule G)\n - Gross and Net payment amounts to date\n Formula:\n TEIMP payment amount = X% * (Gross payment to date - Net payment to date)\n", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "teimpPaymentPercentage", - "description": " Computed column to return the TEIMP payment percentage, calculated as specified in the schedule G.\n The calculation for determining emission intensity performance uses three metrics and a calculation:\n Metrics:\n - BEI: Baseline Emission Intensity\n - PEI: Post-Project Emission Intensity\n - TEI: Target Emission Intensity\n Calculation:\n - Emission Intensity Payment Percentage = (BEI - PEI) / (BEI - TEI) * 100\n", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalProjectValue", - "description": " Computed column to return the total project value.\n Calculation:\n - Total Project Value = Maximum Funding Amount + Proponent Cost + Additional Funding Amount(s)\n", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "typeRowNumber", "description": "Returns the row number of the project revision within the scope of a project and among all other revisions of the same type.", @@ -204625,16 +211041,6 @@ }, "defaultValue": null }, - { - "name": "rank", - "description": "Filter by the object’s `rank` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IntFilter", - "ofType": null - }, - "defaultValue": null - }, { "name": "revisionStatus", "description": "Filter by the object’s `revisionStatus` field.", @@ -204685,36 +211091,6 @@ }, "defaultValue": null }, - { - "name": "teimpPaymentAmount", - "description": "Filter by the object’s `teimpPaymentAmount` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BigFloatFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "teimpPaymentPercentage", - "description": "Filter by the object’s `teimpPaymentPercentage` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BigFloatFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "totalProjectValue", - "description": "Filter by the object’s `totalProjectValue` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BigFloatFilter", - "ofType": null - }, - "defaultValue": null - }, { "name": "typeRowNumber", "description": "Filter by the object’s `typeRowNumber` field.", @@ -206913,6 +213289,18 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "REVISION_STATUS_BY_REVISION_STATUS__SORTING_ORDER_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "REVISION_STATUS_BY_REVISION_STATUS__SORTING_ORDER_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "REVISION_STATUS_BY_REVISION_STATUS__UPDATED_AT_ASC", "description": null, @@ -207095,121 +213483,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "attachmentsByProjectStatusId", - "description": "Reads and enables pagination through a set of `Attachment`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "AttachmentCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "AttachmentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "INHERIT" - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Attachment`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AttachmentsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AttachmentsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "cifUserByArchivedBy", "description": "Reads a single `CifUser` that is related to this `ProjectStatus`.", @@ -207246,351 +213519,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "cifUsersByAttachmentProjectStatusIdAndArchivedBy", - "description": "Reads and enables pagination through a set of `CifUser`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `CifUser`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CifUsersOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectStatusCifUsersByAttachmentProjectStatusIdAndArchivedByManyToManyConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cifUsersByAttachmentProjectStatusIdAndCreatedBy", - "description": "Reads and enables pagination through a set of `CifUser`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `CifUser`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CifUsersOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectStatusCifUsersByAttachmentProjectStatusIdAndCreatedByManyToManyConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cifUsersByAttachmentProjectStatusIdAndUpdatedBy", - "description": "Reads and enables pagination through a set of `CifUser`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `CifUser`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CifUsersOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectStatusCifUsersByAttachmentProjectStatusIdAndUpdatedByManyToManyConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "cifUsersByFundingStreamProjectStatusProjectStatusIdAndArchivedBy", "description": "Reads and enables pagination through a set of `CifUser`.", @@ -207907,507 +213835,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `CifUser`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CifUsersOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectStatusCifUsersByFundingStreamProjectStatusProjectStatusIdAndUpdatedByManyToManyConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cifUsersByProjectProjectStatusIdAndArchivedBy", - "description": "Reads and enables pagination through a set of `CifUser`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `CifUser`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CifUsersOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectStatusCifUsersByProjectProjectStatusIdAndArchivedByManyToManyConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cifUsersByProjectProjectStatusIdAndCreatedBy", - "description": "Reads and enables pagination through a set of `CifUser`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `CifUser`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CifUsersOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectStatusCifUsersByProjectProjectStatusIdAndCreatedByManyToManyConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cifUsersByProjectProjectStatusIdAndUpdatedBy", - "description": "Reads and enables pagination through a set of `CifUser`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CifUserFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `CifUser`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CifUsersOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectStatusCifUsersByProjectProjectStatusIdAndUpdatedByManyToManyConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": "created at timestamp", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Datetime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdBy", - "description": "created by user id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": "Description of the project_status", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fundingStreamProjectStatusesByProjectStatusId", - "description": "Reads and enables pagination through a set of `FundingStreamProjectStatus`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "FundingStreamProjectStatusCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "FundingStreamProjectStatusFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "INHERIT" - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `FundingStreamProjectStatus`.", + "description": "The method to use when ordering `CifUser`.", "type": { "kind": "LIST", "name": null, @@ -208416,7 +213844,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamProjectStatusesOrderBy", + "name": "CifUsersOrderBy", "ofType": null } } @@ -208429,7 +213857,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FundingStreamProjectStatusesConnection", + "name": "ProjectStatusCifUsersByFundingStreamProjectStatusProjectStatusIdAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -208437,8 +213865,8 @@ "deprecationReason": null }, { - "name": "fundingStreamRfpsByProjectProjectStatusIdAndFundingStreamRfpId", - "description": "Reads and enables pagination through a set of `FundingStreamRfp`.", + "name": "cifUsersByProjectProjectStatusIdAndArchivedBy", + "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { "name": "after", @@ -208465,7 +213893,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamRfpCondition", + "name": "CifUserCondition", "ofType": null }, "defaultValue": null @@ -208475,7 +213903,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamRfpFilter", + "name": "CifUserFilter", "ofType": null }, "defaultValue": null @@ -208522,7 +213950,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStreamRfp`.", + "description": "The method to use when ordering `CifUser`.", "type": { "kind": "LIST", "name": null, @@ -208531,7 +213959,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamRfpsOrderBy", + "name": "CifUsersOrderBy", "ofType": null } } @@ -208544,7 +213972,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectStatusFundingStreamRfpsByProjectProjectStatusIdAndFundingStreamRfpIdManyToManyConnection", + "name": "ProjectStatusCifUsersByProjectProjectStatusIdAndArchivedByManyToManyConnection", "ofType": null } }, @@ -208552,8 +213980,8 @@ "deprecationReason": null }, { - "name": "fundingStreamsByFundingStreamProjectStatusProjectStatusIdAndFundingStreamId", - "description": "Reads and enables pagination through a set of `FundingStream`.", + "name": "cifUsersByProjectProjectStatusIdAndCreatedBy", + "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { "name": "after", @@ -208580,7 +214008,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamCondition", + "name": "CifUserCondition", "ofType": null }, "defaultValue": null @@ -208590,7 +214018,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamFilter", + "name": "CifUserFilter", "ofType": null }, "defaultValue": null @@ -208637,7 +214065,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStream`.", + "description": "The method to use when ordering `CifUser`.", "type": { "kind": "LIST", "name": null, @@ -208646,7 +214074,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamsOrderBy", + "name": "CifUsersOrderBy", "ofType": null } } @@ -208659,39 +214087,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectStatusFundingStreamsByFundingStreamProjectStatusProjectStatusIdAndFundingStreamIdManyToManyConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "A globally unique identifier. Can be used in various places throughout the system to identify this single value.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "Name of the project_status", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", + "name": "ProjectStatusCifUsersByProjectProjectStatusIdAndCreatedByManyToManyConnection", "ofType": null } }, @@ -208699,8 +214095,8 @@ "deprecationReason": null }, { - "name": "operatorsByProjectProjectStatusIdAndOperatorId", - "description": "Reads and enables pagination through a set of `Operator`.", + "name": "cifUsersByProjectProjectStatusIdAndUpdatedBy", + "description": "Reads and enables pagination through a set of `CifUser`.", "args": [ { "name": "after", @@ -208727,7 +214123,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "OperatorCondition", + "name": "CifUserCondition", "ofType": null }, "defaultValue": null @@ -208737,7 +214133,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "OperatorFilter", + "name": "CifUserFilter", "ofType": null }, "defaultValue": null @@ -208784,7 +214180,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Operator`.", + "description": "The method to use when ordering `CifUser`.", "type": { "kind": "LIST", "name": null, @@ -208793,7 +214189,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "OperatorsOrderBy", + "name": "CifUsersOrderBy", "ofType": null } } @@ -208806,7 +214202,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectStatusOperatorsByProjectProjectStatusIdAndOperatorIdManyToManyConnection", + "name": "ProjectStatusCifUsersByProjectProjectStatusIdAndUpdatedByManyToManyConnection", "ofType": null } }, @@ -208814,8 +214210,48 @@ "deprecationReason": null }, { - "name": "projectTypesByProjectProjectStatusIdAndProjectType", - "description": "Reads and enables pagination through a set of `ProjectType`.", + "name": "createdAt", + "description": "created at timestamp", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdBy", + "description": "created by user id", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": "Description of the project_status", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fundingStreamProjectStatusesByProjectStatusId", + "description": "Reads and enables pagination through a set of `FundingStreamProjectStatus`.", "args": [ { "name": "after", @@ -208842,7 +214278,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTypeCondition", + "name": "FundingStreamProjectStatusCondition", "ofType": null }, "defaultValue": null @@ -208852,7 +214288,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectTypeFilter", + "name": "FundingStreamProjectStatusFilter", "ofType": null }, "defaultValue": null @@ -208875,7 +214311,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -208899,7 +214335,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `ProjectType`.", + "description": "The method to use when ordering `FundingStreamProjectStatus`.", "type": { "kind": "LIST", "name": null, @@ -208908,7 +214344,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectTypesOrderBy", + "name": "FundingStreamProjectStatusesOrderBy", "ofType": null } } @@ -208921,7 +214357,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectStatusProjectTypesByProjectProjectStatusIdAndProjectTypeManyToManyConnection", + "name": "FundingStreamProjectStatusesConnection", "ofType": null } }, @@ -208929,8 +214365,8 @@ "deprecationReason": null }, { - "name": "projectsByAttachmentProjectStatusIdAndProjectId", - "description": "Reads and enables pagination through a set of `Project`.", + "name": "fundingStreamRfpsByProjectProjectStatusIdAndFundingStreamRfpId", + "description": "Reads and enables pagination through a set of `FundingStreamRfp`.", "args": [ { "name": "after", @@ -208957,7 +214393,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCondition", + "name": "FundingStreamRfpCondition", "ofType": null }, "defaultValue": null @@ -208967,7 +214403,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectFilter", + "name": "FundingStreamRfpFilter", "ofType": null }, "defaultValue": null @@ -209014,7 +214450,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Project`.", + "description": "The method to use when ordering `FundingStreamRfp`.", "type": { "kind": "LIST", "name": null, @@ -209023,7 +214459,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectsOrderBy", + "name": "FundingStreamRfpsOrderBy", "ofType": null } } @@ -209036,7 +214472,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectStatusProjectsByAttachmentProjectStatusIdAndProjectIdManyToManyConnection", + "name": "ProjectStatusFundingStreamRfpsByProjectProjectStatusIdAndFundingStreamRfpIdManyToManyConnection", "ofType": null } }, @@ -209044,8 +214480,8 @@ "deprecationReason": null }, { - "name": "projectsByProjectStatusId", - "description": "Reads and enables pagination through a set of `Project`.", + "name": "fundingStreamsByFundingStreamProjectStatusProjectStatusIdAndFundingStreamId", + "description": "Reads and enables pagination through a set of `FundingStream`.", "args": [ { "name": "after", @@ -209072,7 +214508,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectCondition", + "name": "FundingStreamCondition", "ofType": null }, "defaultValue": null @@ -209082,7 +214518,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ProjectFilter", + "name": "FundingStreamFilter", "ofType": null }, "defaultValue": null @@ -209105,7 +214541,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "INHERIT" + "defaultValue": "NO" }, { "name": "last", @@ -209129,7 +214565,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Project`.", + "description": "The method to use when ordering `FundingStream`.", "type": { "kind": "LIST", "name": null, @@ -209138,7 +214574,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ProjectsOrderBy", + "name": "FundingStreamsOrderBy", "ofType": null } } @@ -209151,7 +214587,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectsConnection", + "name": "ProjectStatusFundingStreamsByFundingStreamProjectStatusProjectStatusIdAndFundingStreamIdManyToManyConnection", "ofType": null } }, @@ -209159,15 +214595,15 @@ "deprecationReason": null }, { - "name": "rowId", - "description": "Unique ID for the project_status", + "name": "id", + "description": "A globally unique identifier. Can be used in various places throughout the system to identify this single value.", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null } }, @@ -209175,8 +214611,24 @@ "deprecationReason": null }, { - "name": "sectorsByProjectProjectStatusIdAndSectorName", - "description": "Reads and enables pagination through a set of `Sector`.", + "name": "name", + "description": "Name of the project_status", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "operatorsByProjectProjectStatusIdAndOperatorId", + "description": "Reads and enables pagination through a set of `Operator`.", "args": [ { "name": "after", @@ -209203,7 +214655,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "SectorCondition", + "name": "OperatorCondition", "ofType": null }, "defaultValue": null @@ -209213,7 +214665,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "SectorFilter", + "name": "OperatorFilter", "ofType": null }, "defaultValue": null @@ -209260,7 +214712,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Sector`.", + "description": "The method to use when ordering `Operator`.", "type": { "kind": "LIST", "name": null, @@ -209269,7 +214721,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "SectorsOrderBy", + "name": "OperatorsOrderBy", "ofType": null } } @@ -209282,112 +214734,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectStatusSectorsByProjectProjectStatusIdAndSectorNameManyToManyConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": "updated at timestamp", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Datetime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedBy", - "description": "updated by user id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectStatusCifUsersByAttachmentProjectStatusIdAndArchivedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Attachment`.", - "fields": [ - { - "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Attachment`, and the cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectStatusCifUsersByAttachmentProjectStatusIdAndArchivedByManyToManyEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `CifUser` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CifUser", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", + "name": "ProjectStatusOperatorsByProjectProjectStatusIdAndOperatorIdManyToManyConnection", "ofType": null } }, @@ -209395,35 +214742,8 @@ "deprecationReason": null }, { - "name": "totalCount", - "description": "The count of *all* `CifUser` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectStatusCifUsersByAttachmentProjectStatusIdAndArchivedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `Attachment`.", - "fields": [ - { - "name": "attachmentsByArchivedBy", - "description": "Reads and enables pagination through a set of `Attachment`.", + "name": "projectTypesByProjectProjectStatusIdAndProjectType", + "description": "Reads and enables pagination through a set of `ProjectType`.", "args": [ { "name": "after", @@ -209450,7 +214770,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AttachmentCondition", + "name": "ProjectTypeCondition", "ofType": null }, "defaultValue": null @@ -209460,7 +214780,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AttachmentFilter", + "name": "ProjectTypeFilter", "ofType": null }, "defaultValue": null @@ -209507,7 +214827,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Attachment`.", + "description": "The method to use when ordering `ProjectType`.", "type": { "kind": "LIST", "name": null, @@ -209516,7 +214836,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AttachmentsOrderBy", + "name": "ProjectTypesOrderBy", "ofType": null } } @@ -209529,102 +214849,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AttachmentsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `CifUser` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "CifUser", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectStatusCifUsersByAttachmentProjectStatusIdAndCreatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Attachment`.", - "fields": [ - { - "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Attachment`, and the cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectStatusCifUsersByAttachmentProjectStatusIdAndCreatedByManyToManyEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `CifUser` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CifUser", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", + "name": "ProjectStatusProjectTypesByProjectProjectStatusIdAndProjectTypeManyToManyConnection", "ofType": null } }, @@ -209632,35 +214857,8 @@ "deprecationReason": null }, { - "name": "totalCount", - "description": "The count of *all* `CifUser` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectStatusCifUsersByAttachmentProjectStatusIdAndCreatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `Attachment`.", - "fields": [ - { - "name": "attachmentsByCreatedBy", - "description": "Reads and enables pagination through a set of `Attachment`.", + "name": "projectsByProjectStatusId", + "description": "Reads and enables pagination through a set of `Project`.", "args": [ { "name": "after", @@ -209687,7 +214885,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AttachmentCondition", + "name": "ProjectCondition", "ofType": null }, "defaultValue": null @@ -209697,7 +214895,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AttachmentFilter", + "name": "ProjectFilter", "ofType": null }, "defaultValue": null @@ -209720,7 +214918,7 @@ "name": "IncludeArchivedOption", "ofType": null }, - "defaultValue": "NO" + "defaultValue": "INHERIT" }, { "name": "last", @@ -209744,7 +214942,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Attachment`.", + "description": "The method to use when ordering `Project`.", "type": { "kind": "LIST", "name": null, @@ -209753,7 +214951,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AttachmentsOrderBy", + "name": "ProjectsOrderBy", "ofType": null } } @@ -209766,102 +214964,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AttachmentsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `CifUser` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "CifUser", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectStatusCifUsersByAttachmentProjectStatusIdAndUpdatedByManyToManyConnection", - "description": "A connection to a list of `CifUser` values, with data from `Attachment`.", - "fields": [ - { - "name": "edges", - "description": "A list of edges which contains the `CifUser`, info from the `Attachment`, and the cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectStatusCifUsersByAttachmentProjectStatusIdAndUpdatedByManyToManyEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `CifUser` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CifUser", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", + "name": "ProjectsConnection", "ofType": null } }, @@ -209869,8 +214972,8 @@ "deprecationReason": null }, { - "name": "totalCount", - "description": "The count of *all* `CifUser` you could get from the connection.", + "name": "rowId", + "description": "Unique ID for the project_status", "args": [], "type": { "kind": "NON_NULL", @@ -209883,21 +214986,10 @@ }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectStatusCifUsersByAttachmentProjectStatusIdAndUpdatedByManyToManyEdge", - "description": "A `CifUser` edge in the connection, with data from `Attachment`.", - "fields": [ + }, { - "name": "attachmentsByUpdatedBy", - "description": "Reads and enables pagination through a set of `Attachment`.", + "name": "sectorsByProjectProjectStatusIdAndSectorName", + "description": "Reads and enables pagination through a set of `Sector`.", "args": [ { "name": "after", @@ -209924,7 +215016,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AttachmentCondition", + "name": "SectorCondition", "ofType": null }, "defaultValue": null @@ -209934,7 +215026,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AttachmentFilter", + "name": "SectorFilter", "ofType": null }, "defaultValue": null @@ -209981,7 +215073,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Attachment`.", + "description": "The method to use when ordering `Sector`.", "type": { "kind": "LIST", "name": null, @@ -209990,7 +215082,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AttachmentsOrderBy", + "name": "SectorsOrderBy", "ofType": null } } @@ -210003,7 +215095,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AttachmentsConnection", + "name": "ProjectStatusSectorsByProjectProjectStatusIdAndSectorNameManyToManyConnection", "ofType": null } }, @@ -210011,24 +215103,28 @@ "deprecationReason": null }, { - "name": "cursor", - "description": "A cursor for use in pagination.", + "name": "updatedAt", + "description": "updated at timestamp", "args": [], "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "node", - "description": "The `CifUser` at the end of the edge.", + "name": "updatedBy", + "description": "updated by user id", "args": [], "type": { - "kind": "OBJECT", - "name": "CifUser", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "isDeprecated": false, @@ -210036,7 +215132,13 @@ } ], "inputFields": null, - "interfaces": [], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], "enumValues": null, "possibleTypes": null }, @@ -211607,26 +216709,6 @@ }, "defaultValue": null }, - { - "name": "attachmentsByProjectStatusId", - "description": "Filter by the object’s `attachmentsByProjectStatusId` relation.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectStatusToManyAttachmentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "attachmentsByProjectStatusIdExist", - "description": "Some related `attachmentsByProjectStatusId` exist.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, { "name": "cifUserByArchivedBy", "description": "Filter by the object’s `cifUserByArchivedBy` relation.", @@ -212816,249 +217898,36 @@ }, { "kind": "OBJECT", - "name": "ProjectStatusProjectTypesByProjectProjectStatusIdAndProjectTypeManyToManyEdge", - "description": "A `ProjectType` edge in the connection, with data from `Project`.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `ProjectType` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectsByProjectType", - "description": "Reads and enables pagination through a set of `Project`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Project`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProjectsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectStatusProjectsByAttachmentProjectStatusIdAndProjectIdManyToManyConnection", - "description": "A connection to a list of `Project` values, with data from `Attachment`.", - "fields": [ - { - "name": "edges", - "description": "A list of edges which contains the `Project`, info from the `Attachment`, and the cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectStatusProjectsByAttachmentProjectStatusIdAndProjectIdManyToManyEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `Project` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Project", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `Project` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectStatusProjectsByAttachmentProjectStatusIdAndProjectIdManyToManyEdge", - "description": "A `Project` edge in the connection, with data from `Attachment`.", + "name": "ProjectStatusProjectTypesByProjectProjectStatusIdAndProjectTypeManyToManyEdge", + "description": "A `ProjectType` edge in the connection, with data from `Project`.", "fields": [ { - "name": "attachmentsByProjectId", - "description": "Reads and enables pagination through a set of `Attachment`.", + "name": "cursor", + "description": "A cursor for use in pagination.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": "The `ProjectType` at the end of the edge.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectsByProjectType", + "description": "Reads and enables pagination through a set of `Project`.", "args": [ { "name": "after", @@ -213085,7 +217954,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AttachmentCondition", + "name": "ProjectCondition", "ofType": null }, "defaultValue": null @@ -213095,7 +217964,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "AttachmentFilter", + "name": "ProjectFilter", "ofType": null }, "defaultValue": null @@ -213142,7 +218011,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Attachment`.", + "description": "The method to use when ordering `Project`.", "type": { "kind": "LIST", "name": null, @@ -213151,7 +218020,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AttachmentsOrderBy", + "name": "ProjectsOrderBy", "ofType": null } } @@ -213164,36 +218033,12 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AttachmentsConnection", + "name": "ProjectsConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `Project` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Project", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null } ], "inputFields": null, @@ -213438,47 +218283,6 @@ "enumValues": null, "possibleTypes": null }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectStatusToManyAttachmentFilter", - "description": "A filter to be used against many `Attachment` object types. All fields are combined with a logical ‘and.’", - "fields": null, - "inputFields": [ - { - "name": "every", - "description": "Every related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’", - "type": { - "kind": "INPUT_OBJECT", - "name": "AttachmentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "none", - "description": "No related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’", - "type": { - "kind": "INPUT_OBJECT", - "name": "AttachmentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "some", - "description": "Some related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’", - "type": { - "kind": "INPUT_OBJECT", - "name": "AttachmentFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, { "kind": "INPUT_OBJECT", "name": "ProjectStatusToManyFundingStreamProjectStatusFilter", @@ -213715,18 +218519,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "ATTACHMENTS_BY_PROJECT_STATUS_ID__COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ATTACHMENTS_BY_PROJECT_STATUS_ID__COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "CIF_USER_BY_ARCHIVED_BY__ALLOW_SUB_UPDATE_ASC", "description": null, @@ -214367,36 +219159,36 @@ }, { "kind": "INPUT_OBJECT", - "name": "ProjectToManyAttachmentFilter", - "description": "A filter to be used against many `Attachment` object types. All fields are combined with a logical ‘and.’", + "name": "ProjectToManyFundingParameterFilter", + "description": "A filter to be used against many `FundingParameter` object types. All fields are combined with a logical ‘and.’", "fields": null, "inputFields": [ { "name": "every", - "description": "Every related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’", + "description": "Every related `FundingParameter` matches the filter criteria. All fields are combined with a logical ‘and.’", "type": { "kind": "INPUT_OBJECT", - "name": "AttachmentFilter", + "name": "FundingParameterFilter", "ofType": null }, "defaultValue": null }, { "name": "none", - "description": "No related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’", + "description": "No related `FundingParameter` matches the filter criteria. All fields are combined with a logical ‘and.’", "type": { "kind": "INPUT_OBJECT", - "name": "AttachmentFilter", + "name": "FundingParameterFilter", "ofType": null }, "defaultValue": null }, { "name": "some", - "description": "Some related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’", + "description": "Some related `FundingParameter` matches the filter criteria. All fields are combined with a logical ‘and.’", "type": { "kind": "INPUT_OBJECT", - "name": "AttachmentFilter", + "name": "FundingParameterFilter", "ofType": null }, "defaultValue": null @@ -214408,36 +219200,36 @@ }, { "kind": "INPUT_OBJECT", - "name": "ProjectToManyFundingParameterFilter", - "description": "A filter to be used against many `FundingParameter` object types. All fields are combined with a logical ‘and.’", + "name": "ProjectToManyProjectAttachmentFilter", + "description": "A filter to be used against many `ProjectAttachment` object types. All fields are combined with a logical ‘and.’", "fields": null, "inputFields": [ { "name": "every", - "description": "Every related `FundingParameter` matches the filter criteria. All fields are combined with a logical ‘and.’", + "description": "Every related `ProjectAttachment` matches the filter criteria. All fields are combined with a logical ‘and.’", "type": { "kind": "INPUT_OBJECT", - "name": "FundingParameterFilter", + "name": "ProjectAttachmentFilter", "ofType": null }, "defaultValue": null }, { "name": "none", - "description": "No related `FundingParameter` matches the filter criteria. All fields are combined with a logical ‘and.’", + "description": "No related `ProjectAttachment` matches the filter criteria. All fields are combined with a logical ‘and.’", "type": { "kind": "INPUT_OBJECT", - "name": "FundingParameterFilter", + "name": "ProjectAttachmentFilter", "ofType": null }, "defaultValue": null }, { "name": "some", - "description": "Some related `FundingParameter` matches the filter criteria. All fields are combined with a logical ‘and.’", + "description": "Some related `ProjectAttachment` matches the filter criteria. All fields are combined with a logical ‘and.’", "type": { "kind": "INPUT_OBJECT", - "name": "FundingParameterFilter", + "name": "ProjectAttachmentFilter", "ofType": null }, "defaultValue": null @@ -218791,18 +223583,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "ATTACHMENTS_BY_PROJECT_ID__COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ATTACHMENTS_BY_PROJECT_ID__COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "CIF_USER_BY_ARCHIVED_BY__ALLOW_SUB_UPDATE_ASC", "description": null, @@ -219673,6 +224453,18 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "PROJECT_ATTACHMENTS_BY_PROJECT_ID__COUNT_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_ATTACHMENTS_BY_PROJECT_ID__COUNT_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "PROJECT_CONTACTS_BY_PROJECT_ID__COUNT_ASC", "description": null, @@ -220940,7 +225732,118 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ContactCondition", + "name": "ContactCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ContactFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `Contact`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ContactsOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], + "type": { + "kind": "OBJECT", + "name": "ContactsConnection", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "allEmissionIntensityPaymentPercents", + "description": "Reads and enables pagination through a set of `EmissionIntensityPaymentPercent`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "EmissionIntensityPaymentPercentCondition", "ofType": null }, "defaultValue": null @@ -220950,7 +225853,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "ContactFilter", + "name": "EmissionIntensityPaymentPercentFilter", "ofType": null }, "defaultValue": null @@ -220997,7 +225900,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Contact`.", + "description": "The method to use when ordering `EmissionIntensityPaymentPercent`.", "type": { "kind": "LIST", "name": null, @@ -221006,7 +225909,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ContactsOrderBy", + "name": "EmissionIntensityPaymentPercentsOrderBy", "ofType": null } } @@ -221016,15 +225919,15 @@ ], "type": { "kind": "OBJECT", - "name": "ContactsConnection", + "name": "EmissionIntensityPaymentPercentsConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "allEmissionIntensityPaymentPercents", - "description": "Reads and enables pagination through a set of `EmissionIntensityPaymentPercent`.", + "name": "allEmissionIntensityReports", + "description": "Reads and enables pagination through a set of `EmissionIntensityReport`.", "args": [ { "name": "after", @@ -221051,7 +225954,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityPaymentPercentCondition", + "name": "EmissionIntensityReportCondition", "ofType": null }, "defaultValue": null @@ -221061,7 +225964,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityPaymentPercentFilter", + "name": "EmissionIntensityReportFilter", "ofType": null }, "defaultValue": null @@ -221108,7 +226011,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `EmissionIntensityPaymentPercent`.", + "description": "The method to use when ordering `EmissionIntensityReport`.", "type": { "kind": "LIST", "name": null, @@ -221117,7 +226020,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "EmissionIntensityPaymentPercentsOrderBy", + "name": "EmissionIntensityReportsOrderBy", "ofType": null } } @@ -221127,15 +226030,15 @@ ], "type": { "kind": "OBJECT", - "name": "EmissionIntensityPaymentPercentsConnection", + "name": "EmissionIntensityReportsConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "allEmissionIntensityReports", - "description": "Reads and enables pagination through a set of `EmissionIntensityReport`.", + "name": "allFormChanges", + "description": "Reads and enables pagination through a set of `FormChange`.", "args": [ { "name": "after", @@ -221162,7 +226065,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityReportCondition", + "name": "FormChangeCondition", "ofType": null }, "defaultValue": null @@ -221172,7 +226075,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "EmissionIntensityReportFilter", + "name": "FormChangeFilter", "ofType": null }, "defaultValue": null @@ -221187,16 +226090,6 @@ }, "defaultValue": null }, - { - "name": "includeArchived", - "description": "Indicates whether archived items should be included in the results or not.", - "type": { - "kind": "ENUM", - "name": "IncludeArchivedOption", - "ofType": null - }, - "defaultValue": "NO" - }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -221219,7 +226112,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `EmissionIntensityReport`.", + "description": "The method to use when ordering `FormChange`.", "type": { "kind": "LIST", "name": null, @@ -221228,7 +226121,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "EmissionIntensityReportsOrderBy", + "name": "FormChangesOrderBy", "ofType": null } } @@ -221238,15 +226131,15 @@ ], "type": { "kind": "OBJECT", - "name": "EmissionIntensityReportsConnection", + "name": "FormChangesConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "allFormChanges", - "description": "Reads and enables pagination through a set of `FormChange`.", + "name": "allForms", + "description": "Reads and enables pagination through a set of `Form`.", "args": [ { "name": "after", @@ -221273,7 +226166,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormChangeCondition", + "name": "FormCondition", "ofType": null }, "defaultValue": null @@ -221283,7 +226176,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormChangeFilter", + "name": "FormFilter", "ofType": null }, "defaultValue": null @@ -221298,6 +226191,16 @@ }, "defaultValue": null }, + { + "name": "includeArchived", + "description": "Indicates whether archived items should be included in the results or not.", + "type": { + "kind": "ENUM", + "name": "IncludeArchivedOption", + "ofType": null + }, + "defaultValue": "NO" + }, { "name": "last", "description": "Only read the last `n` values of the set.", @@ -221320,7 +226223,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FormChange`.", + "description": "The method to use when ordering `Form`.", "type": { "kind": "LIST", "name": null, @@ -221329,7 +226232,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FormChangesOrderBy", + "name": "FormsOrderBy", "ofType": null } } @@ -221339,15 +226242,15 @@ ], "type": { "kind": "OBJECT", - "name": "FormChangesConnection", + "name": "FormsConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "allForms", - "description": "Reads and enables pagination through a set of `Form`.", + "name": "allFundingParameters", + "description": "Reads and enables pagination through a set of `FundingParameter`.", "args": [ { "name": "after", @@ -221374,7 +226277,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormCondition", + "name": "FundingParameterCondition", "ofType": null }, "defaultValue": null @@ -221384,7 +226287,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FormFilter", + "name": "FundingParameterFilter", "ofType": null }, "defaultValue": null @@ -221431,7 +226334,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Form`.", + "description": "The method to use when ordering `FundingParameter`.", "type": { "kind": "LIST", "name": null, @@ -221440,7 +226343,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FormsOrderBy", + "name": "FundingParametersOrderBy", "ofType": null } } @@ -221450,15 +226353,15 @@ ], "type": { "kind": "OBJECT", - "name": "FormsConnection", + "name": "FundingParametersConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "allFundingParameters", - "description": "Reads and enables pagination through a set of `FundingParameter`.", + "name": "allFundingStreamProjectStatuses", + "description": "Reads and enables pagination through a set of `FundingStreamProjectStatus`.", "args": [ { "name": "after", @@ -221485,7 +226388,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingParameterCondition", + "name": "FundingStreamProjectStatusCondition", "ofType": null }, "defaultValue": null @@ -221495,7 +226398,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingParameterFilter", + "name": "FundingStreamProjectStatusFilter", "ofType": null }, "defaultValue": null @@ -221542,7 +226445,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingParameter`.", + "description": "The method to use when ordering `FundingStreamProjectStatus`.", "type": { "kind": "LIST", "name": null, @@ -221551,7 +226454,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingParametersOrderBy", + "name": "FundingStreamProjectStatusesOrderBy", "ofType": null } } @@ -221561,15 +226464,15 @@ ], "type": { "kind": "OBJECT", - "name": "FundingParametersConnection", + "name": "FundingStreamProjectStatusesConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "allFundingStreamProjectStatuses", - "description": "Reads and enables pagination through a set of `FundingStreamProjectStatus`.", + "name": "allFundingStreamRfps", + "description": "Reads and enables pagination through a set of `FundingStreamRfp`.", "args": [ { "name": "after", @@ -221596,7 +226499,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamProjectStatusCondition", + "name": "FundingStreamRfpCondition", "ofType": null }, "defaultValue": null @@ -221606,7 +226509,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamProjectStatusFilter", + "name": "FundingStreamRfpFilter", "ofType": null }, "defaultValue": null @@ -221653,7 +226556,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStreamProjectStatus`.", + "description": "The method to use when ordering `FundingStreamRfp`.", "type": { "kind": "LIST", "name": null, @@ -221662,7 +226565,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamProjectStatusesOrderBy", + "name": "FundingStreamRfpsOrderBy", "ofType": null } } @@ -221672,15 +226575,15 @@ ], "type": { "kind": "OBJECT", - "name": "FundingStreamProjectStatusesConnection", + "name": "FundingStreamRfpsConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "allFundingStreamRfps", - "description": "Reads and enables pagination through a set of `FundingStreamRfp`.", + "name": "allFundingStreams", + "description": "Reads and enables pagination through a set of `FundingStream`.", "args": [ { "name": "after", @@ -221707,7 +226610,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamRfpCondition", + "name": "FundingStreamCondition", "ofType": null }, "defaultValue": null @@ -221717,7 +226620,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamRfpFilter", + "name": "FundingStreamFilter", "ofType": null }, "defaultValue": null @@ -221764,7 +226667,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStreamRfp`.", + "description": "The method to use when ordering `FundingStream`.", "type": { "kind": "LIST", "name": null, @@ -221773,7 +226676,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamRfpsOrderBy", + "name": "FundingStreamsOrderBy", "ofType": null } } @@ -221783,15 +226686,15 @@ ], "type": { "kind": "OBJECT", - "name": "FundingStreamRfpsConnection", + "name": "FundingStreamsConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "allFundingStreams", - "description": "Reads and enables pagination through a set of `FundingStream`.", + "name": "allMilestoneReports", + "description": "Reads and enables pagination through a set of `MilestoneReport`.", "args": [ { "name": "after", @@ -221818,7 +226721,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamCondition", + "name": "MilestoneReportCondition", "ofType": null }, "defaultValue": null @@ -221828,7 +226731,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "FundingStreamFilter", + "name": "MilestoneReportFilter", "ofType": null }, "defaultValue": null @@ -221875,7 +226778,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `FundingStream`.", + "description": "The method to use when ordering `MilestoneReport`.", "type": { "kind": "LIST", "name": null, @@ -221884,7 +226787,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FundingStreamsOrderBy", + "name": "MilestoneReportsOrderBy", "ofType": null } } @@ -221894,15 +226797,15 @@ ], "type": { "kind": "OBJECT", - "name": "FundingStreamsConnection", + "name": "MilestoneReportsConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "allMilestoneReports", - "description": "Reads and enables pagination through a set of `MilestoneReport`.", + "name": "allOperators", + "description": "Reads and enables pagination through a set of `Operator`.", "args": [ { "name": "after", @@ -221929,7 +226832,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "MilestoneReportCondition", + "name": "OperatorCondition", "ofType": null }, "defaultValue": null @@ -221939,7 +226842,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "MilestoneReportFilter", + "name": "OperatorFilter", "ofType": null }, "defaultValue": null @@ -221986,7 +226889,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `MilestoneReport`.", + "description": "The method to use when ordering `Operator`.", "type": { "kind": "LIST", "name": null, @@ -221995,7 +226898,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "MilestoneReportsOrderBy", + "name": "OperatorsOrderBy", "ofType": null } } @@ -222005,15 +226908,15 @@ ], "type": { "kind": "OBJECT", - "name": "MilestoneReportsConnection", + "name": "OperatorsConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "allOperators", - "description": "Reads and enables pagination through a set of `Operator`.", + "name": "allPayments", + "description": "Reads and enables pagination through a set of `Payment`.", "args": [ { "name": "after", @@ -222040,7 +226943,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "OperatorCondition", + "name": "PaymentCondition", "ofType": null }, "defaultValue": null @@ -222050,7 +226953,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "OperatorFilter", + "name": "PaymentFilter", "ofType": null }, "defaultValue": null @@ -222097,7 +227000,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Operator`.", + "description": "The method to use when ordering `Payment`.", "type": { "kind": "LIST", "name": null, @@ -222106,7 +227009,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "OperatorsOrderBy", + "name": "PaymentsOrderBy", "ofType": null } } @@ -222116,15 +227019,15 @@ ], "type": { "kind": "OBJECT", - "name": "OperatorsConnection", + "name": "PaymentsConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "allPayments", - "description": "Reads and enables pagination through a set of `Payment`.", + "name": "allProjectAttachments", + "description": "Reads and enables pagination through a set of `ProjectAttachment`.", "args": [ { "name": "after", @@ -222151,7 +227054,7 @@ "description": "A condition to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "PaymentCondition", + "name": "ProjectAttachmentCondition", "ofType": null }, "defaultValue": null @@ -222161,7 +227064,7 @@ "description": "A filter to be used in determining which values should be returned by the collection.", "type": { "kind": "INPUT_OBJECT", - "name": "PaymentFilter", + "name": "ProjectAttachmentFilter", "ofType": null }, "defaultValue": null @@ -222208,7 +227111,7 @@ }, { "name": "orderBy", - "description": "The method to use when ordering `Payment`.", + "description": "The method to use when ordering `ProjectAttachment`.", "type": { "kind": "LIST", "name": null, @@ -222217,7 +227120,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "PaymentsOrderBy", + "name": "ProjectAttachmentsOrderBy", "ofType": null } } @@ -222227,7 +227130,7 @@ ], "type": { "kind": "OBJECT", - "name": "PaymentsConnection", + "name": "ProjectAttachmentsConnection", "ofType": null }, "isDeprecated": false, @@ -224885,6 +229788,60 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "projectAttachment", + "description": "Reads a single `ProjectAttachment` using its globally unique `ID`.", + "args": [ + { + "name": "id", + "description": "The globally unique `ID` to be used in selecting a single `ProjectAttachment`.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ProjectAttachment", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectAttachmentByRowId", + "description": null, + "args": [ + { + "name": "rowId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ProjectAttachment", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "projectByProposalReference", "description": null, @@ -235142,6 +240099,22 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "sortingOrder", + "description": "Integer value to indicate the order in which the revision status should be displayed", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "updatedAt", "description": "updated at timestamp", @@ -235929,6 +240902,16 @@ }, "defaultValue": null }, + { + "name": "sortingOrder", + "description": "Checks for equality with the object’s `sortingOrder` field.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, { "name": "updatedAt", "description": "Checks for equality with the object’s `updatedAt` field.", @@ -236146,6 +241129,16 @@ }, "defaultValue": null }, + { + "name": "sortingOrder", + "description": "Filter by the object’s `sortingOrder` field.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + }, + "defaultValue": null + }, { "name": "updatedAt", "description": "Filter by the object’s `updatedAt` field.", @@ -236245,6 +241238,16 @@ }, "defaultValue": null }, + { + "name": "sortingOrder", + "description": "Integer value to indicate the order in which the revision status should be displayed", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, { "name": "updatedAt", "description": "updated at timestamp", @@ -236336,6 +241339,16 @@ }, "defaultValue": null }, + { + "name": "sortingOrder", + "description": "Integer value to indicate the order in which the revision status should be displayed", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, { "name": "updatedAt", "description": "updated at timestamp", @@ -237556,6 +242569,18 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "SORTING_ORDER_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SORTING_ORDER_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "UPDATED_AT_ASC", "description": null, @@ -247094,30 +252119,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "projectByProjectId", - "description": "Reads a single `Project` that is related to this `Attachment`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Project", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectStatusByProjectStatusId", - "description": "Reads a single `ProjectStatus` that is related to this `Attachment`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectStatus", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "query", "description": "Our root query field type. Allows us to run any query from our mutation payload.", @@ -249959,6 +254960,242 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateProjectAttachmentByRowIdInput", + "description": "All input for the `updateProjectAttachmentByRowId` mutation.", + "fields": null, + "inputFields": [ + { + "name": "clientMutationId", + "description": "An arbitrary string value with no semantic meaning. Will be included in the\npayload verbatim. May be used to track mutations by the client.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectAttachmentPatch", + "description": "An object where the defined keys will be set on the `ProjectAttachment` being updated.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectAttachmentPatch", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "rowId", + "description": "Unique ID for the project attachment record", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateProjectAttachmentInput", + "description": "All input for the `updateProjectAttachment` mutation.", + "fields": null, + "inputFields": [ + { + "name": "clientMutationId", + "description": "An arbitrary string value with no semantic meaning. Will be included in the\npayload verbatim. May be used to track mutations by the client.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id", + "description": "The globally unique `ID` which will identify a single `ProjectAttachment` to be updated.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "projectAttachmentPatch", + "description": "An object where the defined keys will be set on the `ProjectAttachment` being updated.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectAttachmentPatch", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "UpdateProjectAttachmentPayload", + "description": "The output of our update `ProjectAttachment` mutation.", + "fields": [ + { + "name": "attachmentByAttachmentId", + "description": "Reads a single `Attachment` that is related to this `ProjectAttachment`.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Attachment", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cifUserByArchivedBy", + "description": "Reads a single `CifUser` that is related to this `ProjectAttachment`.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "CifUser", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cifUserByCreatedBy", + "description": "Reads a single `CifUser` that is related to this `ProjectAttachment`.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "CifUser", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cifUserByUpdatedBy", + "description": "Reads a single `CifUser` that is related to this `ProjectAttachment`.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "CifUser", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "clientMutationId", + "description": "The exact same `clientMutationId` that was provided in the mutation input,\nunchanged and unused. May be used by a client to track mutations.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectAttachment", + "description": "The `ProjectAttachment` that was updated by this mutation.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectAttachment", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectAttachmentEdge", + "description": "An edge for our `ProjectAttachment`. May be used by Relay 1.", + "args": [ + { + "name": "orderBy", + "description": "The method to use when ordering `ProjectAttachment`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectAttachmentsOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], + "type": { + "kind": "OBJECT", + "name": "ProjectAttachmentsEdge", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectByProjectId", + "description": "Reads a single `Project` that is related to this `ProjectAttachment`.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "query", + "description": "Our root query field type. Allows us to run any query from our mutation payload.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, { "kind": "INPUT_OBJECT", "name": "UpdateProjectContactByRowIdInput", diff --git a/app/yarn.lock b/app/yarn.lock index cced10f2e8..f09e5f1283 100644 --- a/app/yarn.lock +++ b/app/yarn.lock @@ -1729,7 +1729,7 @@ "@sentry/webpack-plugin" "1.18.8" tslib "^1.9.3" -"@sentry/node@6.19.7": +"@sentry/node@6.19.7", "@sentry/node@^6.16.1": version "6.19.7" resolved "https://registry.yarnpkg.com/@sentry/node/-/node-6.19.7.tgz#32963b36b48daebbd559e6f13b1deb2415448592" integrity sha512-gtmRC4dAXKODMpHXKfrkfvyBL3cI8y64vEi3fDD046uqYcrWdgoQsffuBbxMAizc6Ez1ia+f0Flue6p15Qaltg== @@ -5449,7 +5449,7 @@ fast-uri@^2.0.0, fast-uri@^2.1.0: resolved "https://registry.yarnpkg.com/fast-uri/-/fast-uri-2.2.0.tgz#519a0f849bef714aad10e9753d69d8f758f7445a" integrity sha512-cIusKBIt/R/oI6z/1nyfe2FvGKVTohVRfvkOhvx0nCEW+xf5NoCXjAHcWp93uOUBchzYcsvPlrapAdX1uW+YGg== -fastify@^4.17.0: +fastify@^4.10.2: version "4.29.0" resolved "https://registry.yarnpkg.com/fastify/-/fastify-4.29.0.tgz#ea3fcd92f4d9deaa841a6722dc6e3e7ff9392850" integrity sha512-MaaUHUGcCgC8fXQDsDtioaCcag1fmPJ9j64vAKunqZF4aSub040ZGi/ag8NGE2714yREPOKZuHCfpPzuUD3UQQ== @@ -7647,14 +7647,15 @@ light-my-request@^5.11.0: set-cookie-parser "^2.4.1" lightship@^7.1.1: - version "7.3.0" - resolved "https://registry.yarnpkg.com/lightship/-/lightship-7.3.0.tgz#d7a8093116db8661285034a4b65695a0beca49e6" - integrity sha512-4yrVcNlV+2REtbIbB9sbhLPW5ePT89vpjEqrkgUr//HCoVZECirfm5fauPAuVKi6hyxSfYiyAde5uO1oVL2gPw== + version "7.1.1" + resolved "https://registry.yarnpkg.com/lightship/-/lightship-7.1.1.tgz#dcaf9830bccc2d614b09336e8fa2df7b2d77075a" + integrity sha512-q/evRpbbLEHVFJt7k6NAcrE4IBrfwdWg1Kh1IvK6ce1NvAxBKaVM3Um1/7igc1HKv4hv2QA43AqgqjiSRFJ1Mw== dependencies: + "@sentry/node" "^6.16.1" delay "^5.0.0" - fastify "^4.17.0" - roarr "^7.15.0" - serialize-error "^11.0.0" + fastify "^4.10.2" + roarr "^7.14.0" + serialize-error "^8.1.0" lines-and-columns@^1.1.6: version "1.2.4" @@ -9425,7 +9426,7 @@ rimraf@^3.0.0, rimraf@^3.0.2: dependencies: glob "^7.1.3" -roarr@^7.15.0: +roarr@^7.14.0: version "7.21.1" resolved "https://registry.yarnpkg.com/roarr/-/roarr-7.21.1.tgz#fd6452ca822a65f736c35e5372f04ee9f2ca3851" integrity sha512-3niqt5bXFY1InKU8HKWqqYTYjtrBaxBMnXELXCXUYgtNYGUtZM5rB46HIC430AyacL95iEniGf7RgqsesykLmQ== @@ -9555,12 +9556,12 @@ send@0.19.0: range-parser "~1.2.1" statuses "2.0.1" -serialize-error@^11.0.0: - version "11.0.3" - resolved "https://registry.yarnpkg.com/serialize-error/-/serialize-error-11.0.3.tgz#b54f439e15da5b4961340fbbd376b6b04aa52e92" - integrity sha512-2G2y++21dhj2R7iHAdd0FIzjGwuKZld+7Pl/bTU6YIkrC2ZMbVUjm+luj6A6V34Rv9XfKJDKpTWu9W4Gse1D9g== +serialize-error@^8.1.0: + version "8.1.0" + resolved "https://registry.yarnpkg.com/serialize-error/-/serialize-error-8.1.0.tgz#3a069970c712f78634942ddd50fbbc0eaebe2f67" + integrity sha512-3NnuWfM6vBYoy5gZFvHiYsVbafvI9vZv/+jlIigFn4oP4zjNPK3LhcY0xSCgeb1a5L8jO71Mit9LlNoi2UfDDQ== dependencies: - type-fest "^2.12.2" + type-fest "^0.20.2" serialize-javascript@^5.0.1: version "5.0.1" @@ -10404,11 +10405,6 @@ type-fest@^0.21.3: resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== -type-fest@^2.12.2: - version "2.19.0" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-2.19.0.tgz#88068015bb33036a598b952e55e9311a60fd3a9b" - integrity sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA== - type-is@~1.6.18: version "1.6.18" resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131"